Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 380 for hard (0.05 sec)

  1. android/guava-testlib/src/com/google/common/testing/GcFinalization.java

       * gigantic heap, in which case we scale by heap size.
       */
      private static long timeoutSeconds() {
        // This class can make no hard guarantees.  The methods in this class are inherently flaky, but
        // we try hard to make them robust in practice.  We could additionally try to add in a system
        // load timeout multiplier.  Or we could try to use a CPU time bound instead of wall clock time
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. pkg/scheduler/testing/wrappers.go

    	NilPodAffinity PodAffinityKind = iota
    	// PodAffinityWithRequiredReq applies a HARD requirement to pod.spec.affinity.PodAffinity.
    	PodAffinityWithRequiredReq
    	// PodAffinityWithPreferredReq applies a SOFT requirement to pod.spec.affinity.PodAffinity.
    	PodAffinityWithPreferredReq
    	// PodAffinityWithRequiredPreferredReq applies HARD and SOFT requirements to pod.spec.affinity.PodAffinity.
    	PodAffinityWithRequiredPreferredReq
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/apiclient/dryrunclient.go

    // This just makes it easier to catch all actions that has a name; instead of hard-coding all request that has it associated
    type actionWithName interface {
    	core.Action
    	GetName() string
    }
    
    // actionWithObject is the generic interface for an action that has an object associated with it
    // This just makes it easier to catch all actions that has an object; instead of hard-coding all request that has it associated
    type actionWithObject interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 21 09:49:59 UTC 2022
    - 10.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/common_caching_problems.adoc

    == Symbolic links
    
    When using symbolic links, Gradle does not store the link in the build cache but the actual file contents of the destination of the link.
    As a consequence you might have a hard time when trying to reuse outputs which heavily use symbolic links.
    There currently is no workaround for this behavior.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/plan/Node.java

        public Iterable<Node> getAllSuccessors() {
            return getHardSuccessors();
        }
    
        /**
         * Returns all the nodes which are hard successors, i.e. which have a non-removable relationship to the current node.
         *
         * For example, for tasks `shouldRunAfter` isn't a hard successor while `mustRunAfter` is.
         */
        @OverridingMethodsMustInvokeSuper
        public Iterable<Node> getHardSuccessors() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 24 13:30:48 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/testing/GcFinalization.java

       * gigantic heap, in which case we scale by heap size.
       */
      private static long timeoutSeconds() {
        // This class can make no hard guarantees.  The methods in this class are inherently flaky, but
        // we try hard to make them robust in practice.  We could additionally try to add in a system
        // load timeout multiplier.  Or we could try to use a CPU time bound instead of wall clock time
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/podtopologyspread/plugin.go

    			pod.Labels,
    			v1.DoNotSchedule,
    		)
    		if err != nil {
    			return nil, fmt.Errorf("obtaining pod's hard topology spread constraints: %w", err)
    		}
    	} else {
    		constraints, err = pl.buildDefaultConstraints(pod, v1.DoNotSchedule)
    		if err != nil {
    			return nil, fmt.Errorf("setting default hard topology spread constraints: %w", err)
    		}
    	}
    	return constraints, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. pkg/kube/krt/README.md

    it is not yet clear this is desired.
    
    ### Performance
    
    Compared to a perfectly optimized hand-written controller, `krt` adds some overhead.
    However, writing a perfectly optimized controller is hard, and often not done.
    As a result, for many scenarios it is expected that `krt` will perform on-par or better.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 17:21:50 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  9. src/runtime/sys_linux_arm.s

    	MOVW	code+0(FP), R0
    	MOVW	$SYS_exit_group, R7
    	SWI	$0
    	MOVW	$1234, R0
    	MOVW	$1002, R1
    	MOVW	R0, (R1)	// fail hard
    
    TEXT exit1<>(SB),NOSPLIT|NOFRAME,$0
    	MOVW	code+0(FP), R0
    	MOVW	$SYS_exit, R7
    	SWI	$0
    	MOVW	$1234, R0
    	MOVW	$1003, R1
    	MOVW	R0, (R1)	// fail hard
    
    // func exitThread(wait *atomic.Uint32)
    TEXT runtime·exitThread(SB),NOSPLIT|NOFRAME,$0-4
    	MOVW	wait+0(FP), R0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  10. src/internal/coverage/cfile/emit.go

    		" fnID:", fnID, " numCtrs:", nCtrs)
    	println("list of hard-coded runtime package IDs needs revising.")
    	println("[see the comment on the 'rtPkgs' var in ")
    	println(" <goroot>/src/internal/coverage/pkid.go]")
    	println("registered list:")
    	for k, b := range metaList {
    		print("slot: ", k, " path='", b.PkgPath, "' ")
    		if b.PkgID != -1 {
    			print(" hard-coded id: ", b.PkgID)
    		}
    		println("")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top