Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 398 for i$ (0.12 sec)

  1. cmd/xl-storage-format-v2.go

    		}
    		for i := range fi.Erasure.Distribution {
    			ventry.ObjectV2.ErasureDist[i] = uint8(fi.Erasure.Distribution[i])
    		}
    
    		for i := range fi.Parts {
    			ventry.ObjectV2.PartSizes[i] = fi.Parts[i].Size
    			if len(ventry.ObjectV2.PartETags) > 0 && fi.Parts[i].ETag != "" {
    				ventry.ObjectV2.PartETags[i] = fi.Parts[i].ETag
    			}
    			ventry.ObjectV2.PartNumbers[i] = fi.Parts[i].Number
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. src/net/netip/netip_test.go

    	b.ReportAllocs()
    	ips := []ip4i{}
    	for i := 0; i < b.N; i++ {
    		ip := newip4i_v4(8, 8, 8, 8)
    		ips = ips[:0]
    		for i := 0; i < 100; i++ {
    			ips = append(ips, ip)
    		}
    	}
    }
    
    func BenchmarkStdIPv6(b *testing.B) {
    	b.ReportAllocs()
    	ips := []net.IP{}
    	for i := 0; i < b.N; i++ {
    		ip := net.ParseIP("2001:db8::1")
    		ips = ips[:0]
    		for i := 0; i < 100; i++ {
    			ips = append(ips, ip)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        for (int64_t i = 0; i < block_rank; ++i) {
          reshaped_shape_vals.push_back(outer_shape_vals[i]);
          reshaped_shape_vals.push_back(block_shape_splits[i]);
    
          reshaped_shape_ints.push_back(outer_shape_ints[i]);
          reshaped_shape_ints.push_back(block_shape_ints[i]);
        }
        for (int64_t i = 1 + block_rank; i < input_rank; ++i) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  4. src/cmd/cgo/gcc.go

    			"#line %d \"not-str-lit\"\n"+
    			"void __cgo_f_%d_5(void) { static const char __cgo_undefined__5[] = (%s); }\n",
    			i+1, i+1, n.C,
    			i+1, i+1, n.C,
    			i+1, i+1, n.C,
    			i+1, i+1, n.C,
    			i+1, i+1, n.C,
    		)
    	}
    	fmt.Fprintf(&b, "#line 1 \"completed\"\n"+
    		"int __cgo__1 = __cgo__2;\n")
    
    	// We need to parse the output from this gcc command, so ensure that it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  5. src/reflect/type.go

    		i = 0
    		for i < len(tag) && tag[i] > ' ' && tag[i] != ':' && tag[i] != '"' && tag[i] != 0x7f {
    			i++
    		}
    		if i == 0 || i+1 >= len(tag) || tag[i] != ':' || tag[i+1] != '"' {
    			break
    		}
    		name := string(tag[:i])
    		tag = tag[i+1:]
    
    		// Scan quoted string to find value.
    		i = 1
    		for i < len(tag) && tag[i] != '"' {
    			if tag[i] == '\\' {
    				i++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  6. cmd/erasure-object.go

    		modTime = UTCNow()
    	}
    
    	for i, w := range writers {
    		if w == nil {
    			onlineDisks[i] = nil
    			continue
    		}
    		if len(inlineBuffers) > 0 && inlineBuffers[i] != nil {
    			partsMetadata[i].Data = inlineBuffers[i].Bytes()
    		} else {
    			partsMetadata[i].Data = nil
    		}
    		// No need to add checksum to part. We already have it on the object.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  7. src/runtime/mbitmap.go

    		bits1 := bits - bits0
    		dst[i+0] = dst[i+0]&(^uintptr(0)>>bits0) | (src << j)
    		dst[i+1] = dst[i+1]&^((1<<bits1)-1) | (src >> bits0)
    	} else {
    		// One write.
    		dst[i] = (dst[i] &^ (((1 << bits) - 1) << j)) | (src << j)
    	}
    
    	const doubleCheck = false
    	if doubleCheck {
    		srcRead := span.heapBitsSmallForAddr(x)
    		if srcRead != src {
    			print("runtime: x=", hex(x), " i=", i, " j=", j, " bits=", bits, "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  8. pkg/apis/admissionregistration/validation/validation.go

    	if len(resources) == 0 {
    		allErrors = append(allErrors, field.Required(fldPath, ""))
    	}
    	for i, resource := range resources {
    		if resource == "" {
    			allErrors = append(allErrors, field.Required(fldPath.Index(i), ""))
    		}
    		if strings.Contains(resource, "/") {
    			allErrors = append(allErrors, field.Invalid(fldPath.Index(i), resource, "must not specify subresources"))
    		}
    	}
    	if len(resources) > 1 && hasWildcard(resources) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/regalloc.go

    			args = append(args[:0], make([]*Value, len(v.Args))...)
    			for i, a := range v.Args {
    				if !s.values[a.ID].needReg {
    					args[i] = a
    				}
    			}
    			for _, i := range regspec.inputs {
    				mask := i.regs
    				if countRegs(mask) == 1 && mask&s.values[v.Args[i.idx].ID].regs != 0 {
    					args[i.idx] = s.allocValToReg(v.Args[i.idx], mask, true, v.Pos)
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/cache/cache_test.go

    	var podsWithPVC []*v1.Pod
    	for i := 0; i < 8; i++ {
    		pod := st.MakePod().Name(fmt.Sprintf("p-pvc-%v", i)).Namespace("test-ns").UID(fmt.Sprintf("puid-pvc-%v", i)).
    			PVC(fmt.Sprintf("test-pvc%v", i%4)).Node(fmt.Sprintf("test-node%v", i%2)).Obj()
    		podsWithPVC = append(podsWithPVC, pod)
    	}
    
    	var cache *cacheImpl
    	var snapshot *Snapshot
    	type operation = func(t *testing.T)
    
    	addNode := func(i int) operation {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
Back to top