Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for OUT (0.14 sec)

  1. pkg/apis/core/v1/zz_generated.conversion.go

    	out.Driver = in.Driver
    	out.VolumeHandle = in.VolumeHandle
    	out.ReadOnly = in.ReadOnly
    	out.FSType = in.FSType
    	out.VolumeAttributes = *(*map[string]string)(unsafe.Pointer(&in.VolumeAttributes))
    	out.ControllerPublishSecretRef = (*core.SecretReference)(unsafe.Pointer(in.ControllerPublishSecretRef))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. doc/go_spec.html

    	    otherwise it is <i>out of range</i></li>
    </ul>
    
    <p>
    For <code>a</code> of <a href="#Array_types">array type</a> <code>A</code>:
    </p>
    <ul>
    	<li>a <a href="#Constants">constant</a> index must be in range</li>
    	<li>if <code>x</code> is out of range at run time,
    	    a <a href="#Run_time_panics">run-time panic</a> occurs</li>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  5. ChangeLog.md

    - [`KT-63538`](https://youtrack.jetbrains.com/issue/KT-63538) Analysis API: Removing a contract statement via `PsiElement.delete()` does not trigger an out-of-block modification
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "items": {
                  "default": "",
                  "type": "string"
                },
                "type": "array",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  7. 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)
  8. prow/config/calico.yaml

                      description: "A Rule encapsulates a set of match criteria and an
                        action.  Both selector-based security Policy and security Profiles
                        reference rules - separated out as a list of rules for both ingress
                        and egress packet matching. \n Each positive match criteria has
                        a negated version, prefixed with \"Not\". All the match criteria
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        Value n_plus_y = rewriter.create<AddOp>(loc, iotaN, y);
    
        // GatherOp is happy about letting us index out of bounds values, but those
        // values will be undefined. So we mask them later. Set up the boolean
        // expression that tells us which entries, in the output shape, are out of
        // bounds and thus become the padding_value.
        Value x_in_bounds = rewriter.create<AndOp>(
            loc,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  10. 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)
Back to top