Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for 11000101 (0.1 sec)

  1. src/math/big/ratconv_test.go

    	var x Rat
    	for _, test := range []struct {
    		input string
    		want  bool
    	}{
    		{"1e-1000001", false},
    		{"1e-1000000", true},
    		{"1e+1000000", true},
    		{"1e+1000001", false},
    
    		{"0p1000000000000", true},
    		{"1p-10000001", false},
    		{"1p-10000000", true},
    		{"1p+10000000", true},
    		{"1p+10000001", false},
    		{"1.770p02041010010011001001", false}, // test case from issue
    	} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/results/TestDataGeneratorTest.groovy

                    [
                        id: '1450575490',
                        branch: 'master',
                        date: '1970-01-01',
                        commits: ['123456']
                    ],
                    [
                        id: '1450575490',
                        branch: 'master',
                        date: '1970-01-01',
                        commits: ['123456']
                    ]
                ],
                totalTime: [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. test/fixedbugs/issue56220.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    func f() int {
    	return int(1 - .0000001) // ERROR "cannot convert 1 - \.0000001 \(untyped float constant 0\.9999999\) to type int"
    }
    
    func g() int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 20 21:52:09 UTC 2022
    - 539 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/tests/propagate_quantize_type.mlir

        %2 = "tf.XlaGather"(%1, %arg0, %cst) {dimension_numbers = "\0A\02\00\01\12\01\00\1A\02\00\01 \01", indices_are_sorted = true} : (tensor<200x100x300xf32>, tensor<10x2xi32>, tensor<3xi64>) -> tensor<1x300x10xf32>
        return %2 : tensor<1x300x10xf32>
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  5. src/math/big/natconv_test.go

    	}
    
    	return s[i:]
    }
    
    var strTests = []struct {
    	x nat    // nat value to be converted
    	b int    // conversion base
    	s string // expected result
    }{
    	{nil, 2, "0"},
    	{nat{1}, 2, "1"},
    	{nat{0xc5}, 2, "11000101"},
    	{nat{03271}, 8, "3271"},
    	{nat{10}, 10, "10"},
    	{nat{1234567890}, 10, "1234567890"},
    	{nat{0xdeadbeef}, 16, "deadbeef"},
    	{nat{0x229be7}, 17, "1a2b3c"},
    	{nat{0x309663e6}, 32, "o9cov6"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 12:54:00 UTC 2019
    - 16.8K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/test/sigprocmask.c

    		r = pthread_create(&thread, NULL, &sigthreadfunc, NULL);
    		if (r == 0) {
    			return pthread_join(thread, NULL);
    		}
    		if (r != EAGAIN) {
    			return r;
    		}
    		ts.tv_sec = 0;
    		ts.tv_nsec = (tries + 1) * 1000 * 1000; // Milliseconds.
    		nanosleep(&ts, NULL);
    	}
    	return EAGAIN;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. src/runtime/internal/math/math_test.go

    	{MaxUintptr, 0, false},
    	{MaxUintptr, 1, false},
    	{MaxUintptr / 2, 2, false},
    	{MaxUintptr / 2, 3, true},
    	{MaxUintptr, 10, true},
    	{MaxUintptr, 100, true},
    	{MaxUintptr / 100, 100, false},
    	{MaxUintptr / 1000, 1001, true},
    	{1<<(UintptrSize/2) - 1, 1<<(UintptrSize/2) - 1, false},
    	{1 << (UintptrSize / 2), 1 << (UintptrSize / 2), true},
    	{MaxUintptr >> 32, MaxUintptr >> 32, false},
    	{MaxUintptr, MaxUintptr, true},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 15 19:04:09 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/staticpod/utils_linux_test.go

    	verifyFilePermissions(t, updatedFiles, wantUpdateFiles)
    }
    
    func TestRunKubeSchedulerAsNonRoot(t *testing.T) {
    	pod := ComponentPod(v1.Container{Name: "kube-scheduler"}, nil, nil)
    	var runAsUser, runAsGroup int64 = 1000, 1001
    	updatedFiles := map[string]ownerAndPermissions{}
    	if err := runKubeSchedulerAsNonRoot(&pod, &runAsUser, &runAsGroup, func(path string, uid, gid int64, perms uint32) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 14:41:12 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/helper/UserAgentHelperTest.java

        }
    
        public void test_getUserAgentType_FireFox() {
            getMockRequest().addHeader("user-agent", "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:42.0) Gecko/20100101 Firefox/42.0");
            assertEquals(UserAgentType.FIREFOX, userAgentHelper.getUserAgentType());
        }
    
        public void test_getUserAgentType_Safari() {
            getMockRequest().addHeader("user-agent",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/net/port_range_test.go

    		{"0-0", true, "0-0", 0, 1},
    		{"", true, "", -1, 0},
    		{"100", true, "100-100", 100, 101},
    		{"100 - 200", false, "", -1, -1},
    		{"-100", false, "", -1, -1},
    		{"100-", false, "", -1, -1},
    		{"200-100", false, "", -1, -1},
    		{"60000-70000", false, "", -1, -1},
    		{"70000-80000", false, "", -1, -1},
    		{"70000+80000", false, "", -1, -1},
    		{"1+0", true, "1-1", 1, 2},
    		{"0+0", true, "0-0", 0, 1},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top