Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 121 for Verifying (0.3 sec)

  1. security/pkg/credentialfetcher/plugin/gce.go

    	rotateToken = enable
    }
    
    // GCEPlugin is the plugin object.
    type GCEPlugin struct {
    	// aud is the unique URI agreed upon by both the instance and the system verifying the instance's identity.
    	// For more info: https://cloud.google.com/compute/docs/instances/verifying-instance-identity
    	aud string
    
    	// The location to save the identity token
    	jwtPath string
    
    	// identity provider
    	identityProvider string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/reference/gradle_wrapper.adoc

    === Automatically verifying the Gradle Wrapper JAR on GitHub
    
    The link:https://github.com/marketplace/actions/gradle-wrapper-validation[GitHub Action] is released separately from Gradle, so please check its documentation for how to apply it to your project.
    
    === Manually verifying the Gradle Wrapper JAR
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 16:15:50 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/readonly_references_to_resources.cc

    //  - Promoting VarHandle ops to function input/outputs.
    //  - Freezing global tensor pass.
    //
    // This path assumes that all the VariableV2 ops is read-only via verifying the
    // heuristic method that assumes that all the users of them is Identity op,
    // fed directly.
    class ConvertReadonlyReferenceVariablesToResourceVariablesPass
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/exceptions/ComponentVerificationException.java

            final TreeFormatter treeFormatter = new TreeFormatter();
            // Add our header first
            treeFormatter.node(
                String.format(
                    "An error happened while verifying '%s:%s:%s':",
                    component.getGroup(), component.getModule(), component.getVersion()
                )
            );
    
            if (this.causeErrorFormatter != null) {
                treeFormatter.startChildren();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 13 15:00:54 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/work_sum_mismatch.txt

    # Test mismatched sums in go.sum files
    
    ! go run ./a
    cmpenv stderr want-error
    
    -- want-error --
    verifying rsc.io/sampler@v1.3.0/go.mod: checksum mismatch
    	downloaded: h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA=
    	$WORK${/}gopath${/}src${/}a${/}go.sum:     h1:U1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA=
    
    SECURITY ERROR
    This download does NOT match an earlier download recorded in go.sum.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 14:42:39 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. docs/bucket/replication/setup_3site_replication.sh

    ./mc cp --enc-s3 "sitea/" --quiet /etc/hosts sitea/bucket
    sleep 1
    
    echo "Copying data to source sitea/olockbucket"
    ./mc cp --quiet /etc/hosts sitea/olockbucket
    sleep 1
    
    echo "Verifying the metadata difference between source and target"
    if diff -pruN <(./mc stat --json sitea/bucket/hosts | jq .) <(./mc stat --json siteb/bucket/hosts | jq .) | grep -q 'COMPLETED\|REPLICA'; then
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. cluster/gce/windows/smoke-test.sh

    # nodes. Performs checks such as:
    #   1) Verifying that all Windows nodes have status Ready.
    #   2) Verifying that no system pods are attempting to run on Windows nodes.
    #   3) Verifying pairwise connectivity between most of the following: Linux
    #      pods, Windows pods, K8s services, and the Internet.
    #   4) Verifying that basic DNS resolution works in Windows pods.
    #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/gotoolchain_net.txt

    # GOTOOLCHAIN with GOSUMB=off should fail, because it cannot access even the cached sumdb info
    # without the sumdb name.
    env GOSUMDB=off
    ! go version
    stderr '^go: golang.org/toolchain@v0.0.1-go1.999testmod.[a-z0-9\-]*: verifying module: checksum database disabled by GOSUMDB=off$'
    
    # GOTOOLCHAIN with GOSUMDB enabled but at a bad URL should fail if cache is incomplete
    env GOSUMDB=$oldsumdb' http://badurl'
    rm $GOPATH/pkg/mod/cache/download/sumdb
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 17:16:47 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/tasks/JacocoCoverageVerification.java

    import org.gradle.internal.reflect.Instantiator;
    import org.gradle.testing.jacoco.tasks.rules.JacocoViolationRulesContainer;
    
    import java.io.File;
    import java.io.IOException;
    
    /**
     * Task for verifying code coverage metrics. Fails the task if violations are detected based on specified rules.
     * <p>
     * Requires JaCoCo version &gt;= 0.6.3.
     *
     * @since 3.4
     */
    @CacheableTask
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/GradleBuildExternalPluginsValidationSmokeTest.groovy

    import org.gradle.test.preconditions.IntegTestPreconditions
    import org.gradle.test.preconditions.SmokeTestPreconditions
    import org.gradle.test.preconditions.UnitTestPreconditions
    
    /**
     * Smoke test verifying the external plugins used during the Gradle build itself.
     *
     * We validate the plugins during runtime, too. However, this test ensures that we learn about failures early,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top