Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for lazily (0.15 sec)

  1. src/net/http/h2_bundle.go

    // gzipReader wraps a response body so it can lazily
    // call gzip.NewReader on the first call to Read
    type http2gzipReader struct {
    	_    http2incomparable
    	body io.ReadCloser // underlying Response.Body
    	zr   *gzip.Reader  // lazily-initialized gzip reader
    	zerr error         // sticky error
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.28.md

    - Revised `OpenAPI v2` fetching for CustomResourceDefinitions. CRDs are now aggregated lazily,
      which improves resource usage during installation of many CRDs. As a result, the first request
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Family   uint16
    	Protocol uint16
    	Ifindex  int32
    	Hatype   uint16
    	Pkttype  uint8
    	Halen    uint8
    	Addr     [8]uint8
    }
    
    type RawSockaddrNetlink struct {
    	Family uint16
    	Pad    uint16
    	Pid    uint32
    	Groups uint32
    }
    
    type RawSockaddrHCI struct {
    	Family  uint16
    	Dev     uint16
    	Channel uint16
    }
    
    type RawSockaddrL2 struct {
    	Family      uint16
    	Psm         uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  4. ChangeLog.md

    - [`KT-61768`](https://youtrack.jetbrains.com/issue/KT-61768) Wrong bytecode index in LineNumberTable when there is an incremental operation
    - [`KT-63567`](https://youtrack.jetbrains.com/issue/KT-63567) "NoSuchMethodError" on getting value of lazily initialized property by companion's const value
    - [`KT-56078`](https://youtrack.jetbrains.com/issue/KT-56078) K2: build kotlinx.coroutines
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

    evaluated. Only populated if the policy has a ParamKind. - 'namespaceObject' - The namespace object that the incoming object belongs to. The value is null for cluster-scoped resources. - 'variables' - Map of composited variables, from its name to its lazily evaluated value.\n  For example, a variable named 'foo' can be accessed as 'variables.foo'.\n- 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request.\n  See https:/...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
  6. pkg/proxy/iptables/proxier_test.go

    		expectFirewall bool
    	}{
    		{
    			name: "ipv4, localhost-nodeports enabled",
    
    			family:             v1.IPv4Protocol,
    			localhostNodePorts: true,
    			nodePortAddresses:  nil,
    
    			allowAltNodeIP: true,
    			expectFirewall: true,
    		},
    		{
    			name: "ipv4, localhost-nodeports disabled",
    
    			family:             v1.IPv4Protocol,
    			localhostNodePorts: false,
    			nodePortAddresses:  nil,
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/ssa.go

    		if s.config.RegSize == 4 && Arch.LinkArch.Family != sys.MIPS && !s.softFloat {
    			if conv1, ok1 := fpConvOpToSSA32[twoTypes{s.concreteEtype(ft), s.concreteEtype(tt)}]; ok1 {
    				conv = conv1
    			}
    		}
    		if Arch.LinkArch.Family == sys.ARM64 || Arch.LinkArch.Family == sys.Wasm || Arch.LinkArch.Family == sys.S390X || s.softFloat {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation.go

    		}
    
    		// We only support one from each IP family (i.e. max two IPs in this list).
    		if !dualStack || len(podIPs) > 2 {
    			allErrs = append(allErrs, field.Invalid(podIPsField, pod.Status.PodIPs, "may specify no more than one IP for each IP family"))
    		}
    
    		// There should be no duplicates in list of Pod.PodIPs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/core/v1/generated.proto

      // manually, the requested family is available in the cluster,
      // and ipFamilyPolicy allows it, it will be used; otherwise creation of
      // the service will fail. This field is conditionally mutable: it allows
      // for adding or removing a secondary IP family, but it does not allow
      // changing the primary IP family of the Service. Valid values are "IPv4"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.18.md

    - Kubeadm: uses the api-server AdvertiseAddress IP family to choose the etcd endpoint IP family for non external etcd clusters ([#85745](https://github.com/kubernetes/kubernetes/pull/85745), [@aojea](https://github.com/aojea)) [SIG Cluster Lifecycle]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 16 17:18:28 UTC 2021
    - 373.2K bytes
    - Viewed (0)
Back to top