Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 185 for vols (0.04 sec)

  1. test/typeparam/sets.go

    	}
    	if s1.Contains(5) {
    		panic(fmt.Sprintf("(%v).Contains(5) == true, want false", s1))
    	}
    	vals := s1.Values()
    	sort.Ints(vals)
    	w1 := []int{1, 2, 3, 4}
    	if !_SliceEqual(vals, w1) {
    		panic(fmt.Sprintf("(%v).Values() == %v, want %v", s1, vals, w1))
    	}
    }
    
    func TestEqual() {
    	s1 := _Make[string]()
    	s2 := _Make[string]()
    	if !_Equal(s1, s2) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  2. tensorflow/c/kernels.h

    // it into *vals. *status is set to TF_OK.
    // `vals` must point to an array of length at least `max_values`
    // (ideally set to list_size from TF_OpKernelConstruction_GetAttrSize(ctx,
    // attr_name, list_size, total_size)).
    //
    // The caller takes ownership of all the non-null TF_Tensor* entries in `vals`
    // (which can be deleted using TF_DeleteTensor(vals[i])).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 22:46:22 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  3. src/sync/poolqueue.go

    func (d *poolDequeue) pushHead(val any) bool {
    	ptrs := d.headTail.Load()
    	head, tail := d.unpack(ptrs)
    	if (tail+uint32(len(d.vals)))&(1<<dequeueBits-1) == head {
    		// Queue is full.
    		return false
    	}
    	slot := &d.vals[head&uint32(len(d.vals)-1)]
    
    	// Check if the head slot has been released by popTail.
    	typ := atomic.LoadPointer(&slot.typ)
    	if typ != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 18:12:29 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/templates/istiod-injector-configmap.yaml

    data:
    {{/* Scope the values to just top level fields used in the template, to reduce the size. */}}
      values: |-
    {{ $vals := pick .Values "global" "istio_cni" "sidecarInjectorWebhook" "revision" -}}
    {{ $pilotVals := pick .Values.pilot "cni" -}}
    {{ $vals = set $vals "pilot" $pilotVals -}}
    {{ $vals | toPrettyJson | indent 4 }}
    
      # To disable injection: use omitSidecarInjectorConfigMap, which disables the webhook patching
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/templates/istiod-injector-configmap.yaml

    data:
    {{/* Scope the values to just top level fields used in the template, to reduce the size. */}}
      values: |-
    {{ $vals := pick .Values "global" "istio_cni" "sidecarInjectorWebhook" "revision" -}}
    {{ $pilotVals := pick .Values.pilot "cni" -}}
    {{ $vals = set $vals "pilot" $pilotVals -}}
    {{ $vals | toPrettyJson | indent 4 }}
    
      # To disable injection: use omitSidecarInjectorConfigMap, which disables the webhook patching
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/DefaultWorkInProgressFormatter.java

            // layout weirdness
            int maxWidth;
            int cols = consoleMetaData.getCols();
            if (cols > 0) {
                maxWidth = cols - 1;
            } else {
                // Assume 80 wide. This is to minimize wrapping on console where we don't know the width (eg mintty)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. src/image/jpeg/huffman.go

    	// The high 8 bits of the uint16 are the encoded value. The low 8 bits
    	// are 1 plus the code length, or 0 if the value is too large to fit in
    	// lutSize bits.
    	lut [1 << lutSize]uint16
    	// vals are the decoded values, sorted by their encoding.
    	vals [maxNCodes]uint8
    	// minCodes[i] is the minimum code of length i, or -1 if there are no
    	// codes of that length.
    	minCodes [maxCodeLength]int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. test/fixedbugs/issue16016.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"runtime"
    	"time"
    )
    
    type T struct{}
    
    func (*T) Foo(vals []interface{}) {
    	switch v := vals[0].(type) {
    	case string:
    		_ = v
    	}
    }
    
    type R struct{ *T }
    
    type Q interface {
    	Foo([]interface{})
    }
    
    func main() {
    	var count = 10000
    	if runtime.Compiler == "gccgo" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:39:06 UTC 2024
    - 877 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/labels/selector_test.go

    					BadValue: []string{},
    				},
    			},
    		},
    		{
    			Key:  "x3",
    			Op:   selection.In,
    			Vals: sets.NewString("foo"),
    		},
    		{
    			Key:  "x4",
    			Op:   selection.NotIn,
    			Vals: sets.NewString("foo"),
    		},
    		{
    			Key:  "x5",
    			Op:   selection.Equals,
    			Vals: sets.NewString("foo", "bar"),
    			WantErr: field.ErrorList{
    				&field.Error{
    					Type:     field.ErrorTypeInvalid,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 14 16:39:04 UTC 2022
    - 29.9K bytes
    - Viewed (0)
  10. istioctl/pkg/writer/ztunnel/configdump/policies.go

    	w := c.tabwriter()
    	zDump := c.ztunnelDump
    
    	pols := slices.Filter(zDump.Policies, filter.Verify)
    	slices.SortFunc(pols, func(a, b *ZtunnelPolicy) int {
    		if r := cmp.Compare(a.Namespace, b.Namespace); r != 0 {
    			return r
    		}
    		return cmp.Compare(a.Name, b.Name)
    	})
    	fmt.Fprintln(w, "NAMESPACE\tPOLICY NAME\tACTION\tSCOPE")
    
    	for _, pol := range pols {
    		fmt.Fprintf(w, "%v\t%v\t%v\t%v\n",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:11 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top