Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 130 for negligible (0.4 sec)

  1. doc/next/6-stdlib/1-time.md

    ### Timer changes
    
    Go 1.23 makes two significant changes to the implementation of
    [time.Timer] and [time.Ticker].
    
    <!-- go.dev/issue/61542 -->
    First, `Timer`s and `Ticker`s that are no longer referred to by the program
    become eligible for garbage collection immediately, even if their
    `Stop` methods have not been called.
    Earlier versions of Go did not collect unstopped `Timer`s until after
    they had fired and never collected unstopped `Ticker`s.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 20:49:22 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. src/runtime/testdata/testprogcgo/pprof_callback.go

    //
    // This is a regression test for issue 50936.
    
    /*
    #include <unistd.h>
    
    void goCallbackPprof();
    
    static void callGo() {
    	// Spent >20us in C so this thread is eligible for sysmon to retake its
    	// P.
    	usleep(50);
    	goCallbackPprof();
    }
    */
    import "C"
    
    import (
    	"fmt"
    	"os"
    	"runtime"
    	"runtime/pprof"
    	"time"
    )
    
    func init() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 08 15:44:05 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/flow/FlowAction.java

    import org.gradle.api.file.FileSystemOperations;
    import org.gradle.process.ExecOperations;
    
    /**
     * A dataflow action.
     *
     * <p>
     * A parameterized and isolated piece of work that becomes eligible for execution within a
     * {@link FlowScope dataflow scope} as soon as all of its input {@link FlowParameters parameters}
     * become available.
     * </p>
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 20:51:35 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption.go

    }
    
    // PodEligibleToPreemptOthers returns one bool and one string. The bool
    // indicates whether this pod should be considered for preempting other pods or
    // not. The string includes the reason if this pod isn't eligible.
    // There're several reasons:
    //  1. The pod has a preemptionPolicy of Never.
    //  2. The pod has already preempted other pods and the victims are in their graceful termination period.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 25 19:36:04 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  5. src/crypto/internal/edwards25519/scalar_test.go

    		// Generate a high scalar in [2^252, 2^252 + 2^124).
    		s[31] = 1 << 4
    		rand.Read(s[:16])
    		s[15] &= (1 << 4) - 1
    	default:
    		// Generate a valid scalar in [0, l) by returning [0, 2^252) which has a
    		// negligibly different distribution (the former has a 2^-127.6 chance
    		// of being out of the latter range).
    		rand.Read(s[:])
    		s[31] &= (1 << 4) - 1
    	}
    
    	val := Scalar{}
    	fiatScalarFromBytes((*[4]uint64)(&val.s), &s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  6. src/internal/trace/testdata/testprog/cpu-profile.go

    	dur := 100 * time.Millisecond
    	func() {
    		// Create a region in the execution trace. Set and clear goroutine
    		// labels fully within that region, so we know that any CPU profile
    		// sample with the label must also be eligible for inclusion in the
    		// execution trace.
    		ctx := context.Background()
    		defer trace.StartRegion(ctx, "cpuHogger").End()
    		pprof.Do(ctx, pprof.Labels("tracing", "on"), func(ctx context.Context) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. internal/bucket/lifecycle/noncurrentversion.go

    func (n NoncurrentVersionTransition) NextDue(obj ObjectOpts) (time.Time, bool) {
    	if obj.IsLatest || n.StorageClass == "" {
    		return time.Time{}, false
    	}
    	// Days == 0 indicates immediate tiering, i.e object is eligible for tiering since it became noncurrent.
    	if n.NoncurrentDays == 0 {
    		return obj.SuccessorModTime, true
    	}
    	return ExpectedExpiryTime(obj.SuccessorModTime, int(n.NoncurrentDays)), true
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Dec 14 17:41:44 UTC 2021
    - 5.3K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/ConcurrencyDependencyGraph.java

            return new ArrayList<>(result);
        }
    
        /**
         * Marks the provided project as finished. Returns a list of
         *
         * @param mavenProject The project
         * @return The list of builds that are eligible for starting now that the provided project is done
         */
        public List<MavenProject> markAsFinished(MavenProject mavenProject) {
            finishedProjects.add(mavenProject);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/JvmVendorSpec.java

         * @since 7.6
         */
        @Incubating
        public abstract boolean matches(String vendor);
    
        /**
         * Returns a vendor spec that matches a VM by its vendor.
         * <p>
         * A VM is determined eligible if the system property <code>java.vendor</code> contains
         * the given match string. The comparison is done case-insensitive.
         * </p>
         * @param match the sequence to search for
         * @return a new filter object
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. docs/bucket/lifecycle/DESIGN.md

    ## Implementation
    
    ILM tiering takes place when a object placed in the bucket meets lifecycle transition rules and becomes eligible for tiering. MinIO scanner (which runs at one minute intervals, each time scanning one sixteenth of the namespace), picks up the object for tiering. The data is moved to the remote tier in entirety, leaving only the object metadata on MinIO.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 4.3K bytes
    - Viewed (0)
Back to top