Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 778 for verified$ (0.14 sec)

  1. docs/bucket/replication/setup_3site_replication.sh

    	echo "verified sitea-> COMPLETED, siteb-> REPLICA"
    fi
    
    if diff -pruN <(./mc stat --json sitea/bucket/hosts | jq .) <(./mc stat --json sitec/bucket/hosts | jq .) | grep -q 'COMPLETED\|REPLICA'; then
    	echo "verified sitea-> COMPLETED, sitec-> REPLICA"
    fi
    
    echo "Verifying the metadata difference between source and target"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/mlir2exec/BUILD

    # tests are not tested by unit tests already. This is useful for verifying some
    # runtime behavior, but the majority of runtime tests should be TFLite side and
    # invariants only verified in the converter/compiler.
    
    load("//tensorflow:tensorflow.default.bzl", "filegroup")
    load("//tensorflow/compiler/mlir:glob_lit_test.bzl", "glob_lit_tests")
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 15:18:46 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modcmd/verify.go

    	Long: `
    Verify checks that the dependencies of the current module,
    which are stored in a local downloaded source cache, have not been
    modified since being downloaded. If all the modules are unmodified,
    verify prints "all modules verified." Otherwise it reports which
    modules have been changed and causes 'go mod' to exit with a
    non-zero status.
    
    See https://golang.org/ref/mod#go-mod-verify for more about 'go mod verify'.
    	`,
    	Run: runVerify,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 16:56:35 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/tasks/commandLineOption-stringOption/groovy/buildSrc/src/main/java/UrlVerify.java

    // tag::custom-task-implementation[]
    import org.gradle.api.tasks.options.Option;
    
    public class UrlVerify extends DefaultTask {
        private String url;
    
        @Option(option = "url", description = "Configures the URL to be verified.")
        public void setUrl(String url) {
            this.url = url;
        }
    
        @Input
        public String getUrl() {
            return url;
        }
    
        @TaskAction
        public void verify() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 665 bytes
    - Viewed (0)
  5. tests/integration/operator/verify_test.go

    				"-y",
    			}
    			istioCtl.InvokeOrFail(t, installCmd)
    
    			verifyCmd := []string{
    				"verify-install",
    			}
    			out, _ := istioCtl.InvokeOrFail(t, verifyCmd)
    			if !strings.Contains(out, "verified successfully") {
    				t.Fatalf("verify-install failed: %v", out)
    			}
    		})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/writer/WriterSignatureVerificationResult.java

            this.entry = entry;
        }
    
        @Override
        public void missingKey(String keyId) {
            ignoredKeys.add(keyId);
            entry.missing();
        }
    
        @Override
        public void verified(PGPPublicKey key, boolean trusted) {
            String keyId = Fingerprint.of(key).toString();
            entry.addVerifiedKey(keyId);
        }
    
        @Override
        public void failed(PGPPublicKey key) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/sumdb/note/note.go

    }
    
    // A Verifiers is a collection of known verifier keys.
    type Verifiers interface {
    	// Verifier returns the Verifier associated with the key
    	// identified by the name and hash.
    	// If the name, hash pair is unknown, Verifier should return
    	// an UnknownVerifierError.
    	Verifier(name string, hash uint32) (Verifier, error)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/cache/PopulatedCachesTest.java

            assertTrue(cache.asMap().containsKey(entry.getKey()));
            assertTrue(cache.asMap().containsValue(entry.getValue()));
            // this getUnchecked() call shouldn't be a cache miss; verified below
            assertEquals(entry.getValue(), cache.getUnchecked(entry.getKey()));
          }
          assertEquals(WARMUP_SIZE, cache.stats().missCount());
          checkValidState(cache);
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 15K bytes
    - Viewed (0)
  9. cmd/os-reliable.go

    	}
    
    	if err = checkPathLength(dirPath); err != nil {
    		return err
    	}
    
    	if err = reliableRemoveAll(dirPath); err != nil {
    		switch {
    		case isSysErrNotDir(err):
    			// File path cannot be verified since one of
    			// the parents is a file.
    			return errFileAccessDenied
    		case isSysErrPathNotFound(err):
    			// This is a special case should be handled only for
    			// windows, because windows API does not return "not a
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 22 17:49:30 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DependencyLockingState.java

         * and the resolution result must exactly match the set of locked dependencies.
         *
         * If {@code false}, each locked dependency is added a regular (lenient) constraint,
         * and the resolution result is not verified against the set of locked dependencies.
         *
         * @return {@code true} if lock state was found, {@code false} otherwise
         */
        boolean mustValidateLockState();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top