Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 325 for i$ (0.6 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. okhttp/api/okhttp.api

    	public final fun -deprecated_size ()I
    	public fun contentLength ()J
    	public fun contentType ()Lokhttp3/MediaType;
    	public final fun encodedName (I)Ljava/lang/String;
    	public final fun encodedValue (I)Ljava/lang/String;
    	public final fun name (I)Ljava/lang/String;
    	public final fun size ()I
    	public final fun value (I)Ljava/lang/String;
    	public fun writeTo (Lokio/BufferedSink;)V
    }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  9. tensorflow/c/c_api_test.cc

                                    s_);
      EXPECT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
      for (size_t i = 0; i < list.size(); ++i) {
        EXPECT_EQ(list[i].size(), lens[i]) << i;
        EXPECT_EQ(list[i], string(static_cast<const char*>(values[i]), lens[i]))
            << i;
      }
    }
    
    TEST_F(CApiAttributesTest, Int) {
      auto desc = init("int");
      TF_SetAttrInt(desc, "v", 31415);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	}
    
    	var funcname [128]byte
    	for i := 0; i < int(nameLen); i += 8 {
    		v, err := safeload(ppa1 + nameOffset + uintptr(i))
    		if err != 0 {
    			return 1
    		}
    		funcname[i] = byte(v >> 56)
    		funcname[i+1] = byte(v >> 48)
    		funcname[i+2] = byte(v >> 40)
    		funcname[i+3] = byte(v >> 32)
    		funcname[i+4] = byte(v >> 24)
    		funcname[i+5] = byte(v >> 16)
    		funcname[i+6] = byte(v >> 8)
    		funcname[i+7] = byte(v)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
Back to top