Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for Verifying (0.29 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ResettableExpectations.java

     * test expectations before cleanup so they can be silenced if necessary.
     */
    public interface ResettableExpectations {
        /**
         * Resets all pending expectations after verifying them.
         * Must throw when a verification fails.
         */
        void resetExpectations();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1K bytes
    - Viewed (0)
  2. 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)
  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/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)
  5. 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)
  6. src/internal/types/testdata/check/decls2/decls2a.go

    // this). But the MethodSet computation will not find it due to the name
    // collision caused by the double-declaration, leading to an internal
    // inconsistency while we are verifying one computation against the other.
    // var _ = T1c{}.Pointer
    
    // T2's method declared before the type.
    func (*T2) f /* ERROR "field and method" */ () {}
    
    type T2 struct {
    	f int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. hack/update-kustomize.sh

    git add .
    git commit -a -m "Update kubectl kustomize to kyaml/$LATEST_KYAML, cmd/config/$LATEST_CONFIG, api/$LATEST_API, kustomize/$LATEST_KUSTOMIZE"
    
    echo -e "\n${color_blue:?}Verifying kubectl kustomize version${color_norm:?}"
    # We use `make` here intead of `go install` to ensure that all of the
    # linker-defined values are set.
    make -C "${KUBE_ROOT}" WHAT=./cmd/kubectl
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:40:04 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/named_test.go

    	}
    	if Inst != Tree {
    		t.Errorf("Duplicate instances in cycle: %s (%p) -> %s (%p) -> %s (%p)", Inst, Inst, Node, Node, Tree, Tree)
    	}
    }
    
    // TestMethodOrdering is a simple test verifying that the indices of methods of
    // a named type remain the same as long as the same source and AddMethod calls
    // are presented to the type checker in the same order (go.dev/issue/61298).
    func TestMethodOrdering(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 21:06:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. src/go/types/named_test.go

    	}
    	if Inst != Tree {
    		t.Errorf("Duplicate instances in cycle: %s (%p) -> %s (%p) -> %s (%p)", Inst, Inst, Node, Node, Tree, Tree)
    	}
    }
    
    // TestMethodOrdering is a simple test verifying that the indices of methods of
    // a named type remain the same as long as the same source and AddMethod calls
    // are presented to the type checker in the same order (go.dev/issue/61298).
    func TestMethodOrdering(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 16:29:58 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. hack/verify-licenses.sh

    jq -r '.licenses[] | select(.isDeprecatedLicenseId==false) .licenseId' "${ARTIFACTS}"/licenses.json | sort | uniq > "${ARTIFACTS}"/licenses.txt
    
    # Scanning go-packages under the project & verifying against the CNCF approved list of licenses
    echo '[INFO] Starting license scan on go-packages...'
    go-licenses report ./... >> "${ARTIFACTS}"/licenses.csv 2>"${ARTIFACTS}"/logs/go-licenses.log
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top