Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 515 for corerest (0.16 sec)

  1. pilot/pkg/config/kube/crd/conversion_test.go

    	varr, _, err := ParseInputs(validInput)
    	if err != nil || len(varr) == 0 {
    		t.Errorf("ParseInputs(correct input) => got %v, %v", varr, err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 18:26:16 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/SettingsScriptExecutionIntegrationTest.groovy

                assert settingsFile.length() == before
    
                succeeds()
                result.assertOutputContains("counter: $it")
            }
        }
    
        def "executes settings script with correct environment"() {
            given:
            createExternalJar()
            createBuildSrc()
            def implClassName = 'com.google.common.collect.Multimap'
    
            settingsFile << """
    buildscript {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. pkg/volume/csimigration/plugin_manager_test.go

    		t.Run(fmt.Sprintf("Testing %v", test.name), func(t *testing.T) {
    			// CSIMigrationGCE is locked to on, so it cannot be enabled or disabled. There are a couple
    			// of test cases that check correct behavior when CSIMigrationGCE is enabled, but there are
    			// no longer any tests cases for CSIMigrationGCE being disabled as that is not possible.
    			if len(test.pluginFeature) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. tests/integration/pilot/revisions/revision_tag_test.go

    					}
    					if tc.error != "" {
    						if !strings.Contains(cmdErr, tc.error) {
    							t.Fatalf("expected error to contain %q, got %q", tc.error, cmdErr)
    						}
    						// found correct error, don't proceed
    						return
    					}
    
    					// Expect the specified revision to inject for the namespace with the
    					// given injection label
    					revTagNs := namespace.NewOrFail(t, t, namespace.Config{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. pilot/pkg/xds/cds.go

    			// after implementing use-waypoint which decouples waypoint creation, wl pod creation
    			// user specifying waypoint use. Without this we're not getting correct waypoint config
    			// in a timely manner
    			return true
    		}
    		// Otherwise, only handle full pushes (skip endpoint-only updates)
    		if !req.Full {
    			return false
    		}
    	default:
    		if !req.Full {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 21:27:52 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/BUILD

        srcs = ["mlir_graph_optimization_pass_test.cc"],
        deps = [
            ":mlir_graph_optimization_pass",
            "//tensorflow/core:core_cpu",
            "//tensorflow/core:ops",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
            "//tensorflow/core/common_runtime:optimization_registry",
            "//tensorflow/core/framework:tensor_testutil",
            "//tensorflow/core/lib/monitoring:cell_reader",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/conversions.go

    // of x is fully known, but that's not the case for say string(1<<s + 1.0):
    // Here, the type of 1<<s + 1.0 will be UntypedFloat which will lead to the
    // (correct!) refusal of the conversion. But the reported error is essentially
    // "cannot convert untyped float value to string", yet the correct error (per
    // the spec) is that we cannot shift a floating-point value: 1 in 1<<s should
    // be converted to UntypedFloat because of the addition of 1.0. Fixing this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:51:00 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/internal/plugins/ApplyPluginBuildOperationIntegrationTest.groovy

            }
    
            children.size() == 1
            def p2 = children.first()
    
            p2.details.targetPath == ":b"
            p2.details.pluginClass == "Plugin2"
        }
    
        def "associates target to correct build"() {
            when:
            settingsFile << """
                includeBuild "a"
                includeBuild "b"
            """
            file("a/settings.gradle") << ""
            file("b/settings.gradle") << ""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:36 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ScriptDependencyResolveIntegrationTest.groovy

        @LeaksFileHandles("Puts gradle user home in integration test dir")
        @ToBeFixedForConfigurationCache(because = "task uses Configuration API")
        def "root component identifier has the correct type when resolving a script classpath"() {
            given:
            def module = mavenRepo().module("org.gradle", "test", "1.45")
            module.dependsOn("org.gradle", "other", "preview-1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperChecksumVerificationTest.groovy

            failure.error.contains("""
    Verification of Gradle distribution failed!
    
    Your Gradle distribution may have been tampered with.
    Confirm that the 'distributionSha256Sum' property in your gradle-wrapper.properties file is correct and you are downloading the wrapper from a trusted source.
    
     Distribution Url: $gradleBin
    Download Location: $f.absolutePath
    Expected checksum: 'bad'
      Actual checksum: '$distributionHash'
    """.trim())
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top