Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for 12p6 (0.03 sec)

  1. src/math/big/floatconv_test.go

    		{"0o12", 10},
    		{"0O12E2", 1000},
    		{"0o.4", 0.5},
    		{"0o.01", 0.015625},
    		{"0o.01e3", 15.625},
    
    		// octal mantissa, binary exponent
    		{"0o0p+10", 0},
    		{"-0o0p-10", -zero_},
    		{"0o.12p6", 10},
    		{"0o4p-3", 0.5},
    		{"0o0014p-6", 0.1875},
    		{"0o.001p9", 1},
    		{"0o0.01p7", 2},
    		{"0O0.01P+2", 0.0625},
    
    		// hexadecimal mantissa and exponent
    		{"0x0", 0},
    		{"-0x0", -zero_},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 24.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/poset_test.go

    }
    
    func testPosetOps(t *testing.T, unsigned bool, ops []posetTestOp) {
    	var v [1512]*Value
    	for i := range v {
    		v[i] = new(Value)
    		v[i].ID = ID(i)
    		if i >= 1000 && i < 1256 {
    			v[i].Op = OpConst64
    			v[i].AuxInt = int64(i - 1000 - 128)
    		}
    		if i >= 1256 && i < 1512 {
    			v[i].Op = OpConst64
    			v[i].AuxInt = int64(i - 1000 - 256)
    		}
    	}
    
    	po := newPoset()
    	po.SetUnsigned(unsigned)
    	for idx, op := range ops {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 26 07:52:35 UTC 2019
    - 18.1K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/crypto/chacha20/chacha_generic.go

    		// XOR the key stream with the source and write out the result.
    		addXor(dst[0:4], src[0:4], x0, c0)
    		addXor(dst[4:8], src[4:8], x1, c1)
    		addXor(dst[8:12], src[8:12], x2, c2)
    		addXor(dst[12:16], src[12:16], x3, c3)
    		addXor(dst[16:20], src[16:20], x4, c4)
    		addXor(dst[20:24], src[20:24], x5, c5)
    		addXor(dst[24:28], src[24:28], x6, c6)
    		addXor(dst[28:32], src[28:32], x7, c7)
    		addXor(dst[32:36], src[32:36], x8, c8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 13.9K bytes
    - Viewed (0)
  4. pkg/api/v1/endpoints/util_test.go

    			}, {
    				Addresses: []v1.EndpointAddress{{IP: "1.2.3.6"}},
    				Ports:     []v1.EndpointPort{{Port: 111}},
    			}, {
    				Addresses: []v1.EndpointAddress{{IP: "1.2.3.5"}},
    				Ports:     []v1.EndpointPort{{Port: 333}},
    			}},
    			expect: []v1.EndpointSubset{{
    				Addresses: []v1.EndpointAddress{{IP: "1.2.3.4"}, {IP: "1.2.3.6"}},
    				Ports:     []v1.EndpointPort{{Port: 111}},
    			}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 01:24:22 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/BasicParsingTest.kt

                        )
                        name = j
                    )
                    args = [
                        FunctionArgument.Positional [indexes: 12..16, line/column: 1/13..1/17, file: test] (
                            expr = PropertyAccess [indexes: 12..16, line/column: 1/13..1/17, file: test] (
                                name = test
                            )
                        )
                    ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  6. src/test/java/jcifs/tests/FileLocationTest.java

                    DfsReferralData dr2 = new TestDfsReferral("1.2.3.6", "target", "", 0);
                    SmbResourceLocator fl2 = c.getLocator();
                    reqPath = fl2.getUNCPath();
                    assertEquals(reqPath, ( (SmbResourceLocatorInternal) fl2 ).handleDFSReferral(dr2, reqPath));
    
                    assertEquals("1.2.3.4", fl2.getServer());
                    assertEquals("1.2.3.6", fl2.getServerWithDfs());
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 08 13:16:07 UTC 2020
    - 23K bytes
    - Viewed (0)
  7. pilot/pkg/autoregistration/controller_test.go

    	t.Run("unverified client", func(t *testing.T) {
    		p := fakeProxy("1.2.3.6", wgA, "nw1", "")
    
    		// Should fail
    		assert.Error(t, c1.OnConnect(makeConn(p, time.Now())))
    		checkNoEntryOrFail(t, store, wgA, p)
    	})
    	t.Run("wrong SA client", func(t *testing.T) {
    		p := fakeProxy("1.2.3.6", wgA, "nw1", "wrong")
    
    		// Should fail
    		assert.Error(t, c1.OnConnect(makeConn(p, time.Now())))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractSmokeTest.groovy

            // https://plugins.gradle.org/plugin/net.ltgt.apt
            static apt = Versions.of("0.21")
    
            // https://plugins.gradle.org/plugin/io.gitlab.arturbosch.detekt
            static detekt = Versions.of("1.23.6")
    
            // https://plugins.gradle.org/plugin/com.diffplug.spotless
            static spotless = Versions.of("6.25.0")
    
            // https://plugins.gradle.org/plugin/com.google.cloud.tools.jib
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 08:14:32 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/xla_launch_util_test.cc

          /*num_missing_prefix_ctx_inputs=*/0, inputs, variables, *result,
          /*use_pjrt_tensor_buffer=*/false, execute_outputs, context_.get()));
    
      Tensor* expected = CreateHostTensor<int32>(TensorShape({1, 2}), {4, 6});
      test::ExpectTensorEqual<int32>(*expected, *GetOutput(0));
    }
    
    TEST_F(PjRtExecutionUtilTest, PopulateCtxOutputsResourceUpdates) {
      XlaOpRegistry::RegisterCompilationKernels();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  10. src/cmd/internal/test2json/testdata/framebig.json

    {"Action":"output","Test":"BenchmarkIndexAnyASCII/1:2","Output":"BenchmarkIndexAnyASCII/1:2\n"}
    {"Action":"output","Test":"BenchmarkIndexAnyASCII/1:2","Output":"BenchmarkIndexAnyASCII/1:2-16      \t155499682\t         7.214 ns/op\n"}
    {"Action":"run","Test":"BenchmarkIndexAnyASCII/1:4"}
    {"Action":"output","Test":"BenchmarkIndexAnyASCII/1:4","Output":"=== RUN   BenchmarkIndexAnyASCII/1:4\n"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 12.2K bytes
    - Viewed (0)
Back to top