Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. 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)
  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. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top