Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 318 for SLICE (0.26 sec)

  1. src/runtime/slice.go

    package runtime
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"runtime/internal/math"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    type slice struct {
    	array unsafe.Pointer
    	len   int
    	cap   int
    }
    
    // A notInHeapSlice is a slice backed by runtime/internal/sys.NotInHeap memory.
    type notInHeapSlice struct {
    	array *notInHeap
    	len   int
    	cap   int
    }
    
    func panicmakeslicelen() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. tests/associations_has_many_test.go

    		&Pet{Name: "pet-slice-append-1"},
    		[]*Pet{{Name: "pet-slice-append-2-1"}, {Name: "pet-slice-append-2-2"}},
    		&Pet{Name: "pet-slice-append-3"},
    	)
    
    	AssertAssociationCount(t, users, "Pets", 10, "After Append")
    
    	// Replace -> same as append
    	DB.Model(&users).Association("Pets").Replace(
    		[]*Pet{{Name: "pet-slice-replace-1-1"}, {Name: "pet-slice-replace-1-2"}},
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:49:45 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/dra/plugin/noderesources.go

    			// like this in an existing slice.
    			continue
    		}
    
    		if numObsoleteSlices > 0 {
    			// Update one existing slice.
    			slice := obsoleteSlices[numObsoleteSlices-1]
    			numObsoleteSlices--
    			slice = slice.DeepCopy()
    			slice.ResourceModel = *resource
    			logger.V(5).Info("Reusing existing node resource slice", "slice", klog.KObj(slice))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    		for _, slice := range slices {
    			esc.updateEndpointCacheForSlice(hostName, slice)
    		}
    	}
    
    	return esc.endpointCache.Get(hostName)
    }
    
    func getServiceNamespacedName(slice *v1.EndpointSlice) types.NamespacedName {
    	return types.NamespacedName{
    		Namespace: slice.GetNamespace(),
    		Name:      serviceNameForEndpointSlice(slice.GetLabels()),
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  5. pkg/slices/slices_test.go

    			}
    		})
    	}
    }
    
    func TestClone(t *testing.T) {
    	tests := []struct {
    		name  string
    		slice []interface{}
    	}{
    		{
    			name:  "Empty",
    			slice: []interface{}{},
    		},
    		{
    			name:  "Single Element",
    			slice: []interface{}{1},
    		},
    		{
    			name:  "Multiple Elements",
    			slice: []interface{}{1, "a", 3.14159},
    		},
    	}
    
    	for _, tt := range tests {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. src/text/template/funcs.go

    		}
    	}
    	return item, nil
    }
    
    // Slicing.
    
    // slice returns the result of slicing its first argument by the remaining
    // arguments. Thus "slice x 1 2" is, in Go syntax, x[1:2], while "slice x"
    // is x[:], "slice x 1" is x[1:], and "slice x 1 2 3" is x[1:2:3]. The first
    // argument must be a string, slice, or array.
    func slice(item reflect.Value, indexes ...reflect.Value) (reflect.Value, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  7. src/encoding/binary/binary_test.go

    func TestReadSlice(t *testing.T) {
    	t.Run("Read", func(t *testing.T) {
    		slice := make([]int32, 2)
    		err := Read(bytes.NewReader(src), BigEndian, slice)
    		checkResult(t, "ReadSlice", BigEndian, err, slice, res)
    	})
    
    	t.Run("Decode", func(t *testing.T) {
    		slice := make([]int32, 2)
    		_, err := Decode(src, BigEndian, slice)
    		checkResult(t, "ReadSlice", BigEndian, err, slice, res)
    	})
    }
    
    func TestWriteSlice(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:16:18 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/io/ByteSourceTest.java

       * the offset at which the slice is supposed to start.
       */
      // TODO(cgdecker): Maybe add a test for this to ByteSourceTester
      public void testSlice_appendingAfterSlicing() throws IOException {
        // Source of length 5
        AppendableByteSource source = new AppendableByteSource(newPreFilledByteArray(5));
    
        // Slice it starting at offset 10.
        ByteSource slice = source.slice(10, 5);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  9. src/runtime/error.go

    	boundsSliceAlen:  "slice bounds out of range [:%x] with length %y",
    	boundsSliceAcap:  "slice bounds out of range [:%x] with capacity %y",
    	boundsSliceB:     "slice bounds out of range [%x:%y]",
    	boundsSlice3Alen: "slice bounds out of range [::%x] with length %y",
    	boundsSlice3Acap: "slice bounds out of range [::%x] with capacity %y",
    	boundsSlice3B:    "slice bounds out of range [:%x:%y]",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/experimental/tac/tests/device-transform-gpu.mlir

    // CHECK:           [[VAL_6:%.*]] = "tfl.slice"([[VAL_1]], [[VAL_2]], [[VAL_5]]) : (tensor<1x8x8x1024xf32>, tensor<4xi32>, tensor<4xi32>) -> tensor<1x8x8x256xf32>
    // CHECK:           [[VAL_7:%.*]] = "tfl.slice"([[VAL_1]], [[VAL_3]], [[VAL_5]]) : (tensor<1x8x8x1024xf32>, tensor<4xi32>, tensor<4xi32>) -> tensor<1x8x8x256xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top