Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for makeID (0.18 sec)

  1. src/net/http/h2_bundle.go

    		streams:                     make(map[uint32]*http2stream),
    		readFrameCh:                 make(chan http2readFrameResult),
    		wantWriteFrameCh:            make(chan http2FrameWriteRequest, 8),
    		serveMsgCh:                  make(chan interface{}, 8),
    		wroteFrameCh:                make(chan http2frameWriteResult, 1), // buffered; one send in writeFrameAsync
    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. pkg/apis/core/validation/validation.go

    			}
    		}
    
    		// Note: Unlike NodeAffinity and NodeSelector, we cannot make PodAffinity/PodAntiAffinity mutable due to the presence of the matchLabelKeys/mismatchLabelKeys feature.
    		// Those features automatically generate the matchExpressions in labelSelector for PodAffinity/PodAntiAffinity when the Pod is created.
    		// When we make them mutable, we need to make sure things like how to handle/validate matchLabelKeys,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  3. doc/go_spec.html

    Call             Core type    Result
    
    make(T, n)       slice        slice of type T with length n and capacity n
    make(T, n, m)    slice        slice of type T with length n and capacity m
    
    make(T)          map          map of type T
    make(T, n)       map          map of type T with initial space for approximately n elements
    
    make(T)          channel      unbuffered channel of type T
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    	s.bstart = make([]*obj.Prog, f.NumBlocks())
    	s.pp = pp
    	var progToValue map[*obj.Prog]*ssa.Value
    	var progToBlock map[*obj.Prog]*ssa.Block
    	var valueToProgAfter []*obj.Prog // The first Prog following computation of a value v; v is visible at this point.
    	gatherPrintInfo := f.PrintOrHtmlSSA || ssa.GenssaDump[f.Name]
    	if gatherPrintInfo {
    		progToValue = make(map[*obj.Prog]*ssa.Value, f.NumValues())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. pkg/registry/core/service/storage/storage_test.go

    				}
    			} else if cmp.Equal(beforeIPs, updateIPs) {
    				t.Errorf("expected clusterIPs to not be patched: %q == %q", beforeIPs, updateIPs)
    			}
    
    			bNodePorts, uNodePorts := make([]int32, 0), make([]int32, 0)
    			for _, item := range tc.before.Spec.Ports {
    				bNodePorts = append(bNodePorts, item.NodePort)
    			}
    			for _, item := range update.Spec.Ports {
    				uNodePorts = append(uNodePorts, item.NodePort)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  6. ChangeLog.md

    - [154d479](https://github.com/JetBrains/kotlin/commit/154d47964f1d9b569eb38f9458d890dc9cabd04f) Make sure a composable call does not escape composable lambda [b/331365999](https://issuetracker.google.com/issue/331365999)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  7. docs/en/docs/release-notes.md

    Setting options in `include_router` still makes sense in some cases, for example, to override or increase configurations from a third party router included in an app. But in a router that is part of a bigger application, it would probably make more sense to add those settings when creating the `APIRouter`.
    
    **In `FastAPI`**
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  8. pkg/proxy/iptables/proxier_test.go

    	}
    	networkInterfacer.AddInterfaceAddr(&itf1, addrs1)
    
    	p := &Proxier{
    		ipFamily:                 ipfamily,
    		svcPortMap:               make(proxy.ServicePortMap),
    		serviceChanges:           proxy.NewServiceChangeTracker(newServiceInfo, ipfamily, nil, nil),
    		endpointsMap:             make(proxy.EndpointsMap),
    		endpointsChanges:         proxy.NewEndpointsChangeTracker(testHostname, newEndpointInfo, ipfamily, nil, 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)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    													Type:    "string",
    													Pattern: "abc",
    												},
    												"generation": {
    													Type:    "integer",
    													Minimum: float64Ptr(42.0), // does not make sense, but is allowed for nested ObjectMeta
    												},
    											},
    										},
    									},
    								},
    								"invalid": {
    									Type:              "object",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.29.md

    - QueueingHint implementation for NodeUnschedulable is reverted because we found potential scenarios where events that make Pods schedulable could be missed. ([#122326](https://github.com/kubernetes/kubernetes/pull/122326), [...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
Back to top