-
Updated
Dec 29, 2021 - Java
interceptor
Here are 360 public repositories matching this topic...
-
Updated
Apr 7, 2022 - Go
-
Updated
Apr 6, 2022 - Kotlin
-
Updated
Nov 1, 2021 - PHP
Create a Wiki
It might be nice to have a Wiki set up to help people better understand the overall idea of the repository. Anyone is free to help out with this
Eviction hooks
Hi there,
Does EasyCaching support any callback capabilities so we can be notified when an InMemory item is evicted/expires?
I can't seem to find any documentation.
thanks!
-
Updated
Nov 29, 2020 - Kotlin
-
Updated
Feb 2, 2022 - Go
What problem does this feature solve?
In the past, Brotli was not supported on nodejs servers.
If I understand correctly, this is now supported since a few months : nodejs/node#20458
This PR dropped support for Brotli : nuxt-community/axios-module#180
Maybe it's time to revert this BR because Axios is supporting it too : https://github.com/ax
This lets users easily mock/modify single requests without having to have an entire fixture file.
Implementing this will just involve:
- Adding a new CLI option to
grpc-fixture
- Finding where the "no matching RPC" error is returned and if the new option is enabled then proxy the request
-
Updated
Feb 11, 2022 - Go
-
Updated
Aug 29, 2020 - Kotlin
-
Updated
Dec 4, 2018 - Java
-
Updated
Mar 25, 2022 - TypeScript
建议小程序和App也支持base参数
新功能描述
建议小程序和App也支持base参数,比如避免每次都写/pages,减小调用时路由长度
现状及问题
复杂页面 path 挺长的
尝试方案
[如果你有尝试绕开或其它解决方案,在这里描述你的建议方案]
补充信息
[其它你认为有参考价值的信息]
-
Updated
Feb 12, 2022 - TypeScript
-
Updated
Dec 9, 2017 - Swift
-
Updated
Feb 25, 2022 - Clojure
-
Updated
Mar 2, 2022 - TypeScript
-
Updated
Mar 27, 2022 - Clojure
-
Updated
Mar 26, 2022 - TypeScript
-
Updated
Mar 28, 2022 - Java
-
Updated
Mar 2, 2022 - JavaScript
-
Updated
Jan 14, 2021 - Go
-
Updated
Jul 1, 2018 - Java
-
Updated
Apr 4, 2022 - Dart
Improve this page
Add a description, image, and links to the interceptor topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the interceptor topic, visit your repo's landing page and select "manage topics."
举个例子:
@Nullable public static String getString(@NonNull Intent intent, @NonNull String key, @Nullable String defaultValue) { return getString(intent.getExtras(), key, defaultValue); }
getString的已经有了defaultValue,然而还是Nullable,整个方法返回的也是Nullable,那么这个默认值感觉没有什么意义,也没有节省任何非空的判断