Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 57 for homes (0.05 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    	// causing a request to be launched a certain amount of time
    	// before the previous one finishes.
    	thinkDuration time.Duration
    	// padDuration is additional time during which this request occupies its seats.
    	// This comes at the end of execution, after the reply has been released toward
    	// the client.
    	// The evaluation code below does not take this into account.
    	// In cases where `padDuration` makes a difference,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  2. src/os/os_test.go

    	}
    	if err != nil {
    		// UserHomeDir may return a non-nil error if the environment variable
    		// for the home directory is empty or unset in the environment.
    		t.Skipf("skipping: %v", err)
    	}
    
    	fi, err := Stat(dir)
    	if err != nil {
    		if IsNotExist(err) {
    			// The user's home directory has a well-defined location, but does not
    			// exist. (Maybe nothing has written to it yet? That could happen, for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  3. pkg/controller/podautoscaler/horizontal.go

    	"k8s.io/kubernetes/pkg/controller/util/selectors"
    )
    
    var (
    	scaleUpLimitFactor  = 2.0
    	scaleUpLimitMinimum = 4.0
    )
    
    var (
    	// errSpec is used to determine if the error comes from the spec of HPA object in reconcileAutoscaler.
    	// All such errors should have this error as a root error so that the upstream function can distinguish spec errors from internal errors.
    	// e.g., fmt.Errorf("invalid spec%w", errSpec)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

       (HasOneUse $sub),
       (HasOneUse $max)]>;
    
    // Convert softmax(x-reshape(maximum(max(x), -inf))) into softmax(x) as the softmax op already deals
    // with the max normalization. This comes from upstream Jax (https://github.com/google/jax/pull/15677)
    def FoldNormalizationIntoSoftmaxJaxWithAxisMinus1 : Pat<
      (TFL_SoftmaxOp
        (TFL_SubOp:$sub $input,
        (TFL_ReshapeOp:$reshape
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  5. src/crypto/tls/tls_test.go

    			SupportedCurves:   []CurveID{CurveP256},
    			SupportedPoints:   []uint8{pointFormatUncompressed},
    			SignatureSchemes:  nil,
    			SupportedVersions: []uint16{VersionTLS12},
    		}, ""}, // TLS 1.2 comes with default signature schemes.
    		{ecdsaCert, &ClientHelloInfo{
    			CipherSuites:      []uint16{TLS_RSA_WITH_AES_128_GCM_SHA256},
    			SupportedCurves:   []CurveID{CurveP256},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/Futures.java

      // safely publish these objects and we won't need this whole discussion.
      // TODO(user,lukes): consider adding volatile to all these fields since in current known JVMs
      // that should resolve the issue. This comes at the cost of adding more write barriers to the
      // implementations.
    
      private Futures() {}
    
      /**
       * Creates a {@code ListenableFuture} which has its value set immediately upon construction. The
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. src/runtime/mgcmark.go

    		throw("nwait > work.nprocs")
    	}
    
    	// gcDrainN requires the caller to be preemptible.
    	casGToWaitingForGC(gp, _Grunning, waitReasonGCAssistMarking)
    
    	// drain own cached work first in the hopes that it
    	// will be more cache friendly.
    	gcw := &getg().m.p.ptr().gcw
    	workDone := gcDrainN(gcw, scanWork)
    
    	casgstatus(gp, _Gwaiting, _Grunning)
    
    	// Record that we did this much scan work.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/Futures.java

      // safely publish these objects and we won't need this whole discussion.
      // TODO(user,lukes): consider adding volatile to all these fields since in current known JVMs
      // that should resolve the issue. This comes at the cost of adding more write barriers to the
      // implementations.
    
      private Futures() {}
    
      /**
       * Creates a {@code ListenableFuture} which has its value set immediately upon construction. The
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  9. src/runtime/mgcpacer.go

    	// marking as a fraction of GOMAXPROCS.
    	//
    	// Increasing the goal utilization will shorten GC cycles as the GC
    	// has more resources behind it, lessening costs from the write barrier,
    	// but comes at the cost of increasing mutator latency.
    	gcGoalUtilization = gcBackgroundUtilization
    
    	// gcBackgroundUtilization is the fixed CPU utilization for background
    	// marking. It must be <= gcGoalUtilization. The difference between
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/prove.go

    				lim.umin = uint64(lim.min)
    			}
    			if lim.max != noLimit.max && old.min >= 0 && lim.max >= 0 {
    				// 0 <= int(x) <= N  ⇒  0 <= uint(x) <= N
    				// This is for a max update, so the lower bound
    				// comes from what we already know (old).
    				lim.umax = uint64(lim.max)
    			}
    		case unsigned:
    			uc := w.AuxUnsigned()
    			switch r {
    			case lt:
    				lim.umax = uc - 1
    			case lt | eq:
    				lim.umax = uc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
Back to top