Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 106 for pinned (0.13 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ResolutionStrategyInternal.java

         */
        void setMutationValidator(MutationValidator action);
    
        /**
         * Returns the dependency locking provider linked to this resolution strategy.
         *
         * @return dependency locking provider
         */
        DependencyLockingProvider getDependencyLockingProvider();
    
        /**
         * Indicates if dependency locking is enabled.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. cmd/kubelet/app/plugins.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package app
    
    // This file exists to force the desired plugin implementations to be linked.
    import (
    	"k8s.io/component-base/featuregate"
    	"k8s.io/utils/exec"
    
    	// Volume plugins
    	"k8s.io/kubernetes/pkg/volume"
    	"k8s.io/kubernetes/pkg/volume/configmap"
    	"k8s.io/kubernetes/pkg/volume/csi"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 21:09:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. src/runtime/runtime2.go

    		// slice updates is tricky, more so than just managing the length
    		// ourselves.
    		len int
    		buf [128]*mspan
    	}
    
    	// Cache of a single pinner object to reduce allocations from repeated
    	// pinner creation.
    	pinnerCache *pinner
    
    	trace pTraceState
    
    	palloc persistentAlloc // per-P to avoid mutex
    
    	// Per-P GC state
    	gcAssistTime         int64 // Nanoseconds in assistAlloc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  4. doc/README.md

    flagged as a TODO by the automated tooling. That is true even for proposals that add API.
    
    Use the following forms in your markdown:
    
    	[http.Request]                     # symbol documentation; auto-linked as in Go doc strings
    	[Request]                          # short form, for symbols in the package being documented
    	[net/http]                         # package link
    	[#12345](/issue/12345)             # GitHub issues
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/macho_update_uuid.go

    // that newer versions of the Macos toolchain (the newer linker in
    // particular) appear to compute the UUID based not just on the
    // content of the object files being linked but also on things like
    // the timestamps/paths of the objects; this makes it
    // difficult/impossible to support reproducible builds. Since we try
    // hard to maintain build reproducibility for Go, the APIs here
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. src/net/http/h2_bundle.go

    	lastHeaderStream uint32
    
    	maxReadSize uint32
    	headerBuf   [http2frameHeaderLen]byte
    
    	// TODO: let getReadBuf be configurable, and use a less memory-pinning
    	// allocator in server.go to minimize memory pinned for many idle conns.
    	// Will probably also need to make frame invalidation have a hook too.
    	getReadBuf func(size uint32) []byte
    	readBuf    []byte // cache for default getReadBuf
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  7. src/internal/fmtsort/sort_test.go

    				return fmt.Sprintf("CHAN%d", i)
    			}
    		}
    		return "CHAN???"
    	default:
    		return fmt.Sprint(key)
    	}
    }
    
    var (
    	ints  [3]int
    	chans = makeChans()
    	pin   runtime.Pinner
    )
    
    func makeChans() []chan int {
    	cs := []chan int{make(chan int), make(chan int), make(chan int)}
    	// Order channels by address. See issue #49431.
    	for i := range cs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. cmd/kube-controller-manager/app/plugins.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package app
    
    import (
    	// This file exists to force the desired plugin implementations to be linked.
    	// This should probably be part of some configuration fed into the build for a
    	// given binary target.
    
    	"fmt"
    
    	"k8s.io/klog/v2"
    
    	// Volume plugins
    	"k8s.io/kubernetes/pkg/volume"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:17:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. src/internal/chacha8rand/chacha8.go

    				break
    			}
    			s.Refill()
    		}
    	}
    	s.Init64(seed)
    }
    
    // Marshal marshals the state into a byte slice.
    // Marshal and Unmarshal are functions, not methods,
    // so that they will not be linked into the runtime
    // when it uses the State struct, since the runtime
    // does not need these.
    func Marshal(s *State) []byte {
    	data := make([]byte, 6*8)
    	copy(data, "chacha8:")
    	used := (s.c/ctrInc)*chunk + s.i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:47:29 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. pkg/kubeapiserver/options/plugins.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package options
    
    // This file exists to force the desired plugin implementations to be linked.
    // This should probably be part of some configuration fed into the build for a
    // given binary target.
    import (
    	validatingadmissionpolicy "k8s.io/apiserver/pkg/admission/plugin/policy/validating"
    	// Admission policies
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 17:20:46 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top