- Sort Score
- Result 10 results
- Languages All
Results 261 - 270 of 1,301 for emptify (0.08 sec)
-
internal/auth/credentials_test.go
} testCases := []struct { cred Credentials ccred Credentials expectedResult bool }{ // Same Credentialss. {cred, cred, true}, // Empty credentials to compare. {cred, Credentials{}, false}, // Empty credentials. {Credentials{}, cred, false}, // Two different credentialss {cred, cred2, false}, // Access key is different in credentials to compare.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Mar 01 21:09:42 UTC 2024 - 5.4K bytes - Viewed (0) -
internal/bucket/encryption/bucket-sse-config.go
} } } if config.XMLNS == "" { config.XMLNS = xmlNS } return &config, nil } // ApplyOptions ask for specific features to be enabled, // when bucketSSEConfig is empty. type ApplyOptions struct { AutoEncrypt bool } // Apply applies the SSE bucket configuration on the given HTTP headers and // sets the specified SSE headers. //
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 25 00:44:15 UTC 2022 - 4.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/go/GoAction.java
} } } hash = buf.toString(); } else { hash = StringUtil.EMPTY; } } else { hash = StringUtil.EMPTY; } if (!isFileSystemPath(targetUrl)) { return HtmlResponse.fromRedirectPathAsIs(DocumentUtil.encodeUrl(targetUrl + hash)); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 6.9K bytes - Viewed (0) -
guava/src/com/google/common/graph/EndpointPairIterator.java
} @Override @CheckForNull protected EndpointPair<N> computeNext() { while (true) { if (successorIterator.hasNext()) { // requireNonNull is safe because successorIterator is empty until we set this.node. return EndpointPair.ordered(requireNonNull(node), successorIterator.next()); } if (!advance()) { return endOfData(); } } } }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Jul 09 17:31:04 UTC 2021 - 5K bytes - Viewed (0) -
.github/workflows/iam-integrations.yaml
env: DEX_LDAP_SERVER: "openldap:389" DEX_ISSUER: "http://127.0.0.1:5557/dex" DEX_WEB_HTTP: "0.0.0.0:5557" strategy: # When ldap, etcd or openid vars are empty below, those external servers # are turned off - i.e. if ldap="", then ldap server is not enabled for # the tests. matrix: go-version: [1.22.x] ldap: ["", "localhost:389"]
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Sep 17 16:45:46 UTC 2024 - 5.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java
} protected String getClientSecret() { return ComponentUtil.getFessConfig().getSystemProperty(AZUREAD_CLIENT_SECRET, StringUtil.EMPTY); } protected String getTenant() { return ComponentUtil.getFessConfig().getSystemProperty(AZUREAD_TENANT, StringUtil.EMPTY); } protected String getAuthority() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 28.2K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ObjectCountHashMap.java
*/ @GwtCompatible(serializable = true, emulated = true) @ElementTypesAreNonnullByDefault class ObjectCountHashMap<K extends @Nullable Object> { /** Creates an empty {@code ObjectCountHashMap} instance. */ static <K extends @Nullable Object> ObjectCountHashMap<K> create() { return new ObjectCountHashMap<K>(); } /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 01 22:07:10 UTC 2021 - 15K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PermissionHelper.java
aclPrefix = StringUtil.EMPTY; } else if (lower.startsWith(denyPrefix)) { lower = lower.substring(denyPrefix.length()); permission = permission.substring(denyPrefix.length()); aclPrefix = ComponentUtil.getFessConfig().getRoleSearchDeniedPrefix(); } else { aclPrefix = StringUtil.EMPTY; } if (StringUtil.isBlank(permission)) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 12.3K bytes - Viewed (0) -
common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto
// ] // } // ] // } // // See // https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ // for more examples of label selectors. // // Default to the empty LabelSelector, which matches everything. // +optional optional k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector namespaceSelector = 5; // ObjectSelector decides whether to run the webhook based on if the
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 22.6K bytes - Viewed (0) -
.golangci.yml
- govet - ineffassign - misspell - revive - staticcheck - tenv - typecheck - unconvert - unused issues: exclude-use-default: false exclude: - "empty-block:" - "unused-parameter:" - "dot-imports:" - should have a package comment
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Dec 07 02:17:03 UTC 2023 - 689 bytes - Viewed (0)