Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for light (0.14 sec)

  1. src/net/http/server.go

    // size is anyway.  (if we have the bytes on the machine, we might as
    // well read them)
    const maxPostHandlerReadBytes = 256 << 10
    
    func checkWriteHeaderCode(code int) {
    	// Issue 22880: require valid WriteHeader status codes.
    	// For now we only enforce that it's three digits.
    	// In the future we might block things over 599 (600 and above aren't defined
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  2. pkg/scheduler/schedule_one_test.go

    				"pods":            *resource.NewQuantity(100, resource.DecimalSI),
    			},
    			Images: images,
    		},
    	}
    }
    
    // queuedPodStore: pods queued before processing.
    // cache: scheduler cache that might contain assumed pods.
    func setupTestSchedulerWithOnePodOnNode(ctx context.Context, t *testing.T, queuedPodStore *clientcache.FIFO, scache internalcache.Cache,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/data.go

    	// as normal symbols, and give them a little size.
    	//
    	// On AIX, as all DATA sections are merged together, ld might not put
    	// these symbols at the beginning of their respective section if there
    	// aren't real symbols, their alignment might not match the
    	// first symbol alignment. Therefore, there are explicitly put at the
    	// beginning of their section with the same alignment.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    		if err != nil {
    			klog.InfoS("Unprivileged containerized plugins might not work, could not set selinux context on plugin registration dir", "path", pluginRegistrationDir, "err", err)
    		}
    		err = selinux.SetFileLabel(pluginsDir, config.KubeletPluginsDirSELinuxLabel)
    		if err != nil {
    			klog.InfoS("Unprivileged containerized plugins might not work, could not set selinux context on plugins dir", "path", pluginsDir, "err", err)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	ctx, cancel := context.WithCancel(ctx)
    	defer cancel()
    	q := NewTestQueueWithObjects(ctx, newDefaultQueueSort(), objs)
    	// insert unschedulablePodInfo and pop right after that
    	// because the scheduling queue records unschedulablePod as in-flight Pod.
    	q.Add(logger, unschedulablePodInfo.Pod)
    	if p, err := q.Pop(logger); err != nil || p.Pod != unschedulablePodInfo.Pod {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    			// We found the main output in the cache.
    			// If we don't need any other outputs, we can stop.
    			// Otherwise, we need to write files to a.Objdir (needVet, needCgoHdr).
    			// Remember that we might have them in cache
    			// and check again after we create a.Objdir.
    			cachedBuild = true
    			a.output = []byte{} // start saving output in case we miss any cache results
    			need &^= needBuild
    			if b.NeedExport {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. src/cmd/go/alldocs.go

    // module is in the module cache or if the -modfile flag is used.
    //
    // The default output is to print the module path and then
    // information about the version and replacement if any.
    // For example, 'go list -m all' might print:
    //
    //	my/main/module
    //	golang.org/x/text v0.3.0 => /tmp/text
    //	rsc.io/pdf v0.1.1
    //
    // The Module struct has a String method that formats this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top