Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 103 for _12345678 (0.21 sec)

  1. src/strconv/quote.go

    			// single-byte string, possibly not UTF-8
    			value = v
    			break
    		}
    		if !utf8.ValidRune(v) {
    			err = ErrSyntax
    			return
    		}
    		value = v
    		multibyte = true
    	case '0', '1', '2', '3', '4', '5', '6', '7':
    		v := rune(c) - '0'
    		if len(s) < 2 {
    			err = ErrSyntax
    			return
    		}
    		for j := 0; j < 2; j++ { // one digit already; two more
    			x := rune(s[j]) - '0'
    			if x < 0 || x > 7 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  2. src/runtime/hash_test.go

    	if testing.Short() {
    		t.Skip("Skipping in short mode")
    	}
    	if race.Enabled {
    		t.Skip("Too long for race mode")
    	}
    	testenv.ParallelOn64Bit(t)
    	h := newHashSet()
    	permutation(t, h, []uint32{0, 1, 2, 3, 4, 5, 6, 7}, 8)
    	permutation(t, h, []uint32{0, 1 << 29, 2 << 29, 3 << 29, 4 << 29, 5 << 29, 6 << 29, 7 << 29}, 8)
    	permutation(t, h, []uint32{0, 1}, 20)
    	permutation(t, h, []uint32{0, 1 << 31}, 20)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 17:50:18 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/tests/tfcompile_test.cc

      EXPECT_EQ(muladd.arg0_data(), muladd.arg_data(0));
      EXPECT_EQ(muladd.arg1_data(), muladd.arg_data(1));
    
      // Test methods with positional args and results.
      {
        const float args[8] = {1, 2, 3, 4, 5, 6, 7, 8};
        std::copy(args + 0, args + 4, muladd.arg0_data());
        std::copy(args + 4, args + 8, muladd.arg1_data());
        EXPECT_TRUE(muladd.Run());
        EXPECT_EQ(muladd.error_msg(), "");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 26.4K bytes
    - Viewed (0)
  4. pkg/registry/core/service/strategy_test.go

    			Ports: []api.ServicePort{
    				makeValidServicePort("p", "TCP", 8675),
    				makeValidServicePort("q", "TCP", 309),
    			},
    			ClusterIP:             "1.2.3.4",
    			ClusterIPs:            []string{"1.2.3.4", "5:6:7::8"},
    			IPFamilyPolicy:        &preferDual,
    			IPFamilies:            []api.IPFamily{"IPv4", "IPv6"},
    			InternalTrafficPolicy: &clusterInternalTrafficPolicy,
    		},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  5. src/regexp/exec_test.go

    				continue Reading
    			}
    		case ':':
    			var ok bool
    			if _, flag, ok = strings.Cut(flag[1:], ":"); !ok {
    				t.Logf("skip: %s", line)
    				continue Reading
    			}
    		case 'C', 'N', 'T', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9':
    			t.Logf("skip: %s", line)
    			continue Reading
    		}
    
    		// Can check field count now that we've handled the myriad comment formats.
    		if len(field) < 4 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/net/interface_test.go

    		{"invalid", "invalid!", familyIPv4, false, nil},
    		{"zero", "00000000", familyIPv4, true, net.IP{0, 0, 0, 0}},
    		{"ffff", "FFFFFFFF", familyIPv4, true, net.IP{0xff, 0xff, 0xff, 0xff}},
    		{"valid v4", "12345678", familyIPv4, true, net.IP{120, 86, 52, 18}},
    		{"valid v6", "fe800000000000000000000000000000", familyIPv6, true, net.IP{0xfe, 0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 33.2K bytes
    - Viewed (0)
  7. tensorflow/cc/gradients/math_grad_test.cc

        return CRV({{-1.0f, 0.5f}, {1.0f, 0.5f}, {2, -1}});
      };
      TestCWiseGrad<complex64, complex64>(SQRT, x_fn);
    }
    
    TEST_F(CWiseUnaryGradTest, Rsqrt) {
      auto x_fn = [this](const int i) { return RV({1, 2, 3, 4, 5, 6, 7, 8}); };
      TestCWiseGrad<float, float>(RSQRT, x_fn);
    }
    
    TEST_F(CWiseUnaryGradTest, Rsqrt_Complex) {
      auto x_fn = [this](const int i) {
        return CRV({{-1.0f, 0.5f}, {1.0f, 0.5f}, {2, -1}});
      };
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 36K bytes
    - Viewed (0)
  8. src/net/http/httputil/reverseproxy_test.go

    // before any mutations.
    func TestClonesRequestHeaders(t *testing.T) {
    	log.SetOutput(io.Discard)
    	defer log.SetOutput(os.Stderr)
    	req, _ := http.NewRequest("GET", "http://foo.tld/", nil)
    	req.RemoteAddr = "1.2.3.4:56789"
    	rp := &ReverseProxy{
    		Director: func(req *http.Request) {
    			req.Header.Set("From-Director", "1")
    		},
    		Transport: roundTripperFunc(func(req *http.Request) (*http.Response, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  9. src/text/scanner/scanner_test.go

    	{Int, "0X" + f100},
    
    	{Comment, "// floats"},
    	{Float, "0."},
    	{Float, "1."},
    	{Float, "42."},
    	{Float, "01234567890."},
    	{Float, ".0"},
    	{Float, ".1"},
    	{Float, ".42"},
    	{Float, ".0123456789"},
    	{Float, "0.0"},
    	{Float, "1.0"},
    	{Float, "42.0"},
    	{Float, "01234567890.0"},
    	{Float, "0e0"},
    	{Float, "1e0"},
    	{Float, "42e0"},
    	{Float, "01234567890e0"},
    	{Float, "0E0"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 03:41:50 UTC 2022
    - 25.3K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/EventListenerTest.kt

        )
      }
    
      @Test
      fun failedDribbledCallEventSequence() {
        server.enqueue(
          MockResponse.Builder()
            .body("0123456789")
            .throttleBody(2, 100, TimeUnit.MILLISECONDS)
            .socketPolicy(DisconnectDuringResponseBody)
            .build(),
        )
        client =
          client.newBuilder()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 56.9K bytes
    - Viewed (0)
Back to top