Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 621 for changedTo (0.12 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. src/internal/godebugs/table.go

    	{Name: "tlsrsakex", Package: "crypto/tls", Changed: 22, Old: "1"},
    	{Name: "tlsunsafeekm", Package: "crypto/tls", Changed: 22, Old: "1"},
    	{Name: "winreadlinkvolume", Package: "os", Changed: 22, Old: "0"},
    	{Name: "winsymlink", Package: "os", Changed: 22, Old: "0"},
    	{Name: "x509keypairleaf", Package: "crypto/tls", Changed: 23, Old: "0"},
    	{Name: "x509negativeserial", Package: "crypto/x509", Changed: 23, Old: "1"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/env_changed.txt

    [!GOARCH:amd64] env GOARCH=amd64
    
    go env -changed GOOS
    [GOOS:windows] stdout 'set GOOS=linux'
    [!GOOS:windows] stdout 'GOOS=''windows'''
    go env -changed GOARCH
    [GOARCH:amd64] stdout 'set GOARCH=arm64|GOARCH=''arm64'''
    [!GOARCH:amd64] stdout 'set GOARCH=amd64|GOARCH=''amd64'''
    
    go env -changed -json GOOS
    [GOOS:windows] stdout '"GOOS": "linux"'
    [!GOOS:windows] stdout '"GOOS": "windows"'
    go env -changed -json GOARCH
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:49:03 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/CompilationOutputsFixture.groovy

            }
        }
    
        //asserts none of the files changed/added since last snapshot
        void noneRecompiled() {
            recompiledFiles([])
        }
    
        //asserts file changed/added since last snapshot
        void recompiledFile(File file) {
            recompiledFiles([file])
        }
    
        //asserts files changed/added since last snapshot
        void recompiledFiles(File... files) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. 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)
  6. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            def e = thrown(IllegalStateException)
            e.message == 'The value for this property is final and cannot be changed any further.'
    
            when:
            setToNull(property)
    
            then:
            def e2 = thrown(IllegalStateException)
            e2.message == 'The value for this property is final and cannot be changed any further.'
    
            when:
            property.value(someValue())
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  7. 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)
  8. subprojects/core/src/main/java/org/gradle/api/internal/FilePropertyContainer.java

        private boolean changed;
        private int unnamedPropertyCounter;
    
        private FilePropertyContainer() {
        }
    
        public static <T extends TaskFilePropertyBuilder & TaskPropertyRegistration> FilePropertyContainer<T> create() {
            return new FilePropertyContainer<T>();
        }
    
        public void add(T property) {
            properties.add(property);
            changed = true;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 2K 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