Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 797 for changedTo (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest_test.go

    	// startingPod is used as the starting point for the first Update
    	startingPod *example.Pod
    	// changedPod can be set as the "destination" pod for the patch, and the test will compute a patch from the startingPod to the changedPod,
    	// or patches can be set directly using strategicMergePatch, mergePatch, and jsonPatch
    	changedPod          *example.Pod
    	strategicMergePatch string
    	mergePatch          string
    	jsonPatch           string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalBuildIntegrationTest.groovy

            given:
            run "installMainExecutable"
    
            def oldObjFile = objectFileFor(sourceFile)
            def newObjFile = objectFileFor(sourceFile.getParentFile().file("changed_${sourceFile.name}"))
            assert oldObjFile.file
            assert !newObjFile.file
    
            final source = sourceFile
    
            when:
            rename(source)
            run "mainExecutable"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  3. pkg/scheduler/eventhandlers_test.go

    			changed := nodeAllocatableChanged(newNode, oldNode)
    			if changed != test.Changed {
    				t.Errorf("nodeAllocatableChanged should be %t, got %t", test.Changed, changed)
    			}
    		})
    	}
    }
    
    func TestNodeLabelsChanged(t *testing.T) {
    	for _, test := range []struct {
    		Name      string
    		Changed   bool
    		OldLabels map[string]string
    		NewLabels map[string]string
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 14:38:54 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/GroovyJavaJointIncrementalCompilationIntegrationTest.groovy

            'Change Java files in joint compilation'    | ['G', 'J']            | ['G', 'J.changed']            | 'Incremental compilation of' | ['J']                 | ['G', 'J.changed']            | 'UP-TO-DATE'                 | []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/initialization/BuildInitializationBuildOperationsIntegrationTest.groovy

                rootProject.name = "root-changed"
                includeBuild 'nested'
            """
            buildFile << """
                apply plugin:'java'
                dependencies {
                    implementation 'org.acme:nested-changed:+'
                }
            """
    
            createDir("buildSrc") {
                file("settings.gradle") << "rootProject.name = 'buildsrc-changed'"
                file('build.gradle') << ""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 27 15:36:36 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

                    }
                    if (host.startParameterProperties != startParameterProperties) {
                        return "the set of Gradle properties has changed"
                    }
                    if (host.ignoreInputsInConfigurationCacheTaskGraphWriting != ignoreInputsInConfigurationCacheTaskGraphWriting) {
                        return "the set of ignored configuration inputs has changed"
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishMultiProjectIntegTest.groovy

            def project3 = javaLibrary(mavenRepo.module("changed.group", "changed-artifact-id", "changed"))
    
            def extra = """
    project(":project3") {
        publishing {
            publications.maven {
                groupId "changed.group"
                artifactId "changed-artifact-id"
                version "changed"
            }
        }
    }
    """
            if (mapping) {
                extra = """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/envcmd/env.go

    		{Name: "GOMODCACHE", Value: cfg.GOMODCACHE, Changed: cfg.GOMODCACHEChanged},
    		{Name: "GONOPROXY", Value: cfg.GONOPROXY, Changed: cfg.GONOPROXYChanged},
    		{Name: "GONOSUMDB", Value: cfg.GONOSUMDB, Changed: cfg.GONOSUMDBChanged},
    		{Name: "GOOS", Value: cfg.Goos, Changed: cfg.Goos != runtime.GOOS},
    		{Name: "GOPATH", Value: cfg.BuildContext.GOPATH, Changed: cfg.GOPATHChanged},
    		{Name: "GOPRIVATE", Value: cfg.GOPRIVATE},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  9. api/maven-api-metadata/src/main/mdo/metadata.mdo

                    changed = true;
                }
            }
    
            Versioning versioning = sourceMetadata.getVersioning();
            if ( versioning != null )
            {
                Versioning v = getVersioning();
                if ( v == null )
                {
                    v = new Versioning();
                    setVersioning( v );
                    changed = true;
                }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 15 17:32:27 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/decompose_optionals.cc

        rewriter.startOpModification(f);
        bool changed = false;
        for (auto [call_arg, body_arg] :
             llvm::zip(call.getOperation()->getOperands(),
                       f.getBody().front().getArguments())) {
          if (call_arg.getType() != body_arg.getType()) {
            body_arg.setType(call_arg.getType());
            changed = true;
          }
        }
        if (changed) {
          rewriter.finalizeOpModification(f);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top