Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,928 for CHANGED (0.11 sec)

  1. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/BuildSrcContinuousIntegrationTest.groovy

            when:
            file("buildSrc/src/main/groovy/Thing.groovy").text = """
                class Thing {
                  public static final String VALUE = "changed"
                }
            """
    
            then:
            buildTriggeredAndSucceeded()
            outputContains "value: changed"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/pointers/KtSymbolPointer.kt

     *  * for library symbols:
     *    * for function & property symbol if its signature was not changed
     *    * for local variable symbol if code block it was declared in was not changed
     *    * for class & type alias symbols if its qualified name was not changed
     *    * for package symbol if the package is still exists
     *
     * @see org.jetbrains.kotlin.analysis.api.lifetime.KaReadActionConfinementLifetimeToken
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/interface.go

    	SetToCurrentTime()
    }
    
    // RatioedGauge tracks ratios.
    // The numerator is set/changed through the Gauge methods,
    // and the denominator can be updated through the SetDenominator method.
    // A ratio is tracked whenever the numerator or denominator is set/changed.
    type RatioedGauge interface {
    	Gauge
    
    	// SetDenominator sets the denominator to use until it is changed again
    	SetDenominator(float64)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 13 03:37:15 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/mlir_graph_optimization_pass_test.cc

        MlirOptimizationPassRegistry::Global().ClearPasses();
      }
    
      void verifyGraph(const GraphDef& original_graph_def, bool changed = false) {
    // Proto matchers might be unavailable in the OSS.
    #if defined(PLATFORM_GOOGLE)
        GraphDef resulted_graph_def;
        graph_->ToGraphDef(&resulted_graph_def);
    
        if (changed)
          EXPECT_THAT(resulted_graph_def,
                      Not(::testing::proto::IgnoringRepeatedFieldOrdering(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 08:25:30 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/integTest/groovy/org/gradle/internal/execution/IncrementalExecutionIntegrationTest.groovy

            !result.reusedOutputOriginMetadata.present
            result.executionReasons == ["Output property 'file' file ${outputFile.absolutePath} has changed."]
        }
    
        def "out of date when any file in output dir has changed type"() {
            given:
            execute(unitOfWork)
    
            when:
            outputDirFile.delete()
            outputDirFile.createDir()
            def result = execute(unitOfWork)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/resource_device_inference.cc

      // conflicts with an existing one, returns an error.
      //
      // If `changed` is provided, assign *changed to true if anything is modified.
      LogicalResult AddResourceDevice(Value resource, StringRef device,
                                      bool* changed = nullptr) {
        if (alias_analysis_.IsUnknownResource(resource)) return success();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 03:47:00 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  7. platforms/software/antlr/src/integTest/groovy/org/gradle/api/plugins/antlr/IncrementalAntlrTaskIntegrationTest.groovy

        def test2ParserFile = file("grammar-builder/build/generated-src/antlr/main/Test2Parser.java")
    
        def setup() {
            buildFile << buildLogicForMinimumBuildTime(2000)
        }
    
        def "changed task inputs handled incrementally"() {
            when:
            grammar("Test1", "Test2")
            then:
            succeeds("generateGrammarSource")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/mergepatch/util.go

    // is present in the patch (indicating that its value has changed).
    func RequireKeyUnchanged(key string) PreconditionFunc {
    	return func(patch interface{}) bool {
    		patchMap, ok := patch.(map[string]interface{})
    		if !ok {
    			return true
    		}
    
    		// The presence of key means that its value has been changed, so the test fails.
    		_, ok = patchMap[key]
    		return !ok
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 01:24:22 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_optimizations.adoc

    An *incremental build* is a build that avoids running tasks whose inputs have not changed since the previous build.
    Re-executing such tasks is unnecessary if they would only re-produce the same output.
    
    For incremental builds to work, tasks must define their inputs and outputs.
    Gradle will determine whether the input or outputs have changed at build time.
    If they have changed, Gradle will execute the task.
    Otherwise, it will skip execution.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part5_gradle_inc_builds.adoc

    For incremental builds to work, tasks must define their inputs and outputs. At build time, Gradle will determine whether the input or outputs have changed. If they have changed, Gradle will execute the task. Otherwise, it will skip execution.
    
    == Step 2. Updating Gradle Properties
    To better see incremental builds in action, we are going to switch the console output to verbose.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top