Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 249 for Performing (0.2 sec)

  1. src/runtime/metrics/doc.go

    		Estimated total CPU time goroutines spent performing GC
    		tasks to assist the GC and prevent it from falling behind the
    		application. This metric is an overestimate, and not directly
    		comparable to system CPU time measurements. Compare only with
    		other /cpu/classes metrics.
    
    	/cpu/classes/gc/mark/dedicated:cpu-seconds
    		Estimated total CPU time spent performing GC tasks on processors
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ProjectComponentObservationListener.java

    public interface ProjectComponentObservationListener {
        /**
         * Called when one project observes the local component metadata of another project.
         *
         * @param consumingProjectPath The path of the project performing the observation. Null if the consuming resolution is not a project.
         * @param targetProjectPath The path of the project that is being observed.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/RemovalListener.java

     *
     * <p>An instance may be called concurrently by multiple threads to process different entries.
     * Implementations of this interface should avoid performing blocking calls or synchronizing on
     * shared resources.
     *
     * @param <K> the most general type of keys this listener can listen for; for example {@code Object}
     *     if any key is acceptable
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 2K bytes
    - Viewed (0)
  4. src/runtime/metrics/description.go

    		Kind:        KindUint64,
    		Cumulative:  true,
    	},
    	{
    		Name: "/cpu/classes/gc/mark/assist:cpu-seconds",
    		Description: "Estimated total CPU time goroutines spent performing GC tasks " +
    			"to assist the GC and prevent it from falling behind the application. " +
    			"This metric is an overestimate, and not directly comparable to " +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:59:12 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  5. pilot/pkg/config/monitor/README.md

    The `Start` method will immediately check the provided `getSnapshotFunc` and update the controller appropriately
    before returning. This helps to simplify tests that rely on starting in a particular state.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 14 20:15:07 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ArtifactCollection.java

         * This is primarily useful to wire this artifact collection as a task input.
         */
        FileCollection getArtifactFiles();
    
        /**
         * Returns the resolved artifacts, performing the resolution if required.
         * This will resolve the artifact metadata and download the artifact files as required.
         *
         * @throws ResolveException On failure to resolve or download any artifact.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 13:05:50 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/RemovalListener.java

     *
     * <p>An instance may be called concurrently by multiple threads to process different entries.
     * Implementations of this interface should avoid performing blocking calls or synchronizing on
     * shared resources.
     *
     * @param <K> the most general type of keys this listener can listen for; for example {@code Object}
     *     if any key is acceptable
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 2K bytes
    - Viewed (0)
  8. platforms/software/signing/src/main/java/org/gradle/plugins/signing/SignatureSpec.java

    import org.gradle.plugins.signing.type.SignatureType;
    
    /**
     * Specifies how objects will be signed.
     */
    public interface SignatureSpec {
    
        /**
         * The signatory that will be performing the signing.
         *
         * @return the signatory, or {@code null} if none specified.
         */
        Signatory getSignatory();
    
        /**
         * Sets the signatory that will be signing the input.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. src/crypto/internal/bigmod/nat_arm64.s

    TEXT addMulVVWx(SB), NOFRAME|NOSPLIT, $0
    	MOVD	z+0(FP), R1
    	MOVD	x+8(FP), R2
    	MOVD	y+16(FP), R3
    	MOVD	$0, R4
    
    // The main loop of this code operates on a block of 4 words every iteration
    // performing [R4:R12:R11:R10:R9] = R4 + R3 * [R8:R7:R6:R5] + [R12:R11:R10:R9]
    // where R4 is carried from the previous iteration, R8:R7:R6:R5 hold the next
    // 4 words of x, R3 is y and R12:R11:R10:R9 are part of the result z.
    loop:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 22:37:58 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. pkg/kubelet/eviction/types.go

    	HasDedicatedImageFs(ctx context.Context) (bool, error)
    }
    
    // ImageGC is responsible for performing garbage collection of unused images.
    type ImageGC interface {
    	// DeleteUnusedImages deletes unused images.
    	DeleteUnusedImages(ctx context.Context) error
    }
    
    // ContainerGC is responsible for performing garbage collection of unused containers.
    type ContainerGC interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top