Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 37 for 416 (0.06 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter_test.cc

                              ShapeUtil::MakeScalarShape(xla::F32), "y");
        Add(arg0, arg1);
        TF_ASSERT_OK_AND_ASSIGN(to_apply, sub_builder->Build());
      }
      auto x = Parameter(&builder, 0, ShapeUtil::MakeShape(xla::F32, {4, 16}), "x");
      ReplicaGroup group;
      group.add_replica_ids(0);
      group.add_replica_ids(1);
      XlaOp reduce_scatter =
          ReduceScatter(x, to_apply, /*scatter_dimension=*/1, /*shard_count=*/2,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. docs/zh/docs/advanced/additional-responses.md

                            "$ref": "#/components/schemas/HTTPValidationError"
                        }
                    }
                }
            }
        }
    }
    
    ```
    **模式被引用到OpenAPI模式中的另一个位置:**
    ```json hl_lines="4-16"
    {
        "components": {
            "schemas": {
                "Message": {
                    "title": "Message",
                    "required": [
                        "message"
                    ],
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 09 15:53:39 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. docs/fr/docs/advanced/additional-responses.md

                        }
                    }
                }
            }
        }
    }
    ```
    
    Les schémas sont référencés à un autre endroit du modèle OpenAPI :
    
    ```JSON hl_lines="4-16"
    {
        "components": {
            "schemas": {
                "Message": {
                    "title": "Message",
                    "required": [
                        "message"
                    ],
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  4. hack/tools/go.mod

    	github.com/subosito/gotenv v1.4.1 // indirect
    	github.com/t-yuki/gocover-cobertura v0.0.0-20180217150009-aaee18c8195c // indirect
    	github.com/tdakkota/asciicheck v0.2.0 // indirect
    	github.com/tetafro/godot v1.4.16 // indirect
    	github.com/timakin/bodyclose v0.0.0-20230421092635-574207250966 // indirect
    	github.com/timonwong/loggercheck v0.9.4 // indirect
    	github.com/tomarrell/wrapcheck/v2 v2.8.1 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. src/crypto/aes/gcm_amd64.s

    	increment(0)
    
    	CMPQ ptxLen, $128
    	JB gcmAesDecSingles
    
    	MOVOU T0, (1*16)(SP)
    	increment(1)
    	MOVOU T0, (2*16)(SP)
    	increment(2)
    	MOVOU T0, (3*16)(SP)
    	increment(3)
    	MOVOU T0, (4*16)(SP)
    	increment(4)
    	MOVOU T0, (5*16)(SP)
    	increment(5)
    	MOVOU T0, (6*16)(SP)
    	increment(6)
    	MOVOU T0, (7*16)(SP)
    	increment(7)
    
    gcmAesDecOctetsLoop:
    
    		CMPQ ptxLen, $128
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_messages_test.go

    	serverHelloEmptySCT = append(serverHelloEmptySCT, serverHelloBytes[i+4:]...)
    
    	// Update the handshake message length.
    	serverHelloEmptySCT[1] = byte((len(serverHelloEmptySCT) - 4) >> 16)
    	serverHelloEmptySCT[2] = byte((len(serverHelloEmptySCT) - 4) >> 8)
    	serverHelloEmptySCT[3] = byte(len(serverHelloEmptySCT) - 4)
    
    	// Update the extensions length
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. src/time/zoneinfo_read.go

    		skip := n[NTime]*4 +
    			n[NTime] +
    			n[NZone]*6 +
    			n[NChar] +
    			n[NLeap]*8 +
    			n[NStdWall] +
    			n[NUTCLocal]
    		// Skip the version 2 header that we just read.
    		skip += 4 + 16
    		d.read(skip)
    
    		is64 = true
    
    		// Read the counts again, they can differ.
    		for i := 0; i < 6; i++ {
    			nn, ok := d.big4()
    			if !ok {
    				return nil, errBadData
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. src/hash/crc32/crc32_table_ppc64le.s

    	/* x^235584 mod p(x), x^235520 mod p(x) */
    DATA ·IEEEConst+400(SB)/8,$0x00000000f55cf1ca
    DATA ·IEEEConst+408(SB)/8,$0x000000001fb3084a
    
    	/* x^234560 mod p(x), x^234496 mod p(x) */
    DATA ·IEEEConst+416(SB)/8,$0x00000001a0531540
    DATA ·IEEEConst+424(SB)/8,$0x00000000c53dfb04
    
    	/* x^233536 mod p(x), x^233472 mod p(x) */
    DATA ·IEEEConst+432(SB)/8,$0x0000000132cd7ebc
    DATA ·IEEEConst+440(SB)/8,$0x00000000e10c9ad6
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 20:44:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/lang/StringUtil.java

         * @param buf
         *            追加先の文字列
         * @param i
         *            数値
         */
        public static void appendHex(final StringBuilder buf, final byte i) {
            buf.append(Character.forDigit((i & 0xf0) >> 4, 16));
            buf.append(Character.forDigit(i & 0x0f, 16));
        }
    
        /**
         * 文字列に、数値を16進数に変換した文字列を追加します。
         *
         * @param buf
         *            追加先の文字列
         * @param i
         *            数値
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/internal/language/compact/tables.go

    	kamIndex          ID = 410
    	kamKEIndex        ID = 411
    	kcgIndex          ID = 412
    	kdeIndex          ID = 413
    	kdeTZIndex        ID = 414
    	keaIndex          ID = 415
    	keaCVIndex        ID = 416
    	khqIndex          ID = 417
    	khqMLIndex        ID = 418
    	kiIndex           ID = 419
    	kiKEIndex         ID = 420
    	kkIndex           ID = 421
    	kkKZIndex         ID = 422
    	kkjIndex          ID = 423
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 31.4K bytes
    - Viewed (0)
Back to top