Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 80 for SLICE (0.04 sec)

  1. src/text/template/exec_test.go

    	// Slicing.
    	{"slice[:]", "{{slice .SI}}", "[3 4 5]", tVal, true},
    	{"slice[1:]", "{{slice .SI 1}}", "[4 5]", tVal, true},
    	{"slice[1:2]", "{{slice .SI 1 2}}", "[4]", tVal, true},
    	{"slice[-1:]", "{{slice .SI -1}}", "", tVal, false},
    	{"slice[1:-2]", "{{slice .SI 1 -2}}", "", tVal, false},
    	{"slice[1:2:-1]", "{{slice .SI 1 2 -1}}", "", tVal, false},
    	{"slice[2:1]", "{{slice .SI 2 1}}", "", tVal, false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  2. pkg/controller/endpointslice/endpointslice_controller_test.go

    	assert.Len(t, sliceList.Items, 1, "Expected 1 endpoint slices")
    	slice := sliceList.Items[0]
    	assert.Regexp(t, "^"+serviceName, slice.Name)
    	assert.Equal(t, serviceName, slice.Labels[discovery.LabelServiceName])
    	assert.EqualValues(t, []discovery.EndpointPort{}, slice.Ports)
    	assert.EqualValues(t, []discovery.Endpoint{}, slice.Endpoints)
    	assert.NotEmpty(t, slice.Annotations["endpoints.kubernetes.io/last-change-trigger-time"])
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  3. src/reflect/type.go

    		slice := (*sliceType)(unsafe.Pointer(tt))
    		if slice.Elem == typ {
    			ti, _ := lookupCache.LoadOrStore(ckey, toRType(tt))
    			return ti.(Type)
    		}
    	}
    
    	// Make a slice type.
    	var islice any = ([]unsafe.Pointer)(nil)
    	prototype := *(**sliceType)(unsafe.Pointer(&islice))
    	slice := *prototype
    	slice.TFlag = 0
    	slice.Str = resolveReflectName(newName(s, "", false, false))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        }
      }
    
      // This function rewrites the original op into a series of slice and concat op
      // to produce the same result. It first slices the first `$index` rows. Then
      // expands the dimension of the `$item`, followed by another slice of the
      // remaining rows starting from `$index` + 1. Lastly it concatenates the
      // three parts together.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_messages.go

    	x[5] = uint8(certificateOctets >> 8)
    	x[6] = uint8(certificateOctets)
    
    	y := x[7:]
    	for _, slice := range m.certificates {
    		y[0] = uint8(len(slice) >> 16)
    		y[1] = uint8(len(slice) >> 8)
    		y[2] = uint8(len(slice))
    		copy(y[3:], slice)
    		y = y[3+len(slice):]
    	}
    
    	return x, nil
    }
    
    func (m *certificateMsg) unmarshal(data []byte) bool {
    	if len(data) < 7 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. pkg/proxy/ipvs/proxier.go

    	// in every loop. Note that reuse the memory, instead of doing:
    	//   slice = <some new slice>
    	// you should always do one of the below:
    	//   slice = slice[:0] // and then append to it
    	//   slice = append(slice[:0], ...)
    	// To avoid growing this slice, we arbitrarily set its size to 64,
    	// there is never more than that many arguments for a single line.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  7. pkg/kubelet/stats/cri_stats_provider_test.go

    		},
    		{
    			cgroupPath: "/kubepods.slice/kubepods-burstable.slice/kubepods-burstable-pod2fc932ce_fdcc_454b_97bd_aadfdeb4c340.slice/cri-containerd-aaefb9d8feed2d453b543f6d928cede7a4dbefa6a0ae7c9b990dd234c56e93b9.scope",
    			expected:   "aaefb9d8feed2d453b543f6d928cede7a4dbefa6a0ae7c9b990dd234c56e93b9",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  8. src/cmd/link/internal/loader/loader.go

    // in dependency order (internal first, then everything else). Return value
    // is a slice of all text syms.
    func (l *Loader) AssignTextSymbolOrder(libs []*sym.Library, intlibs []bool, extsyms []Sym) []Sym {
    
    	// Library Textp lists should be empty at this point.
    	for _, lib := range libs {
    		if len(lib.Textp) != 0 {
    			panic("expected empty Textp slice for library")
    		}
    		if len(lib.DupTextSyms) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/parser.go

    			// with a "[" as in: P []E. In that case, simply parsing
    			// an expression would lead to an error: P[] is invalid.
    			// But since index or slice expressions are never constant
    			// and thus invalid array length expressions, if the name
    			// is followed by "[" it must be the start of an array or
    			// slice constraint. Only if we don't see a "[" do we
    			// need to parse a full expression. Notably, name <- x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	if err != nil {
    		return err
    	}
    	listVal, err := conversion.EnforcePtr(listPtr)
    	if err != nil {
    		return err
    	}
    	if listVal.Kind() != reflect.Slice {
    		return fmt.Errorf("need a pointer to slice, got %v", listVal.Kind())
    	}
    	filter := filterWithAttrsFunction(key, pred)
    
    	objs, readResourceVersion, indexUsed, err := c.listItems(ctx, listRV, key, pred, recursive)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top