Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 66 for palmer (0.2 sec)

  1. src/go/types/expr.go

    				check.errorf(e, InvalidConstVal, "excessively long constant: %s... (%d chars)", e.Value[:10], len(e.Value))
    				goto Error
    			}
    		}
    		x.setConst(e.Kind, e.Value)
    		if x.mode == invalid {
    			// The parser already establishes syntactic correctness.
    			// If we reach here it's because of number under-/overflow.
    			// TODO(gri) setConst (and in turn the go/constant package)
    			// should return an error describing the issue.
    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. src/net/http/request.go

    	//	}
    	//
    	// For incoming requests, the Host header is promoted to the
    	// Request.Host field and removed from the Header map.
    	//
    	// HTTP defines that header names are case-insensitive. The
    	// request parser implements this by using CanonicalHeaderKey,
    	// making the first character and any characters following a
    	// hyphen uppercase and the rest lowercase.
    	//
    	// For client requests, certain headers such as Content-Length
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  3. src/crypto/tls/common.go

    	// from, or write to, this connection; that will cause the TLS
    	// connection to fail.
    	Conn net.Conn
    
    	// config is embedded by the GetCertificate or GetConfigForClient caller,
    	// for use with SupportsCertificate.
    	config *Config
    
    	// ctx is the context of the handshake that is in progress.
    	ctx context.Context
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/runtime/framework.go

    // reserve plugins. If any of these plugins returns an error, it does not
    // continue running the remaining ones and returns the error. In such a case,
    // the pod will not be scheduled and the caller will be expected to call
    // RunReservePluginsUnreserve.
    func (f *frameworkImpl) RunReservePluginsReserve(ctx context.Context, state *framework.CycleState, pod *v1.Pod, nodeName string) (status *framework.Status) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	cpuCFSQuota bool
    
    	// CPUCFSQuotaPeriod sets the CPU CFS quota period value, cpu.cfs_period_us, defaults to 100ms
    	cpuCFSQuotaPeriod metav1.Duration
    
    	// wrapped image puller.
    	imagePuller images.ImageManager
    
    	// gRPC service clients
    	runtimeService internalapi.RuntimeService
    	imageService   internalapi.ImageManagerService
    
    	// The version cache of runtime daemon.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  6. src/time/time.go

    // that the leading digit is non-zero. The zero duration formats as 0s.
    func (d Duration) String() string {
    	// This is inlinable to take advantage of "function outlining".
    	// Thus, the caller can decide whether a string must be heap allocated.
    	var arr [32]byte
    	n := d.format(&arr)
    	return string(arr[n:])
    }
    
    // format formats the representation of d into the end of buf and
    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/iam.go

    		return nil, ctx.Err()
    	}
    }
    
    // PolicyDBSet - sets a policy for a user or group in the PolicyDB. This does
    // not validate if the user/group exists - that is the responsibility of the
    // caller.
    func (sys *IAMSys) PolicyDBSet(ctx context.Context, name, policy string, userType IAMUserType, isGroup bool) (updatedAt time.Time, err error) {
    	if !sys.Initialized() {
    		return updatedAt, errServerNotInitialized
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    		t.Errorf("watcher is blocked by slower one (count: %d)", eventsCount)
    	}
    }
    
    func verifyEvents(t *testing.T, w watch.Interface, events []watch.Event, strictOrder bool) {
    	_, _, line, _ := goruntime.Caller(1)
    	actualEvents := make([]watch.Event, len(events))
    	for idx := range events {
    		select {
    		case event := <-w.ResultChan():
    			actualEvents[idx] = event
    		case <-time.After(wait.ForeverTestTimeout):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  9. src/go/build/build.go

    			if err != nil {
    				// A nonexistent working directory can't be in a module.
    				return errNoModules
    			}
    		} else {
    			parent, err = filepath.Abs(ctxt.Dir)
    			if err != nil {
    				// If the caller passed a bogus Dir explicitly, that's materially
    				// different from not having modules enabled.
    				return err
    			}
    		}
    		for {
    			if f, err := ctxt.openFile(ctxt.joinPath(parent, "go.mod")); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  10. pkg/controller/job/job_controller.go

    // append to the conditions list if the new condition's status is false
    // (because going from nothing to false is meaningless); it can, however,
    // update the status condition to false. The function returns a bool to let the
    // caller know if the list was changed (either appended or updated).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
Back to top