Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 863 for calculateId (0.16 sec)

  1. pkg/kubelet/server/stats/fs_resource_analyzer.go

    	s.cachedVolumeStats.Store(newCache)
    }
    
    // GetPodVolumeStats returns the PodVolumeStats for a given pod.  Results are looked up from a cache that
    // is eagerly populated in the background, and never calculated on the fly.
    func (s *fsResourceAnalyzer) GetPodVolumeStats(uid types.UID) (PodVolumeStats, bool) {
    	cache := s.cachedVolumeStats.Load().(statCache)
    	statCalc, found := cache[uid]
    	if !found {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 09 16:16:37 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/LifecycleMappingDelegate.java

    import org.apache.maven.project.MavenProject;
    
    /**
     * Lifecycle mapping delegate component interface. Calculates project build execution plan given {@link Lifecycle} and
     * lifecycle phase. Standard lifecycles use plugin execution {@code <phase>} or mojo default lifecycle phase to
     * calculate the execution plan, but custom lifecycles can use alternative mapping strategies.
     * <p>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. pkg/kubelet/server/stats/volume_stat_calculator.go

    			trace := utiltrace.New(fmt.Sprintf("Calculate volume metrics of %v for pod %v/%v", name, s.pod.Namespace, s.pod.Name))
    			defer trace.LogIfLong(1 * time.Second)
    			return v.GetMetrics()
    		}()
    		if err != nil {
    			// Expected for Volumes that don't support Metrics
    			if !volume.IsNotSupported(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 29 00:55:10 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildOperationsIntegrationTest.groovy

            treeTaskGraphOps.size() == 2
            treeTaskGraphOps[0].displayName == "Calculate build tree task graph"
            treeTaskGraphOps[0].parentId == applyRootProjectBuildScript.id
            treeTaskGraphOps[1].displayName == "Calculate build tree task graph"
            treeTaskGraphOps[1].parentId == root.id
    
            // The task graph for buildB is calculated multiple times, once for the buildscript dependency and again for the production dependency
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ProviderInternal.java

     *     However, when the value itself is also calculated from work node outputs, then the provider will carry dependencies on the work nodes that produce the value (as the consumer does care about the value).
     *     </p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/lazy_configuration.adoc

    ```
    modifiedFiles.finalizeValueOnRead()
    ```
    
    In other words, this method calculates the final value lazily as required, whereas `finalizeValue()` calculates the final value eagerly.
    This method can be used when the value may be expensive to calculate or may not have been configured yet.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  7. cmd/streaming-signature-v4.go

    	// Calculate signature.
    	newSignature := getSignature(signingKey, stringToSign)
    
    	// Verify if signature match.
    	if !compareSignatureV4(newSignature, signV4Values.Signature) {
    		return cred, "", "", time.Time{}, ErrSignatureDoesNotMatch
    	}
    
    	// Return calculated signature.
    	return cred, newSignature, region, date, ErrNone
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 16 23:13:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Util.h

     *            szDest did not have enough room to hold converted string).
     */
    
    CU_EXPORT size_t CU_translated_strlen(const char *szSrc);
    /**< 
     *  Calculates the length of a translated string.
     *  This function calculates the buffer length required to hold a string
     *  after processing with CU_translate_special_characters().  The returned
     *  length does not include space for the terminating '\0' character.  
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/main/java/org/gradle/language/cpp/CppComponent.java

     */
    public interface CppComponent extends ComponentWithBinaries, ComponentWithDependencies, ComponentWithTargetMachines {
        /**
         * Specifies the base name for this component. This name is used to calculate various output file names. The default value is calculated from the project name.
         */
        Property<String> getBaseName();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/UnitOfWork.java

         * These are more expensive to calculate than regular inputs as they need to be calculated even if the execution of the work is short circuited by an identity cache.
         * They also cannot reuse snapshots taken during previous executions.
         * Because of these reasons only capture inputs as identity if they are actually used to calculate the identity of the work.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 13.1K bytes
    - Viewed (0)
Back to top