Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 105 for 12p6 (0.03 sec)

  1. src/make.bat

    if "x%GOROOT_BOOTSTRAP%"=="x" if exist "%HOMEDRIVE%%HOMEPATH%\sdk\go%bootgo%" set GOROOT_BOOTSTRAP=%HOMEDRIV...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. 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)
  3. src/internal/chacha8rand/chacha8_amd64.s

    	// adding original seed along the way.
    
    	// First the top and bottom rows.
    	MOVOU X0, (0*16)(BX)
    	MOVOU X1, (1*16)(BX)
    	MOVOU X2, (2*16)(BX)
    	MOVOU X3, (3*16)(BX)
    	MOVOU X12, (12*16)(BX)
    	MOVOU X13, (13*16)(BX)
    	MOVOU X14, (14*16)(BX)
    	// X15 has already been stored.
    
    	// Now we have X0-X3, X12-X15 available for temporaries.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. src/sync/atomic/value_test.go

    			}
    		}()
    		v.Store(nil)
    	}()
    }
    
    func TestValueConcurrent(t *testing.T) {
    	tests := [][]any{
    		{uint16(0), ^uint16(0), uint16(1 + 2<<8), uint16(3 + 4<<8)},
    		{uint32(0), ^uint32(0), uint32(1 + 2<<16), uint32(3 + 4<<16)},
    		{uint64(0), ^uint64(0), uint64(1 + 2<<32), uint64(3 + 4<<32)},
    		{complex(0, 0), complex(1, 2), complex(3, 4), complex(5, 6)},
    	}
    	p := 4 * runtime.GOMAXPROCS(0)
    	N := int(1e5)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  5. src/cmd/internal/buildid/note.go

    		}
    
    		filesz := p.Filesz
    		off := p.Off
    		for filesz >= 16 {
    			nameSize := ef.ByteOrder.Uint32(note)
    			valSize := ef.ByteOrder.Uint32(note[4:])
    			tag := ef.ByteOrder.Uint32(note[8:])
    			nname := note[12:16]
    			if nameSize == 4 && 16+valSize <= uint32(len(note)) && tag == elfGoBuildIDTag && bytes.Equal(nname, elfGoNote) {
    				return string(note[16 : 16+valSize]), nil
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 20:40:42 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. src/math/cmplx/tan.go

    	exp := int(ix>>shift&mask) - bias - shift
    	ix &= fracMask
    	ix |= 1 << shift
    
    	// mPi is the binary digits of 1/Pi as a uint64 array,
    	// that is, 1/Pi = Sum mPi[i]*2^(-64*i).
    	// 19 64-bit digits give 1216 bits of precision
    	// to handle the largest possible float64 exponent.
    	var mPi = [...]uint64{
    		0x0000000000000000,
    		0x517cc1b727220a94,
    		0xfe13abe8fa9a6ee0,
    		0x6db14acc9e21c820,
    		0xff28b1d5ef5de2b0,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  7. 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)
  8. src/image/color/ycbcr_test.go

    		if err := eq(c0, c1); err != nil {
    			t.Errorf("i=0x%02x:\n%v", i, err)
    		}
    	}
    }
    
    // TestCMYKRoundtrip tests that a subset of RGB space can be converted to CMYK
    // and back to within 1/256 tolerance.
    func TestCMYKRoundtrip(t *testing.T) {
    	for r := 0; r < 256; r += 7 {
    		for g := 0; g < 256; g += 5 {
    			for b := 0; b < 256; b += 3 {
    				r0, g0, b0 := uint8(r), uint8(g), uint8(b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 07:51:17 UTC 2016
    - 7.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