Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 569 for changedTo (0.13 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileCollectionIntegrationTest.groovy

            configurationCacheRun("report")
    
            then:
            fixture.assertStateStored()
            outputContains("Calculating task graph as configuration cache cannot be reused because an input to build file 'build.gradle' has changed.")
            outputContains(output2)
    
            when:
            configurationCacheRun("report")
    
            then:
            fixture.assertStateLoaded()
            outputContains(output2)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            e.message == 'The value for this property is final and cannot be changed any further.'
    
            when:
            property.add(Stub(PropertyInternal))
    
            then:
            def e2 = thrown(IllegalStateException)
            e2.message == 'The value for this property is final and cannot be changed any further.'
        }
    
        def "cannot add element after value finalized implicitly"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  3. pkg/api/pod/util_test.go

    					dropDisabledFields(&newPod.Spec, nil, oldPodSpec, nil)
    
    					// old pod should never be changed
    					if !reflect.DeepEqual(oldPod, oldPodInfo.pod()) {
    						t.Errorf("old pod changed: %v", cmp.Diff(oldPod, oldPodInfo.pod()))
    					}
    
    					switch {
    					case enabled || oldPodHasProcMount:
    						// new pod should not be changed if the feature is enabled, or if the old pod had ProcMount
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/propagate_quantize_type.cc

                                            op->getUsers().end());
    
        bool changed = false;
        for (auto& use : op->getUses()) {
          Operation* user_op = use.getOwner();
          int user_idx = use.getOperandNumber();
          if (!IsOpWithInt8TypeOperand(user_op)) continue;
          // If the next op is terminator, function type needs to be changed so
          // handle this case separately when propagating for function op is
          // added.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DefaultProjectConnection.java

            for (Path changedPath : changedPaths) {
                if (!changedPath.isAbsolute()) {
                    throw new IllegalArgumentException(String.format("Changed path '%s' is not absolute", changedPath));
                }
                absolutePaths.add(changedPath.toString());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. 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)
  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. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_island_coarsening.cc

          // Iterate until fixed point on the block, as it may contain multiple
          // clusters.
          bool changed = true;
          while (changed) {
            changed = false;
            for (Operation& op : graph_body) {
              if (failed(MergeIsland(is_op_calling_func_for_cluster,
                                     cluster_to_tpu_ops_map, &op, &changed))) {
                graph.emitError()
                    << "Merging island failed: the TPU cluster likely "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysisData.java

     * Contains a reverse dependency view, so we can determine which classes in this set are affected by a change to a class inside or outside this set.
     * Contains information about the accessible, inlineable constants in each class, since these require full recompilation of dependents if changed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 15:22:57 UTC 2024
    - 15.9K bytes
    - Viewed (0)
Back to top