Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 92 for 12p6 (0.09 sec)

  1. src/runtime/cgo/abi_ppc64x.h

    	FMOVD	(offset+8*15)(R1), F29 \
    	FMOVD	(offset+8*16)(R1), F30 \
    	FMOVD	(offset+8*17)(R1), F31
    
    // Save and restore VR20-31 (aka VSR56-63). These
    // macros must point to a 16B aligned offset.
    #define SAVE_VR_SIZE (12*16)
    #define SAVE_VR(offset, rtmp)         \
    	MOVD	$(offset+16*0), rtmp  \
    	STVX	V20, (rtmp)(R1)       \
    	MOVD	$(offset+16*1), rtmp  \
    	STVX	V21, (rtmp)(R1)       \
    	MOVD	$(offset+16*2), rtmp  \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 03 20:17:02 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  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. 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)
  9. docs/en/docs/tutorial/dependencies/classes-as-dependencies.md

        ```
    
    === "Python 3.9+"
    
        ```Python hl_lines="11-15"
        {!> ../../../docs_src/dependencies/tutorial002_an_py39.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="12-16"
        {!> ../../../docs_src/dependencies/tutorial002_an.py!}
        ```
    
    === "Python 3.10+ non-Annotated"
    
        !!! tip
            Prefer to use the `Annotated` version if possible.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.4K 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