Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 423 for marking (0.11 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/cache/MarkingStrategy.java

    import java.io.File;
    
    /**
     * Represents a method of marking a cache directory. This is used to mark Gradle's cache directories.
     *
     * <p>
     * You may implement your own marking strategy by implementing this interface and setting {@link CacheConfigurations#getMarkingStrategy()}.
     * </p>
     *
     * @since 8.1
     */
    @Incubating
    public interface MarkingStrategy {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 25 20:35:25 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonRegistryUpdater.java

            LOGGER.info("Marking the daemon as idle, address: {}", connectorAddress);
            try {
                daemonRegistry.markState(connectorAddress, Idle);
            } catch (DaemonRegistry.EmptyRegistryException e) {
                LOGGER.warn("Cannot mark daemon as idle because the registry is empty.");
            }
        }
    
        public void onCancel() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. pkg/controller/nodelifecycle/config/types.go

    	SecondaryNodeEvictionRate float32
    	// nodeStartupGracePeriod is the amount of time which we allow starting a node to
    	// be unresponsive before marking it unhealthy.
    	NodeStartupGracePeriod metav1.Duration
    	// NodeMonitorGracePeriod is the amount of time which we allow a running node to be
    	// unresponsive before marking it unhealthy. Must be N times more than kubelet's
    	// nodeStatusUpdateFrequency, where N means number of retries allowed for kubelet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 18:14:18 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/initScripts/cacheMarking/groovy/gradleUserHome/init.d/cache-settings.gradle

    beforeSettings { settings ->
        settings.caches {
            // Disable cache marking for all caches
            markingStrategy = MarkingStrategy.NONE
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 154 bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/registry/DaemonRegistryUpdaterTest.groovy

            given:
            updater.onStart(address)
    
            when:
            updater.onCompleteActivity()
    
            then:
            1 * registry.markState(address, Idle)
        }
    
        def "ignores empty cache on marking idle"() {
            given:
            updater.onStart(address)
            registry.markState(address, Idle) >> { throw new EmptyRegistryException("") }
    
            when:
            updater.onCompleteActivity()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/initScripts/cacheMarking/kotlin/gradleUserHome/init.d/cache-settings.gradle.kts

    beforeSettings {
        caches {
            // Disable cache marking for all caches
            markingStrategy = MarkingStrategy.NONE
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 133 bytes
    - Viewed (0)
  7. src/runtime/mcheckmark.go

    // is stored on the bit corresponding to the first word of the marked
    // allocation.
    type checkmarksMap struct {
    	_ sys.NotInHeap
    	b [heapArenaBytes / goarch.PtrSize / 8]uint8
    }
    
    // If useCheckmark is true, marking of an object uses the checkmark
    // bits instead of the standard mark bits.
    var useCheckmark = false
    
    // startCheckmarks prepares for the checkmarks phase.
    //
    // The world must be stopped.
    func startCheckmarks() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. cmd/kube-controller-manager/app/options/nodelifecyclecontroller.go

    		"Amount of time which we allow starting Node to be unresponsive before marking it unhealthy.")
    	fs.DurationVar(&o.NodeMonitorGracePeriod.Duration, "node-monitor-grace-period", o.NodeMonitorGracePeriod.Duration,
    		"Amount of time which we allow running Node to be unresponsive before marking it unhealthy. "+
    			"Must be N times more than kubelet's nodeStatusUpdateFrequency, "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 09:25:51 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/ObjectFile.java

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform;
    
    import org.gradle.api.Incubating;
    import org.gradle.platform.base.TransformationFileType;
    
    /**
     * LanguageOutputType marking object file output type.
     * */
    @Incubating
    public class ObjectFile implements TransformationFileType {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 883 bytes
    - Viewed (0)
  10. okhttp-testing-support/src/main/kotlin/okhttp3/testing/Flaky.kt

     * limitations under the License.
     */
    package okhttp3.testing
    
    @Target(AnnotationTarget.CLASS, AnnotationTarget.FUNCTION)
    @Retention(AnnotationRetention.RUNTIME)
    /**
     * Annotation marking a test as flaky, and requires extra logging and linking against
     * a known github issue.  This does not ignore the failure.
     */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 902 bytes
    - Viewed (0)
Back to top