Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 442 for getMain (0.14 sec)

  1. pilot/pkg/model/kstatus/helper.go

    	if existing.Status == condition.Status {
    		if existing.Message == condition.Message &&
    			existing.ObservedGeneration == condition.ObservedGeneration {
    			// Skip update, no changes
    			return conditions
    		}
    		// retain LastTransitionTime if status is not changed
    		condition.LastTransitionTime = existing.LastTransitionTime
    	}
    	*existing = condition
    
    	return ret
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 17:36:41 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationType.java

     *
     * Implementations can assume that their getters will be called at-most-once.
     *
     * The lifecycle of details and result objects are effectively undetermined.
     * The build scan plugin will retain the objects for a short time after the operation has
     * completed, in order to "process" them on a separate thread.
     * It can be assumed that this processing happens relatively quickly,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/publicsuffix/PublicSuffixDatabase.kt

          readTheListUninterruptibly()
        } else {
          try {
            readCompleteLatch.await()
          } catch (_: InterruptedException) {
            Thread.currentThread().interrupt() // Retain interrupted status.
          }
        }
    
        check(::publicSuffixListBytes.isInitialized) {
          // May have failed with an IOException
          "Unable to load $PUBLIC_SUFFIX_RESOURCE resource from the classpath."
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultProjectArtifactFactory.java

                effectiveScope = Artifact.SCOPE_SYSTEM;
            } else if (Artifact.SCOPE_COMPILE.equals(originalScope) && Artifact.SCOPE_COMPILE.equals(inheritedScope)) {
                // added to retain compile scope. Remove if you want compile inherited as runtime
                effectiveScope = Artifact.SCOPE_COMPILE;
            } else if (Artifact.SCOPE_TEST.equals(inheritedScope)) {
                effectiveScope = Artifact.SCOPE_TEST;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 15 14:24:56 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/JdkBackedImmutableMap.java

        Map<K, V> delegateMap = Maps.newHashMapWithExpectedSize(n);
        // If duplicates are allowed, this map will track the last value for each duplicated key.
        // A second pass will retain only the first entry for that key, but with this last value. The
        // value will then be replaced by null, signaling that later entries with the same key should
        // be deleted.
        Map<K, @Nullable V> duplicates = null;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_tidy_compat.txt

    [exec:patch] cmp go.sum go.sum.tidyResult
    
    go list -m all
    cmp stdout m_all.txt
    
    go mod edit -go=1.16
    go list -m all
    cmp stdout m_all.txt
    
    
    # If we explicitly drop compatibility with 1.16, we retain fewer checksums,
    # which gives a cleaner go.sum file but causes 1.16 to fail in readonly mode.
    
    cp go.mod.orig go.mod
    go mod tidy -compat=1.17
    cmp go.mod go.mod.orig
    
    # Make sure that -diff behaves the same as tidy.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. pkg/ledger/ledger.go

    	GetPreviousValue(previousRootHash, key string) (result string, err error)
    }
    
    type smtLedger struct {
    	tree *smt
    }
    
    // Make returns a Ledger which will retain previous nodes after they are deleted.
    func Make(retention time.Duration) Ledger {
    	return smtLedger{tree: newSMT(hasher, nil, retention)}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/prepare_quantize_helper.h

                calibrated_type.getMin(), calibrated_type.getMax(),
                /*narrowRange=*/false, calibrated_type.getExpressedType(),
                /*isSigned=*/this->quant_specs_.IsSignedInferenceType());
            if (this->quant_specs_.legacy_float_scale) {
              qtype = mlir::cast<UniformQuantizedType>(
                  quant::DownCastScale(qtype, calibrated_type.getMin(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  9. pkg/controller/statefulset/stateful_set_test.go

    		verifyOwnerRefs := func(claim *v1.PersistentVolumeClaim, condemned bool) {
    			podName := getClaimPodName(set, claim)
    			const retain = apps.RetainPersistentVolumeClaimRetentionPolicyType
    			const delete = apps.DeletePersistentVolumeClaimRetentionPolicyType
    			switch {
    			case scaledownPolicy == retain && deletionPolicy == retain:
    				if hasNamedOwnerRef(claim, podName) || hasNamedOwnerRef(claim, set.Name) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/artifact/factory/DefaultArtifactFactory.java

                return null;
            } else if (Artifact.SCOPE_COMPILE.equals(scope) && Artifact.SCOPE_COMPILE.equals(inheritedScope)) {
                // added to retain compile artifactScope. Remove if you want compile inherited as runtime
                desiredScope = Artifact.SCOPE_COMPILE;
            }
    
            if (Artifact.SCOPE_TEST.equals(inheritedScope)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 6.9K bytes
    - Viewed (0)
Back to top