Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,947 for chansend (0.2 sec)

  1. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/IncrementalCompileProcessorTest.groovy

            checkCompile recompiled: [], removed: [source1]
        }
    
        def "detects source file changed"() {
            given:
            initialFiles()
    
            when:
            modified(source2)
    
            then:
            checkCompile recompiled: [source2], removed: []
        }
    
        def "detects dependency file changed"() {
            given:
            initialFiles()
    
            when:
            modified(dep4)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:31:28 UTC 2024
    - 13.7K 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. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/AbstractRepositoryMetadata.java

                }
            }
    
            boolean changed;
    
            // If file could not be found or was not valid, start from scratch
            if (metadata == null) {
                metadata = this.metadata;
    
                changed = true;
            } else {
                changed = metadata.merge(this.metadata);
            }
    
            // beware meta-versions!
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/work/InputChanges.java

     * The work action can then query what changed for an input parameter since the last execution to only process the changes.
     *
     * The following example shows a task which reverses the text in each of its input files.
     * It demonstrates how to use {@link InputChanges} to only process the changed files.
     *
     * <pre class='autoTested'>
     * abstract class IncrementalReverseTask extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 26 09:19:43 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. subprojects/core/src/integTest/groovy/org/gradle/normalization/ConfigureRuntimeClasspathNormalizationIntegrationTest.groovy

                changed()
            }
    
            void remove() {
                assert backingFile.delete()
                changed()
            }
    
            void add() {
                backingFile << "First creation of file"
                changed()
            }
    
            void changed() {
                onChange.call()
            }
        }
    
        class ManifestResource extends TestResource {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top