Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 481 for changedTo (0.15 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/config.go

    			// Shorten bool values to "f" or "t"
    			v = v[:1]
    		}
    		if q.Get(f.urlparam) == v {
    			continue
    		}
    		changed = true
    		if v == "" {
    			q.Del(f.urlparam)
    		} else {
    			q.Set(f.urlparam, v)
    		}
    	}
    	if changed {
    		initialURL.RawQuery = q.Encode()
    	}
    	return initialURL, changed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintCheckerTest.kt

                    )
                ),
                equalTo("file 'displayNameOf(scriptFile)' has changed")
            )
        }
    
        @Test
        fun `build input file has been removed`() {
            val inputFile = File("input.txt")
            // no need to match a missing file hash, as long it is changed from the original one
            val missingFileHash = TestHashCodes.hashCodeFrom(2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerPluginClasspathInjectionIntegrationTest.groovy

            then:
            result.task(":helloWorld1").outcome == SUCCESS
        }
    
        def "can use relative files as part of injected classpath"() {
            given:
            file("changed/settings.gradle").createFile()
            file("changed/build.gradle") << plugin.build().useDeclaration
            def relClasspath = plugin.implClasspath.collect {
                def path = new File("").toURI().relativize(it.toURI()).getPath()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 03:45:31 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractCrossTaskIncrementalCompilationIntegrationTest.groovy

            when: //when api class is changed
            source api: ["class A { String change; }"]
            run "compileIntegTest${language.capitalizedName}", language.compileTaskName
    
            then: //only impl class is recompiled
            impl.recompiledClasses("ImplA")
    
            when: //when other class is changed
            impl.snapshot()
            source other: ["class Other { String change; }"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/controller/controller_test.go

    		mockGetEncryptionConfigHash func(ctx context.Context, filepath string) (string, error)
    	}{
    		{
    			name:                    "when invalid config is provided previous config shouldn't be changed",
    			wantECFileHash:          "k8s:enc:unstable:1:6bc9f4aa2e5587afbb96074e1809550cbc4de3cc3a35717dac8ff2800a147fd3",
    			wantLoadCalls:           1,
    			wantHashCalls:           1,
    			wantTransformerClosed:   true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/increase_dynamism_for_auto_jit_pass.cc

        DumpGraphToFile("before_increase_dynamism_for_auto_jit_pass",
                        **options.graph, options.flib_def);
      }
    
      bool changed;
      TF_RETURN_IF_ERROR(FindAndRewriteSlices(options.graph->get(), &changed));
      if (changed && flags->tf_xla_clustering_debug) {
        DumpGraphToFile("increase_dynamism_for_auto_jit_pass", **options.graph,
                        options.flib_def);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/NestedInputIntegrationTest.groovy

                    inputProperties[property] = inputProperties[property] + ' changed'
                },
                inputFile: { String property ->
                    inputFiles[property] << ' changed'
                },
                outputFile: { String property ->
                    outputFiles[property] << ' changed'
                }
            ]
    
            def changeFirstBean(String change) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  8. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/groovy/compile/GroovyCompileToolchainIntegrationTest.groovy

            then:
            executedAndNotSkipped(":compileGroovy")
            outputContains("Value of input property 'groovyCompilerJvmVersion' has changed for task ':compileGroovy'")
            outputContains("Value of input property 'javaLauncher.metadata.languageVersion' has changed for task ':compileGroovy'")
    
            when:
            withInstallations(currentJdk, otherJdk).run(":compileGroovy", "-Pchanged")
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 17:37:16 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/network.go

    // and if it is, updates the controller's gateways.
    func (c *Controller) extractGatewaysFromService(svc *model.Service) bool {
    	changed := c.extractGatewaysInner(svc)
    	if changed {
    		c.NotifyGatewayHandlers()
    	}
    	return changed
    }
    
    // reloadNetworkGateways performs extractGatewaysFromService for all services registered with the controller.
    // It is called only by `onNetworkChange`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionFeaturesIntegrationTest.groovy

            then:
            // This should be a cache hit
            configurationCache.assertStateStored()
            outputContains("Calculating task graph as configuration cache cannot be reused because file '${repo.metadataLocation}' has changed.")
            outputContains("result = [lib1-2.1.jar]")
    
            when:
            configurationCacheRun("resolve1", "resolve2")
    
            then:
            configurationCache.assertStateLoaded()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 33K bytes
    - Viewed (0)
Back to top