Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,771 for data0 (0.4 sec)

  1. docs/ja/docs/tutorial/extra-data-types.md

    * `Decimal`:
        * Pythonの標準的な`Decimal`です。
        * リクエストやレスポンスでは`float`と同じように扱います。
    
    * Pydanticの全ての有効な型はこちらで確認できます: <a href="https://docs.pydantic.dev/latest/concepts/types/" class="external-link" target="_blank">Pydantic data types</a>。
    ## 例
    
    ここでは、上記の型のいくつかを使用したパラメータを持つ*path operation*の例を示します。
    
    ```Python hl_lines="1 2 12-16"
    {!../../../docs_src/extra_data_types/tutorial001.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. src/crypto/rc4/rc4_test.go

    	c2b, _ := NewCipher(golden[1].key)
    	data2 := make([]byte, 1<<20)
    	c2a.XORKeyStream(data2, data2)
    	c2b.XORKeyStream(data2, data2)
    
    	if !bytes.Equal(data1, data2) {
    		t.Fatalf("bad block")
    	}
    }
    
    func benchmark(b *testing.B, size int64) {
    	buf := make([]byte, size)
    	c, err := NewCipher(golden[0].key)
    	if err != nil {
    		panic(err)
    	}
    	b.SetBytes(size)
    
    	for i := 0; i < b.N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 21 19:49:06 UTC 2018
    - 4.3K bytes
    - Viewed (0)
  3. src/internal/syscall/windows/syscall_windows.go

    	socket_error = uintptr(^uint32(0))
    )
    
    var WSAID_WSASENDMSG = syscall.GUID{
    	Data1: 0xa441e712,
    	Data2: 0x754f,
    	Data3: 0x43ca,
    	Data4: [8]byte{0x84, 0xa7, 0x0d, 0xee, 0x44, 0xcf, 0x60, 0x6d},
    }
    
    var WSAID_WSARECVMSG = syscall.GUID{
    	Data1: 0xf689d7c8,
    	Data2: 0x6f1f,
    	Data3: 0x436b,
    	Data4: [8]byte{0x8a, 0x53, 0xe5, 0x4f, 0xe3, 0x51, 0xc3, 0x22},
    }
    
    var sendRecvMsgFunc struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. cmd/data-scanner_test.go

    Krishnan Parthasarathi <******@****.***> 1714735138 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 03 11:18:58 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. cmd/data-usage_test.go

    Harshavardhana <******@****.***> 1711552240 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Mar 27 15:10:40 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/arg-data-type-with-subtype.pbtxt

    # Test the handling of the input data types. In particular, if the data type
    # for an input graph node is specified via command line options, use it.
    # otherwise, use the data type of the node in the graph.
    
    node {
      name: "p"
      op: "Placeholder"
      attr {
        key: "dtype"
        value {
          type: DT_INT32
        }
      }
      attr {
        key: "shape"
        value {
          shape {
            unknown_rank: true
          }
        }
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 00:16:51 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  7. src/encoding/asn1/marshal_test.go

    		return
    	}
    
    	var v1 any
    	_, err = Unmarshal(data1, &v1)
    	if err != nil {
    		t.Errorf("%v", err)
    		return
    	}
    	if !reflect.DeepEqual(v, v1) {
    		t.Errorf("got: %#v data=%q, want : %#v data=%q\n ", v1, data1, v, data)
    	}
    }
    
    func BenchmarkMarshal(b *testing.B) {
    	b.ReportAllocs()
    
    	for i := 0; i < b.N; i++ {
    		for _, test := range marshalTests {
    			Marshal(test.in)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 10K bytes
    - Viewed (0)
  8. cmd/data-usage.go

    Harshavardhana <******@****.***> 1715215894 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 00:51:34 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/testing/testng-groupbyinstances/groovy/src/test/java/org/gradle/testng/TestFactory.java

    public class TestFactory {
    
        @DataProvider(name = "data")
        public static Object[][] provide() {
            return new Object[][] {
                { "data1" },
                { "data2" }
            };
        }
    
        private String data;
    
        @Factory(dataProvider = "data")
        public TestFactory(String data) {
            this.data = data;
        }
    
        @BeforeClass
        public void beforeClass() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. cmd/data-scanner.go

    )
    
    // initDataScanner will start the scanner in the background.
    func initDataScanner(ctx context.Context, objAPI ObjectLayer) {
    	go func() {
    		r := rand.New(rand.NewSource(time.Now().UnixNano()))
    		// Run the data scanner in a loop
    		for {
    			runDataScanner(ctx, objAPI)
    			duration := time.Duration(r.Float64() * float64(scannerCycle.Load()))
    			if duration < time.Second {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
Back to top