Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for 4th (0.03 sec)

  1. src/internal/runtime/syscall/asm_linux_amd64.s

    // a5  | R8          | R8
    // a6  | R9          | R9
    //
    // r1  | AX          | AX
    // r2  | BX          | DX
    // err | CX          | part of AX
    //
    // Note that this differs from "standard" ABI convention, which would pass 4th
    // arg in CX, not R10.
    TEXT ·Syscall6<ABIInternal>(SB),NOSPLIT,$0
    	// a6 already in R9.
    	// a5 already in R8.
    	MOVQ	SI, R10 // a4
    	MOVQ	DI, DX  // a3
    	MOVQ	CX, SI  // a2
    	MOVQ	BX, DI  // a1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 21:28:32 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/asm_zos_s390x.s

    	MOVD 0(R7), R2
    
    	//  arg 3 --> R3
    	CMP  R8, $0
    	BEQ  docall
    	SUB  $1, R8
    	ADD  $8, R7
    	MOVD 0(R7), R3
    
    	CMP  R8, $0
    	BEQ  docall
    	MOVD $2176+16, R6 // starting LE stack address-8 to store 4th argument
    
    repeat:
    	ADD  $8, R7
    	MOVD 0(R7), R0      // advance arg pointer by 8 byte
    	ADD  $8, R6         // advance LE argument address by 8 byte
    	MOVD R0, (R4)(R6*1) // copy argument from go-slice to le-frame
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. src/runtime/race_ppc64le.s

    // the arguments from storage to the registers expected
    // by the ABI.
    
    // When calling from Go to Clang tsan code:
    // R3 is the 1st argument and is usually the ThreadState*
    // R4-? are the 2nd, 3rd, 4th, etc. arguments
    
    // When calling racecalladdr:
    // R8 is the call target address
    
    // The race ctx is passed in R3 and loaded in
    // racecalladdr.
    //
    // The sequence used to get the race ctx:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  4. src/image/gif/reader.go

    var interlacing = []interlaceScan{
    	{8, 0}, // Group 1 : Every 8th. row, starting with row 0.
    	{8, 4}, // Group 2 : Every 8th. row, starting with row 4.
    	{4, 2}, // Group 3 : Every 4th. row, starting with row 2.
    	{2, 1}, // Group 4 : Every 2nd. row, starting with row 1.
    }
    
    // uninterlace rearranges the pixels in m to account for interlaced input.
    func uninterlace(m *image.Paletted) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  5. pkg/wasm/cache_test.go

    	testWasmGet(url1, defaultPullPolicy, "2", wantFilePath1, 1)
    	// 3rd time: Should not pull the binary because the policy is IfNotPresent
    	testWasmGet(url1, IfNotPresent, "3", wantFilePath1, 1)
    	// 4th time: Should not pull the binary because the resource version is not changed
    	testWasmGet(url1, Always, "3", wantFilePath1, 1)
    	// 5th time: Should pull the binary because the resource version is changed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    All workers, including compilers and test executors, now start with 512MB of heap. The previous default was 1/4th of physical memory.
    Large projects may have to increase this setting on the relevant tasks, e.g. <<config_gradle.adoc#sec:configuring_jvm_memory,`JavaCompile`>> or link:{groovyDslPath}/org.gradle.api.tasks.testing.Test.html[`Test`].
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  7. src/time/time.go

    // cycle boundaries so that the exceptional years are always delayed as
    // long as possible. That means choosing a year equal to 1 mod 400, so
    // that the first leap year is the 4th year, the first missed leap year
    // is the 100th year, and the missed missed leap year is the 400th year.
    // So we'd prefer instead to print a calendar for 2001-2400 and reuse it
    // for 2401-2800.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  8. pkg/controller/replicaset/replica_set_test.go

    			count:             10,
    			callLimit:         10,
    			fn:                fn,
    			expectedSuccesses: 10,
    			expectedErr:       nil,
    			expectedCallCnt:   10, // 1(first batch) + 2(2nd batch) + 4(3rd batch) + 3(4th batch) = 10
    		},
    		{
    			name:              "callLimit < count (some succeed)",
    			count:             10,
    			callLimit:         5,
    			fn:                fn,
    			expectedSuccesses: 5,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        PredOpTrait<"bias and output must have same element type",
          Or<[
            TFL_OperandIsNoneType<2>,
            TFL_TCresVTEtIsSameAsOp<0, 2>]>>,
        PredOpTrait<"bias must has num of elements equals to 4th dim of filter",
          Or<[
            TFL_OperandIsNoneType<2>,
            TFL_NumElementsEqualsDim<2, 1, 4>]>>]> {
      let summary = "Convolution 3D operator";
    
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/ops.mlir

    func.func @testConv3dInvalidBiasShape(%arg0: tensor<2x3x4x5x2xf32>,%arg1:  tensor<2x2x2x2x3xf32>,%arg2: tensor<4xf32>) -> tensor<?x?x?x?x?xf32> {
      // expected-error @+1 {{failed to verify that bias must has num of elements equals to 4th dim of filter}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
Back to top