Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for zout (0.09 sec)

  1. src/net/http/h2_bundle.go

    func http2filterOutClientConn(in []*http2ClientConn, exclude *http2ClientConn) []*http2ClientConn {
    	out := in[:0]
    	for _, v := range in {
    		if v != exclude {
    			out = append(out, v)
    		}
    	}
    	// If we filtered it out, zero out the last item to prevent
    	// the GC from seeing it.
    	if len(in) != len(out) {
    		in[len(in)-1] = nil
    	}
    	return out
    }
    
    // noDialClientConnPool is an implementation of http2.ClientConnPool
    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. src/cmd/compile/internal/ssagen/ssa.go

    //
    //   - Offset of the deferBits variable
    //   - Offset of the first closure slot (the rest are laid out consecutively).
    func (s *state) emitOpenDeferInfo() {
    	firstOffset := s.openDefers[0].closureNode.FrameOffset()
    
    	// Verify that cmpstackvarlt laid out the slots in order.
    	for i, r := range s.openDefers {
    		have := r.closureNode.FrameOffset()
    		want := firstOffset + int64(i)*int64(types.PtrSize)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.8.md

    #### Cloud Providers
    
    * [alpha] Support is improved for the pluggable, out-of-tree and out-of-core cloud providers. ([#88](https://github.com/kubernetes/enhancements/issues/88), [@wlan0](https://github.com/wlan0))
    
    ### Network
    
    #### network-policy
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  4. pkg/proxy/iptables/proxier_test.go

    				COMMIT
    				`),
    			error: `bad ruleData (no "filter" table)`,
    		},
    	} {
    		t.Run(tc.name, func(t *testing.T) {
    			out, err := parseIPTablesData(tc.input)
    			if err == nil {
    				if tc.error != "" {
    					t.Errorf("unexpectedly did not get error")
    				} else {
    					assert.Equal(t, tc.output, out)
    				}
    			} else {
    				if tc.error == "" {
    					t.Errorf("got unexpected error: %v", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.30.md

    - Improved scheduling performance when many nodes, and prefilter returns 1-2 nodes (e.g. daemonset)
      
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.21.md

    - Fix a panic in kubectl when creating secrets with an improper output type (#106354, @lauchokyip) [SIG CLI]
    - Fix concurrent map access causing panics when logging timed-out API calls. (#106113, @marseel) [SIG API Machinery]
    - Fixed very rare volume corruption when a pod is deleted while kubelet is offline.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  7. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	NodeSelector *structpb.Struct `protobuf:"bytes,12,opt,name=nodeSelector,proto3" json:"nodeSelector,omitempty"`
    	// Maximum duration that a sidecar can be connected to a pilot.
    	//
    	// This setting balances out load across pilot instances, but adds some resource overhead.
    	//
    	// Examples: 300s, 30m, 1h
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types.go

    	// command  is root ('/') in the container's filesystem. The command is simply exec'd, it is
    	// not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use
    	// a shell, you need to explicitly call out to that shell.
    	// Exit status of 0 is treated as live/healthy and non-zero is unhealthy.
    	// +optional
    	// +listType=atomic
    	Command []string `json:"command,omitempty" protobuf:"bytes,1,rep,name=command"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top