Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for insts (0.11 sec)

  1. staging/src/k8s.io/api/resource/v1alpha2/generated.pb.go

    }
    
    func (m *NamedResourcesIntSlice) MarshalToSizedBuffer(dAtA []byte) (int, error) {
    	i := len(dAtA)
    	_ = i
    	var l int
    	_ = l
    	if len(m.Ints) > 0 {
    		for iNdEx := len(m.Ints) - 1; iNdEx >= 0; iNdEx-- {
    			i = encodeVarintGenerated(dAtA, i, uint64(m.Ints[iNdEx]))
    			i--
    			dAtA[i] = 0x8
    		}
    	}
    	return len(dAtA) - i, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 261.9K bytes
    - Viewed (0)
  2. doc/go_spec.html

    </p>
    
    <pre>
    chan T          // can be used to send and receive values of type T
    chan&lt;- float64  // can only be used to send float64s
    &lt;-chan int      // can only be used to receive ints
    </pre>
    
    <p>
    The <code>&lt;-</code> operator associates with the leftmost <code>chan</code>
    possible:
    </p>
    
    <pre>
    chan&lt;- chan int    // same as chan&lt;- (chan int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
Back to top