Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for Lspare0 (0.18 sec)

  1. src/cmd/gofmt/gofmt.go

    	}
    }
    
    // exclusive is a weight that can be passed to a sequencer to cause
    // a task to be executed without any other concurrent tasks.
    const exclusive = -1
    
    // Add blocks until the sequencer has enough weight to spare, then adds f as a
    // task to be executed concurrently.
    //
    // If the weight is either negative or larger than the sequencer's maximum
    // weight, Add blocks until all other tasks have completed, then the task
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. src/runtime/metrics/doc.go

    		is an overestimate, and not directly comparable to system CPU
    		time measurements. Compare only with other /cpu/classes metrics.
    
    	/cpu/classes/gc/mark/idle:cpu-seconds
    		Estimated total CPU time spent performing GC tasks on spare CPU
    		resources that the Go scheduler could not otherwise find a use
    		for. This should be subtracted from the total GC CPU time to
    		obtain a measure of compulsory GC CPU time. This metric is an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  3. src/runtime/mheap.go

    	//
    	// If this is >= 1<<63, the page reclaimer is done scanning
    	// the page marks.
    	reclaimIndex atomic.Uint64
    
    	// reclaimCredit is spare credit for extra pages swept. Since
    	// the page reclaimer works in large chunks, it may reclaim
    	// more than requested. Any spare pages released go to this
    	// credit pool.
    	reclaimCredit atomic.Uintptr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  4. src/net/http/request_test.go

    	payloadSize := 1 << 10
    	cst := newClientServerTest(t, mode, HandlerFunc(func(rw ResponseWriter, req *Request) {
    		// The combination of:
    		//      MaxInt64 + payloadSize + (internal spare of 10MiB)
    		// triggers the overflow. See issue https://golang.org/issue/40430/
    		if err := req.ParseMultipartForm(math.MaxInt64); err != nil {
    			Error(rw, err.Error(), StatusBadRequest)
    			return
    		}
    	})).ts
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    //
    // Three rejected approaches that would work badly:
    // 1. Centralize all scheduler state (would inhibit scalability).
    // 2. Direct goroutine handoff. That is, when we ready a new goroutine and there
    //    is a spare P, unpark a thread and handoff it the thread and the goroutine.
    //    This would lead to thread state thrashing, as the thread that readied the
    //    goroutine can be out of work the very next moment, we will need to park it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/x86/asm6.go

    	// their eventual locations in the VEX prefix bytes.
    
    	// Encoding for VEX prefix in tables.
    	// The P, L, and W fields are chosen to match
    	// their eventual locations in the VEX prefix bytes.
    
    	// Using spare bit to make leading [E]VEX encoding byte different from
    	// 0x0f even if all other VEX fields are 0.
    	avxEscape = 1 << 6
    
    	// P field - 2 bits
    	vex66 = 1 << 0
    	vexF3 = 2 << 0
    	vexF2 = 3 << 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  7. CREDITS

    ================================================================
    
    github.com/cespare/xxhash/v2
    https://github.com/cespare/xxhash/v2
    ----------------------------------------------------------------
    Copyright (c) 2016 Caleb Spare
    
    MIT License
    
    Permission is hereby granted, free of charge, to any person obtaining
    a copy of this software and associated documentation files (the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  8. pkg/apis/core/types.go

    	// Cannot be updated.
    	// +optional
    	EnvFrom []EnvFromSource
    	// +optional
    	Env []EnvVar
    	// Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources
    	// already allocated to the pod.
    	// +optional
    	Resources ResourceRequirements
    	// Resources resize policy for the container.
    	// +featureGate=InPlacePodVerticalScaling
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"env":                      "List of environment variables to set in the container. Cannot be updated.",
    	"resources":                "Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources already allocated to the pod.",
    	"resizePolicy":             "Resources resize policy for the container.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/generated.proto

      // +patchMergeKey=name
      // +patchStrategy=merge
      // +listType=map
      // +listMapKey=name
      repeated EnvVar env = 7;
    
      // Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources
      // already allocated to the pod.
      // +optional
      optional ResourceRequirements resources = 8;
    
      // Resources resize policy for the container.
      // +featureGate=InPlacePodVerticalScaling
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
Back to top