Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 61 for free1 (0.1 sec)

  1. src/cmd/link/internal/ld/lib.go

    //	Revisions Copyright © 2000-2007 Lucent Technologies Inc. and others
    //	Portions Copyright © 2009 The Go Authors. All rights reserved.
    //
    // Permission is hereby granted, free of charge, to any person obtaining a copy
    // of this software and associated documentation files (the "Software"), to deal
    // in the Software without restriction, including without limitation the rights
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// fresh as the given resourceVersion.
    	getRV, err := c.versioner.ParseResourceVersion(opts.ResourceVersion)
    	if err != nil {
    		return err
    	}
    
    	// Do not create a trace - it's not for free and there are tons
    	// of Get requests. We can add it if it will be really needed.
    
    	if !utilfeature.DefaultFeatureGate.Enabled(features.ResilientWatchCacheInitialization) {
    		if getRV == 0 && !c.ready.check() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/runtime/framework.go

    	// We consider only equal or higher priority pods in the first pass, because
    	// those are the current "pod" must yield to them and not take a space opened
    	// for running them. It is ok if the current "pod" take resources freed for
    	// lower priority pods.
    	// Requiring that the new pod is schedulable in both circumstances ensures that
    	// we are making a conservative decision: filters like resources and inter-pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  4. src/net/netip/netip_test.go

    	sinkString      string
    	sinkBytes       []byte
    	sinkUDPAddr     = &net.UDPAddr{IP: make(net.IP, 0, 16)}
    )
    
    func TestNoAllocs(t *testing.T) {
    	// Wrappers that panic on error, to prove that our alloc-free
    	// methods are returning successfully.
    	panicIP := func(ip Addr, err error) Addr {
    		if err != nil {
    			panic(err)
    		}
    		return ip
    	}
    	panicPfx := func(pfx Prefix, err error) Prefix {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

        val response1 = call1.execute()
        waitForDataFrames(Http2Connection.OKHTTP_CLIENT_WINDOW_SIZE)
    
        // Cancel the call and discard what we've buffered for the response body. This should free up
        // the connection flow-control window so new requests can proceed.
        call1.cancel()
        assertThat(
          response1.body.source().discard(1, TimeUnit.SECONDS),
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/prove.go

    		OpIsInBounds:      {signed | unsigned, lt},      // 0 <= arg0 < arg1
    		OpIsSliceInBounds: {signed | unsigned, lt | eq}, // 0 <= arg0 <= arg1
    	}
    )
    
    // cleanup returns the posets to the free list
    func (ft *factsTable) cleanup(f *Func) {
    	for _, po := range []*poset{ft.orderS, ft.orderU} {
    		// Make sure it's empty as it should be. A non-empty poset
    		// might cause errors and miscompilations if reused.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types/type.go

    	}
    	return recvType
    }
    
    func FakeRecv() *Field {
    	return NewField(base.AutogeneratedPos, nil, FakeRecvType())
    }
    
    var (
    	// TSSA types. HasPointers assumes these are pointer-free.
    	TypeInvalid   = newSSA("invalid")
    	TypeMem       = newSSA("mem")
    	TypeFlags     = newSSA("flags")
    	TypeVoid      = newSSA("void")
    	TypeInt128    = newSSA("int128")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    				"pod", format.Pod(pod), "resourceName", resourceName)
    			return err
    		}
    		// If UpdateContainerResources is error-free, it means desired values for 'resourceName' was accepted by runtime.
    		// So we update currentContainerResources for 'resourceName', which is our view of most recently configured resources.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/debug.go

    // lastChanged and lastChecked "times" so unchanged predecessors can be
    // skipped on after-the-first iterations.  Doing this allows extra
    // iterations by the caller to be almost free.
    //
    // It is important to know that the set representation used for
    // startState, endState, and merges can share data for two sets where
    // one is a small delta from the other.  Doing this does require a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  10. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // waiting for a signal (field value, external system, or other) produced by a
      // component responsible for a finalizer later in the list, resulting in a deadlock.
      // Without enforced ordering finalizers are free to order amongst themselves and
      // are not vulnerable to ordering changes in the list.
      // +optional
      // +patchStrategy=merge
      repeated string finalizers = 14;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top