Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 706 for light (0.04 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    	// Once this grace period elapses, the apiserver will no longer
    	// wait for any active watch request(s) in flight to drain, it will
    	// proceed to the next step in the graceful server shutdown process.
    	// If set to a positive value, the apiserver will keep track of the
    	// number of active watch request(s) in flight and during shutdown
    	// it will wait, at most, for the specified duration and allow these
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  2. src/compress/gzip/gunzip_test.go

    			"  We are met on a great battle-field of that war.\n" +
    			"  We have come to dedicate a portion of that field, as a final\n" +
    			"resting place for those who here gave their lives that that\n" +
    			"nation might live.  It is altogether fitting and proper that\n" +
    			"we should do this.\n" +
    			"  But, in a larger sense, we can not dedicate — we can not\n" +
    			"consecrate — we can not hallow — this ground.\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 12 15:06:07 UTC 2022
    - 19.5K bytes
    - Viewed (0)
  3. src/runtime/metrics.go

    	}
    	d.compute = metricReader(read).compute
    	metrics[name] = d
    	metricsUnlock()
    }
    
    // statDep is a dependency on a group of statistics
    // that a metric might have.
    type statDep uint
    
    const (
    	heapStatsDep statDep = iota // corresponds to heapStatsAggregate
    	sysStatsDep                 // corresponds to sysStatsAggregate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
  4. src/time/example_test.go

    	do("Spaces", "<_2>", "< 7>")
    
    	// A "0" indicates zero padding for single-digit values.
    	do("Zeros", "<02>", "<07>")
    
    	// If the value is already the right width, padding is not used.
    	// For instance, the second (05 in the reference time) in our value is 39,
    	// so it doesn't need padding, but the minutes (04, 06) does.
    	do("Suppressed pad", "04:05", "06:39")
    
    	// Output:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 01:05:00 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  5. pkg/apis/resource/validation/validation.go

    	allErrs := corevalidation.ValidateObjectMetaUpdate(&resourceClaim.ObjectMeta, &oldClaim.ObjectMeta, field.NewPath("metadata"))
    	fldPath := field.NewPath("status")
    	// The name might not be set yet.
    	if resourceClaim.Status.DriverName != "" {
    		allErrs = append(allErrs, validateResourceDriverName(resourceClaim.Status.DriverName, fldPath.Child("driverName"))...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  6. pkg/volume/util/subpath/subpath_linux.go

    		}
    		parentFD = childFD
    		childFD = -1
    
    		// Everything was created. mkdirat(..., perm) above was affected by current
    		// umask and we must apply the right permissions to the all created directory.
    		// (that's the one that will be available to the container as subpath)
    		// so user can read/write it.
    		// parentFD is the last created directory.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 12 14:09:11 UTC 2022
    - 21.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/walk/expr.go

    func walkLogical(n *ir.LogicalExpr, init *ir.Nodes) ir.Node {
    	n.X = walkExpr(n.X, init)
    
    	// cannot put side effects from n.Right on init,
    	// because they cannot run before n.Left is checked.
    	// save elsewhere and store on the eventual n.Right.
    	var ll ir.Nodes
    
    	n.Y = walkExpr(n.Y, &ll)
    	n.Y = ir.InitExpr(ll, n.Y)
    	return n
    }
    
    // walkSend walks an OSEND node.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  8. cmd/sts-datatypes.go

    	// strongly recommend that you make no assumptions about the maximum size. As
    	// of this writing, the typical size is less than 4096 bytes, but that can vary.
    	// Also, future updates to AWS might require larger sizes.
    	Credentials auth.Credentials `xml:",omitempty"`
    
    	// A percentage value that indicates the size of the policy in packed form.
    	// The service rejects any policy with a packed size greater than 100 percent,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 27 00:58:09 UTC 2022
    - 9.9K bytes
    - Viewed (0)
  9. pkg/apis/storage/types.go

    	// a lifecycle that is tied to the lifecycle of the pod. For example, such
    	// a volume might contain data that gets created specifically for that pod,
    	// like secrets.
    	// But how the volume actually gets created and managed is entirely up to
    	// the driver. It might also use reference counting to share the same volume
    	// instance among different pods if the CSIVolumeSource of those pods is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  10. src/runtime/trace.go

    			// because we might stop the G in a window where it's unsafe to write
    			// events based on the G's status. We need the global trace buffer flush
    			// coming up to make sure we're not racing with the G.
    			//
    			// It should be very unlikely that we try to preempt a running G here.
    			// The only situation that we might is that we're racing with a G
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
Back to top