Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Decisions (0.3 sec)

  1. src/net/http/server.go

    	// request, including the body. A zero or negative value means
    	// there will be no timeout.
    	//
    	// Because ReadTimeout does not let Handlers make per-request
    	// decisions on each request body's acceptable deadline or
    	// upload rate, most users will prefer to use
    	// ReadHeaderTimeout. It is valid to use them both.
    	ReadTimeout time.Duration
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    // a separate software build system may choose to use lower-level
    // invocations such as 'go tool compile' and 'go tool link' to avoid
    // some of the overheads and design decisions of the build tool.
    //
    // See also: go install, go get, go clean.
    //
    // # Remove object files and cached files
    //
    // Usage:
    //
    //	go clean [clean flags] [build flags] [packages]
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/data.go

    			// single iteration that assigns temporary addresses to all
    			// of the text in the same package, using the maximum possible
    			// number of trampolines. This allows for better decisions to
    			// be made regarding reachability and the need for trampolines.
    			if symPkg := ldr.SymPkg(s); symPkg != "" && curPkg != symPkg {
    				curPkg = symPkg
    				vaTmp := va
    				for j := i; j < len(ctxt.Textp); j++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__policy__v1_openapi.json

    PDB is met. This means perspective running pods of a disrupted application might not get a chance to become healthy. Healthy pods will be subject to the PDB for eviction.\n\nAdditional policies may be added in the future. Clients making eviction decisions should disallow eviction of unhealthy pods if they encounter an unrecognized policy in this field.\n\nThis field is beta-level. The eviction API uses this field when the feature gate PDBUnhealthyPodEvictionPolicy is enabled (enabled by default).",...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_set_control_test.go

    				t.Fatalf("Error getting updated StatefulSet: %v", err)
    			}
    			revisions, err := ssc.ListRevisions(set)
    			if err != nil {
    				t.Fatalf("Error listing revisions: %v", err)
    			}
    			// the extra 2 revisions are `currentRevision` and `updateRevision`
    			// They're considered as `live`, and truncateHistory only cleans up non-live revisions
    			if len(revisions) > int(*set.Spec.RevisionHistoryLimit)+2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    		if tail == atomic.Load(&pp.runqtail) {
    			return head == tail && runnext == 0
    		}
    	}
    }
    
    // To shake out latent assumptions about scheduling order,
    // we introduce some randomness into scheduling decisions
    // when running with the race detector.
    // The need for this was made obvious by changing the
    // (deterministic) scheduling order in Go 1.5 and breaking
    // many poorly-written tests.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. cmd/bucket-replication.go

    		})
    		return
    	}
    	dsc, err := parseReplicateDecision(ctx, bucket, dobj.ReplicationState.ReplicateDecisionStr)
    	if err != nil {
    		replLogOnceIf(ctx, fmt.Errorf("unable to parse replication decision parameters for bucket: %s, err: %s, decision: %s",
    			bucket, err, dobj.ReplicationState.ReplicateDecisionStr), dobj.ReplicationState.ReplicateDecisionStr)
    		sendEvent(eventArgs{
    			BucketName: bucket,
    			Object: ObjectInfo{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      // is up to ~2x faster.
      const bool is_f16 = input_ty.getElementType().isF16();
      if (is_f16 && CanUseTensorCores(devices)) return "NHWC";
    
      // For f32/f16 data type decision depends on the filter size in spatial
      // dimensions, for other data types we keep current data format.
      if (!input_ty.getElementType().isF32() && !input_ty.getElementType().isF16())
        return getDataFormat();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

              // Ternimator ops, for example, tfl::yield op, should be ignored since
              // the argument can be used for yielding as the `body` function result
              // and that does not give any meaningful points to the decision
              // whether the given arugment is a read-only variable or not.
              if (user->hasTrait<OpTrait::IsTerminator>()) continue;
              if (!llvm::isa<mlir::TF::ReadVariableOp>(user)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet.go

    			klog.ErrorS(err, "SetPodAllocation failed", "pod", klog.KObj(updatedPod))
    			return pod
    		}
    	}
    	if resizeStatus != "" {
    		// Save resize decision to checkpoint
    		if err := kl.statusManager.SetPodResizeStatus(updatedPod.UID, resizeStatus); err != nil {
    			//TODO(vinaykul,InPlacePodVerticalScaling): Can we recover from this in some way? Investigate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top