Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 78 for corerest (0.37 sec)

  1. src/go/types/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
    - 49.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    	}
    
    	// when we send a bookmark event, the client expects the event to contain an
    	// object of the correct type, but with no fields set other than the resourceVersion
    	testCheckResultFunc(t, w, func(actualEvent watch.Event) {
    		expectNoDiff(t, "incorrect event type", watch.Bookmark, actualEvent.Type)
    		// first, check that we have the correct resource version
    		obj, ok := actualEvent.Object.(metav1.Object)
    		if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. cmd/kubelet/app/server.go

    			}
    
    			// short-circuit on help
    			help, err := cleanFlagSet.GetBool("help")
    			if err != nil {
    				return errors.New(`"help" flag is non-bool, programmer error, please correct`)
    			}
    			if help {
    				return cmd.Help()
    			}
    
    			// short-circuit on verflag
    			verflag.PrintAndExitIfRequested()
    
    			// set feature gates from initial flags-based config
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
Back to top