Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 827 for verified$ (0.13 sec)

  1. pkg/serviceaccount/jwt.go

    }
    
    // JWTTokenAuthenticator authenticates tokens as JWT tokens produced by JWTTokenGenerator
    // Token signatures are verified using each of the given public keys until one works (allowing key rotation)
    // If lookup is true, the service account and secret referenced as claims inside the token are retrieved and verified with the provided ServiceAccountTokenGetter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 22:16:08 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. plugin/pkg/admission/podtolerationrestriction/doc.go

    limitations under the License.
    */
    
    // Package podtolerationrestriction is a plugin that first verifies
    // any conflict between a pod's tolerations and its namespace's
    // tolerations, and rejects the pod if there's a conflict.  If there's
    // no conflict, the pod's tolerations are merged with its namespace's
    // toleration. Resulting pod's tolerations are verified against its
    // namespace's whitelist of tolerations. If the verification is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 18:00:06 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  6. 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)
  7. src/crypto/ecdsa/example_test.go

    	if err != nil {
    		panic(err)
    	}
    	fmt.Printf("signature: %x\n", sig)
    
    	valid := ecdsa.VerifyASN1(&privateKey.PublicKey, hash[:], sig)
    	fmt.Println("signature verified:", valid)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 21 19:38:55 UTC 2020
    - 686 bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top