Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 83 for free1 (0.04 sec)

  1. 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)
  2. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

                "items": {
                  "default": "",
                  "type": "string"
                },
                "type": "array",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"managedFields":              "ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. staging/src/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
      // +listType=set
      repeated string finalizers = 14;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
Back to top