Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,947 for chansend (0.49 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. src/cmd/vendor/golang.org/x/text/language/language.go

    				t.LangID = _nb
    				changed = true
    			}
    			break
    		}
    	}
    	if c&DeprecatedScript != 0 {
    		if t.ScriptID == _Qaai {
    			changed = true
    			t.ScriptID = _Zinh
    		}
    	}
    	if c&DeprecatedRegion != 0 {
    		if r := t.RegionID.Canonicalize(); r != t.RegionID {
    			changed = true
    			t.RegionID = r
    		}
    	}
    	return t, changed
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. 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)
  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. 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)
  6. guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

          refreshIfEmpty();
          boolean changed = delegate.remove(o);
          if (changed) {
            totalSize--;
            removeIfEmpty();
          }
          return changed;
        }
    
        @Override
        public boolean removeAll(Collection<?> c) {
          if (c.isEmpty()) {
            return false;
          }
          int oldSize = size(); // calls refreshIfEmpty
          boolean changed = delegate.removeAll(c);
          if (changed) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 48K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top