Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 387 for verified$ (0.23 sec)

  1. platforms/documentation/docs/src/snippets/tasks/commandLineOption-stringOption/kotlin/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)
  2. src/cmd/go/testdata/script/mod_skip_write.txt

    cp go.mod go.mod.edit
    ! go list -m all
    stderr 'updates to go.mod needed'
    
    go mod graph
    cmp stdout graph.want
    cmp go.mod go.mod.edit
    
    go mod verify
    stdout '^all modules verified$'
    cmp go.mod go.mod.edit
    
    go mod why rsc.io/sampler
    cmp stdout why.want
    cmp go.mod go.mod.edit
    
    go mod why -m rsc.io/sampler
    cmp stdout why.want
    cmp go.mod go.mod.edit
    
    cp go.mod.orig go.mod
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 23:07:08 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/work_issue54372.txt

    # go mod verify should not try to verify the workspace modules.
    # This is a test for #54372.
    
    go mod verify
    stdout 'all modules verified'
    ! stderr .
    
    -- go.work --
    go 1.21
    
    use (
        ./a
        ./b
        ./c
        ./d
    )
    -- a/go.mod --
    module example.com/a
    
    go 1.21
    
    require rsc.io/quote v1.1.0
    -- a/a.go --
    package a
    import _ "rsc.io/quote"
    -- b/go.mod --
    module example.com/b
    
    go 1.21
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 19:49:40 UTC 2023
    - 468 bytes
    - Viewed (0)
  4. security/pkg/server/ca/authenticate/cert_authenticator.go

    	}
    
    	tlsInfo := peer.AuthInfo.(credentials.TLSInfo)
    	chains := tlsInfo.State.VerifiedChains
    	if len(chains) == 0 || len(chains[0]) == 0 {
    		return nil, fmt.Errorf("no verified chain is found")
    	}
    
    	ids, err := util.ExtractIDs(chains[0][0].Extensions)
    	if err != nil {
    		return nil, err
    	}
    
    	return &security.Caller{
    		AuthSource: security.AuthSourceClientCertificate,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 19 02:12:12 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonLifecycleEncodingSpec.groovy

            setup:
            buildScript """
                println "GRADLE_VERSION: " + gradle.gradleVersion
    
                task verify {
                    doFirst {
                        println "verified = " + java.nio.charset.Charset.defaultCharset().name()
                    }
                }
            """
    
            when:
            executer.withEnvironmentVars(GRADLE_OPTS: "-Dfile.encoding=UTF-8");
            run "verify"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/signatures/SignatureVerificationResultBuilder.java

     */
    package org.gradle.api.internal.artifacts.verification.signatures;
    
    import org.bouncycastle.openpgp.PGPPublicKey;
    
    public interface SignatureVerificationResultBuilder {
        void missingKey(String keyId);
        void verified(PGPPublicKey key, boolean trusted);
        void failed(PGPPublicKey pgpPublicKey);
        void ignored(String keyId);
    
        void noSignatures();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 978 bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top