Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for light (0.08 sec)

  1. src/reflect/all_test.go

    	var left chan<- chan T
    	var right chan (<-chan T)
    	tLeft := ChanOf(SendDir, ChanOf(BothDir, TypeOf(T(""))))
    	tRight := ChanOf(BothDir, ChanOf(RecvDir, TypeOf(T(""))))
    	if tLeft != TypeOf(left) {
    		t.Errorf("chan<-chan: have %s, want %T", tLeft, left)
    	}
    	if tRight != TypeOf(right) {
    		t.Errorf("chan<-chan: have %s, want %T", tRight, right)
    	}
    }
    
    func TestChanOfDir(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  2. pkg/config/validation/validation.go

    			}
    		}
    
    		// Make sure we have only one of . or *
    		if exportToSet.Contains(string(visibility.Public)) {
    			// make sure that there are no other entries in the exportTo
    			// i.e. no point in saying ns1,ns2,*. Might as well say *
    			if len(exportTo) > 1 {
    				errs = appendErrors(errs, fmt.Errorf("cannot have both public (*) and non-public exportTo values for a resource"))
    			}
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_set_control_test.go

    	// for client state to sync. In fact, because the client is not updated during tests, informer updates will break tests
    	// by unexpectedly deleting objects.
    	//
    	// TODO: It might be better to rewrite all these tests manipulate the client an explicitly sync to ensure consistent
    	// state, or to create a fake client that does not use a local cache.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    const (
    	PSEUDOCONSOLE_INHERIT_CURSOR = 0x1
    )
    
    type Coord struct {
    	X int16
    	Y int16
    }
    
    type SmallRect struct {
    	Left   int16
    	Top    int16
    	Right  int16
    	Bottom int16
    }
    
    // Used with GetConsoleScreenBuffer to retrieve information about a console
    // screen buffer. See
    // https://docs.microsoft.com/en-us/windows/console/console-screen-buffer-info-str
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  5. cmd/object-handlers.go

    	gopts := opts
    	gopts.NoLock = true // We already have a lock, we can live with it.
    	objInfo, err := getObjectInfo(ctx, bucket, object, gopts)
    	if err != nil {
    		// Versioning enabled quite possibly object is deleted might be delete-marker
    		// if present set the headers, no idea why AWS S3 sets these headers.
    		if objInfo.VersionID != "" && objInfo.DeleteMarker {
    			w.Header()[xhttp.AmzVersionID] = []string{objInfo.VersionID}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  6. src/net/http/serve_test.go

    			}()
    			first = true
    		})
    
    		if first {
    			// Shutdown is graceful, so it should not interrupt this in-flight response
    			// but should reject new requests. (Since this request is still in flight,
    			// the server's port should not be reused for another server yet.)
    			<-gotOnShutdown
    			// TODO(#59038): The HTTP/2 server empirically does not always reject new
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  7. cmd/metrics-v2.go

    	return MetricDescription{
    		Namespace: s3MetricNamespace,
    		Subsystem: requestsSubsystem,
    		Name:      inflightTotal,
    		Help:      "Total number of S3 requests currently in flight",
    		Type:      gaugeMetric,
    	}
    }
    
    func getS3RequestsInQueueMD() MetricDescription {
    	return MetricDescription{
    		Namespace: s3MetricNamespace,
    		Subsystem: requestsSubsystem,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  8. src/debug/elf/elf.go

    	// default library search paths.
    	DF_1_NODEFLIB DynFlag1 = 0x00000800
    	// Indicates that this object is not dumped by dldump. Candidates are objects
    	// with no relocations that might get included when generating alternative
    	// objects using.
    	DF_1_NODUMP DynFlag1 = 0x00001000
    	// Identifies this object as a configuration alternative object generated by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  9. pkg/controller/job/job_controller_test.go

    		// even if some running pods still remain.
    		// So, we need to revisit here before we graduate the JobSuccessPolicy to beta.
    		// TODO(#123775): A Job might finish with ready!=0
    		// REF: https://github.com/kubernetes/kubernetes/issues/123775
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods.go

    func (kl *Kubelet) PodCouldHaveRunningContainers(pod *v1.Pod) bool {
    	if kl.podWorkers.CouldHaveRunningContainers(pod.UID) {
    		return true
    	}
    
    	// Check if pod might need to unprepare resources before termination
    	// NOTE: This is a temporary solution. This call is here to avoid changing
    	// status manager and its tests.
    	// TODO: extend PodDeletionSafetyProvider interface and implement it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top