- Sort Score
- Result 10 results
- Languages All
Results 551 - 560 of 969 for Ignore (0.04 sec)
-
guava-tests/test/com/google/common/io/SourceSinkFactories.java
@SuppressWarnings("CheckReturnValue") // only using super.createSource to create a file @Override public CharSource createSource(String string) throws IOException { super.createSource(string); // just ignore returned CharSource return Resources.asCharSource(getFile().toURI().toURL(), UTF_8); } } @AndroidIncompatible private abstract static class Jdk7FileFactory {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 17.7K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java
tasks.withType(AsciidoctorTask.class).configureEach(task -> { if (task.getName().equals("asciidoctor")) { // ignore this task task.setEnabled(false); return; } task.setExecutionMode(ExecutionMode.OUT_OF_PROCESS); task.outputOptions(options -> {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Mar 01 05:46:51 UTC 2024 - 17.7K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/AggregateFuture.java
boolean firstTimeSeen = seen.add(t); if (!firstTimeSeen) { /* * We've seen this, so we've seen its causes, too. No need to re-add them. (There's one case * where this isn't true, but we ignore it: If we record an exception, then someone calls * initCause() on it, and then we examine it again, we'll conclude that we've seen the whole * chain before when in fact we haven't. But this should be rare.)
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 25 13:13:32 UTC 2024 - 16.2K bytes - Viewed (0) -
src/main/java/jcifs/util/transport/Transport.java
if ( run_thread != this.thread ) { /* * Thread no longer the one setup for this transport -- * doConnect returned too late, just ignore. */ if ( ex0 instanceof SocketTimeoutException ) { log.debug("Timeout connecting", ex0); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Nov 01 18:12:21 UTC 2020 - 24.1K bytes - Viewed (0) -
cmd/iam-store.go
store.group.Forget(u.AccessKey) } } } } // It is ok to ignore deletion error on the mapped policy store.deleteMappedPolicy(ctx, accessKey, userType, false) cache.iamUserPolicyMap.Delete(accessKey) err := store.deleteUserIdentity(ctx, accessKey, userType) if err == errNoSuchUser { // ignore if user is already deleted. err = nil } if userType == stsUser {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Oct 14 16:35:37 UTC 2024 - 83.2K bytes - Viewed (0) -
internal/config/notify/help.go
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Sep 06 23:06:30 UTC 2024 - 19.2K bytes - Viewed (0) -
guava/src/com/google/common/base/FinalizableReferenceQueue.java
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Jul 11 20:51:36 UTC 2024 - 13.1K bytes - Viewed (0) -
internal/config/config.go
func CheckValidKeys(subSys string, kv KVS, validKVS KVS, deprecatedKeys ...string) error { nkv := KVS{} for _, kv := range kv { // Comment is a valid key, its also fully optional // ignore it since it is a valid key for all // sub-systems. if kv.Key == Comment { continue } var skip bool for _, deprecatedKey := range deprecatedKeys { if kv.Key == deprecatedKey {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Sep 03 18:23:41 UTC 2024 - 37.7K bytes - Viewed (0) -
cmd/kms-handlers_test.go
wantResp: []string{"AccessDenied"}, }, { name: "version as user with policy ignores resource want success", method: http.MethodGet, path: kmsVersionPath, asRoot: false, policy: `{"Effect": "Allow", "Action": ["kms:Version"], "Resource": ["arn:minio:kms:::does-not-matter-it-is-ignored"] }`, wantStatusCode: http.StatusOK, wantResp: []string{"version"}, },
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Aug 18 06:43:03 UTC 2024 - 22.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ComponentUtil.java
} public static boolean available() { try { return SingletonLaContainer.getComponent(SYSTEM_HELPER) != null; } catch (final Exception e) { // ignore } return false; } /** * For test purpose only. * * @param fessConfig fessConfig instance */
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jun 17 13:35:51 UTC 2024 - 20.2K bytes - Viewed (0)