Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 388 for SLICE (2.12 sec)

  1. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// it will be defaulted with a control-plane taint for control-plane nodes. If you don't want to taint your control-plane
    	// node, set this field to an empty slice, i.e. `taints: []` in the YAML file. This field is solely used for Node registration.
    	Taints []corev1.Taint `json:"taints"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/dispatcher_test.go

    			webhook:  "test-webhook",
    			patch:    []byte("[{}]"),
    			expected: `{"configuration":"test-config","webhook":"test-webhook","patch":[{}],"patchType":"JSONPatch"}`,
    		},
    		{
    			name:     "empty slice patch",
    			config:   "test-config",
    			webhook:  "test-webhook",
    			patch:    []byte("[]"),
    			expected: `{"configuration":"test-config","webhook":"test-webhook","patch":[],"patchType":"JSONPatch"}`,
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. src/encoding/gob/type.go

    	elem := m.Elem.gobType().safeString(seen)
    	return fmt.Sprintf("map[%s]%s", key, elem)
    }
    
    func (m *mapType) string() string { return m.safeString(make(map[typeId]bool)) }
    
    // Slice type
    type sliceType struct {
    	CommonType
    	Elem typeId
    }
    
    func newSliceType(name string) *sliceType {
    	s := &sliceType{CommonType{Name: name}, 0}
    	return s
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/ztunnel/configdump/workload.go

    	for _, wl := range zDump.Workloads {
    		if filter.Verify(wl) {
    			verifiedWorkloads = append(verifiedWorkloads, wl)
    		}
    	}
    
    	// Sort by name, node
    	sort.Slice(verifiedWorkloads, func(i, j int) bool {
    		in := verifiedWorkloads[i].Namespace + "." + verifiedWorkloads[i].Name
    		jn := verifiedWorkloads[j].Namespace + "." + verifiedWorkloads[j].Name
    		if in != jn {
    			return in < jn
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. src/log/slog/value.go

    // It panics if v's [Kind] is not [KindGroup].
    func (v Value) Group() []Attr {
    	if sp, ok := v.any.(groupptr); ok {
    		return unsafe.Slice((*Attr)(sp), v.num)
    	}
    	panic("Group: bad kind")
    }
    
    func (v Value) group() []Attr {
    	return unsafe.Slice((*Attr)(v.any.(groupptr)), v.num)
    }
    
    //////////////// Other
    
    // Equal reports whether v and w represent the same Go value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_xla_attribute_utils.cc

    //
    // if value.shape[1] % 2:
    //   value = pad(value, [0, 1, 0, 0])
    //
    // slice_shape = value.shape
    // slice_shape[1] /= 2
    //
    // packed_low = slice(value, [0, 0, 0, 0], slice_shape)
    // packed_low = bitwise_and(packed_low, 0x0F)
    //
    // packed_high = slice(value, [0, value.shape[1] / 2, 0, 0], slice_shape)
    // packed_high = left_shift(packed_high, 4)
    //
    // packed_value = bitwise_or(packed_low, packed_high)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/sym.go

    	// Constant symbols are created late in the concurrent phase. Sort them
    	// to ensure a deterministic order.
    	sort.Slice(ctxt.constSyms, func(i, j int) bool {
    		return ctxt.constSyms[i].Name < ctxt.constSyms[j].Name
    	})
    	ctxt.Data = append(ctxt.Data, ctxt.constSyms...)
    	ctxt.constSyms = nil
    
    	// So are SEH symbols.
    	sort.Slice(ctxt.SEHSyms, func(i, j int) bool {
    		return ctxt.SEHSyms[i].Name < ctxt.SEHSyms[j].Name
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. src/runtime/alg.go

    	if t.Equal == nil {
    		// Check hashability here. We could do this check inside
    		// typehash, but we want to report the topmost type in
    		// the error text (e.g. in a struct with a field of slice type
    		// we want to report the struct, not the slice).
    		panic(errorString("hash of unhashable type " + toRType(t).string()))
    	}
    	if isDirectIface(t) {
    		return c1 * typehash(t, unsafe.Pointer(&a.data), h^c0)
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. pkg/api/testing/unstructured_test.go

    	knownFailureReasons := map[string][]schema.GroupVersionKind{
    		// Since JSON cannot directly represent arbitrary byte sequences, a byte slice
    		// encodes to a JSON string containing the base64 encoding of the slice
    		// contents. Decoding a JSON string into a byte slice assumes (and requires) that
    		// the JSON string contain base64-encoded data. The CBOR serializer must be
    		// compatible with this behavior.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  10. src/math/rand/rand_test.go

    		r.Shuffle(n, func(i, j int) { t.Fatalf("swap called, n=%d i=%d j=%d", n, i, j) })
    	}
    }
    
    // encodePerm converts from a permuted slice of length n, such as Perm generates, to an int in [0, n!).
    // See https://en.wikipedia.org/wiki/Lehmer_code.
    // encodePerm modifies the input slice.
    func encodePerm(s []int) int {
    	// Convert to Lehmer code.
    	for i, x := range s {
    		r := s[i+1:]
    		for j, y := range r {
    			if y > x {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 16.9K bytes
    - Viewed (0)
Back to top