Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 128 for corerest (0.1 sec)

  1. src/cmd/compile/internal/ssa/prove.go

    				//
    				// We compute (using integers of the correct size):
    				//    min = w - delta
    				//    max = MaxInt - delta
    				//
    				// And we prove that:
    				//    if min<max: min < x AND x <= max
    				//    if min>max: min < x OR  x <= max
    				//
    				// This is always correct, even in case of overflow.
    				//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  2. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrBucketRemoteArnInvalid: {
    		Code:           "XMinioAdminRemoteArnInvalid",
    		Description:    "The bucket remote ARN does not have correct format",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrRemoteTargetNotVersionedError: {
    		Code:           "RemoteTargetNotVersionedError",
    		Description:    "The remote target does not have versioning enabled",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  3. pkg/kubelet/stats/cri_stats_provider_test.go

    						Timestamp: 0,
    						UsageCoreNanoSeconds: &runtimeapi.UInt64Value{
    							Value: 10000000000,
    						},
    					},
    				},
    			},
    			expected: &value0,
    		},
    		{
    			desc: "should return correct value if cached cpu stats is not equal to current value",
    			stats: &runtimeapi.ContainerStats{
    				Attributes: &runtimeapi.ContainerAttributes{
    					Id: "1",
    				},
    				Cpu: &runtimeapi.CpuUsage{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/expr.go

    		if y.mode == constant_ {
    			// if either x or y has an unknown value, the result is unknown
    			if x.val.Kind() == constant.Unknown || y.val.Kind() == constant.Unknown {
    				x.val = constant.MakeUnknown()
    				// ensure the correct type - see comment below
    				if !isInteger(x.typ) {
    					x.typ = Typ[UntypedInt]
    				}
    				return
    			}
    			// rhs must be within reasonable bounds in constant shifts
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  5. src/time/time.go

    		return subMono(t.ext, u.ext)
    	}
    	d := Duration(t.sec()-u.sec())*Second + Duration(t.nsec()-u.nsec())
    	// Check for overflow or underflow.
    	switch {
    	case u.Add(d).Equal(t):
    		return d // d is correct
    	case t.Before(u):
    		return minDuration // t - u is negative out of range
    	default:
    		return maxDuration // t - u is positive out of range
    	}
    }
    
    func subMono(t, u int64) Duration {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  6. cmd/xl-storage-format-v2.go

    	}
    	if x&xlFlagInlineData != 0 {
    		if s.Len() > 0 {
    			s.WriteByte(',')
    		}
    		s.WriteString("Inline")
    	}
    	return s.String()
    }
    
    // checkXL2V1 will check if the metadata has correct header and is a known major version.
    // The remaining payload and versions are returned.
    func checkXL2V1(buf []byte) (payload []byte, major, minor uint16, err error) {
    	if len(buf) <= 8 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. hack/local-up-cluster.sh

    # and we don't know the IP of the DNS pod to pass in as --cluster-dns.
    # To set this up by hand, set this flag and change DNS_SERVER_IP.
    # Note also that you need API_HOST (defined below) for correct DNS.
    KUBE_PROXY_MODE=${KUBE_PROXY_MODE:-""}
    ENABLE_CLUSTER_DNS=${KUBE_ENABLE_CLUSTER_DNS:-true}
    ENABLE_NODELOCAL_DNS=${KUBE_ENABLE_NODELOCAL_DNS:-false}
    DNS_SERVER_IP=${KUBE_DNS_SERVER_IP:-10.0.0.10}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. src/runtime/traceback.go

    	// This is okay: if we're running d2, then all the defers after d2 have
    	// completed and their corresponding frames are dead. Not finding d3
    	// for frame 3 means we'll set frame 3's continpc == 0, which is correct
    	// (frame 3 is dead). At the end of the walk the panic stack can thus
    	// contain defers (d3 in this case) for dead frames. The inversion here
    	// always indicates a dead frame, and the effect of the inversion on the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // name is the plural name of the resource.
      optional string name = 1;
    
      // singularName is the singular name of the resource.  This allows clients to handle plural and singular opaquely.
      // The singularName is more correct for reporting status on a single item and both singular and plural are allowed
      // from the kubectl CLI interface.
      optional string singularName = 6;
    
      // namespaced indicates if a resource is namespaced or not.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // name is the plural name of the resource.
      optional string name = 1;
    
      // singularName is the singular name of the resource.  This allows clients to handle plural and singular opaquely.
      // The singularName is more correct for reporting status on a single item and both singular and plural are allowed
      // from the kubectl CLI interface.
      optional string singularName = 6;
    
      // namespaced indicates if a resource is namespaced or not.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
Back to top