Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,445 for data0 (0.05 sec)

  1. src/crypto/subtle/xor_test.go

    	})
    }
    
    func BenchmarkXORBytes(b *testing.B) {
    	dst := make([]byte, 1<<15)
    	data0 := make([]byte, 1<<15)
    	data1 := make([]byte, 1<<15)
    	sizes := []int64{1 << 3, 1 << 7, 1 << 11, 1 << 15}
    	for _, size := range sizes {
    		b.Run(fmt.Sprintf("%dBytes", size), func(b *testing.B) {
    			s0 := data0[:size]
    			s1 := data1[:size]
    			b.SetBytes(int64(size))
    			for i := 0; i < b.N; i++ {
    				XORBytes(dst, s0, s1)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:51:19 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. src/debug/dwarf/line_test.go

    		0x20, 0x10, 0x10}
    	line := []byte{0x20}
    	Data0, err := New(abbrev, aranges, frame, info, line, pubnames, ranges, str)
    	if err != nil {
    		t.Fatalf("error unexpected: %v", err)
    	}
    	Reader0 := Data0.Reader()
    	Entry0, err := Reader0.Next()
    	if err != nil {
    		t.Fatalf("error unexpected: %v", err)
    	}
    	LineReader0, err := Data0.LineReader(Entry0)
    	if err == nil {
    		t.Fatalf("expected error")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  3. src/debug/dwarf/entry_test.go

    	// A hand-crafted input corresponding to a minimal-size
    	// .debug_info (header only, no DIEs) and an empty abbrev table.
    	data0, _ := New(abbrev, aranges, frame, info, line, pubnames, ranges, str)
    	reader0 := data0.Reader()
    	entry0, _ := reader0.SeekPC(0x0)
    	// main goal is to make sure we can get here without crashing
    	if entry0 != nil {
    		t.Errorf("got non-nil entry0, wanted nil")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  4. docs/erasure/README.md

    ```sh
    minio server /data{1...12}
    ```
    
    Example: Start MinIO server in a 8 drives setup, using MinIO Docker image.
    
    ```sh
    podman run \
      -p 9000:9000 \
      -p 9001:9001 \
      --name minio \
      -v /mnt/data1:/data1 \
      -v /mnt/data2:/data2 \
      -v /mnt/data3:/data3 \
      -v /mnt/data4:/data4 \
      -v /mnt/data5:/data5 \
      -v /mnt/data6:/data6 \
      -v /mnt/data7:/data7 \
      -v /mnt/data8:/data8 \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  5. buildscripts/upgrade-tests/compose.yml

        volumes:
          - data2-1:/data1
          - data2-2:/data2
          - data2-3:/data3
    
      minio3:
        <<: *minio-common
        hostname: minio3
        volumes:
          - data3-1:/data1
          - data3-2:/data2
          - data3-3:/data3
    
      minio4:
        <<: *minio-common
        hostname: minio4
        volumes:
          - data4-1:/data1
          - data4-2:/data2
          - data4-3:/data3
    
      nginx:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. .github/workflows/multipart/docker-compose-site2.yaml

        volumes:
          - site2-data2-1:/data1
          - site2-data2-2:/data2
    
      site2-minio3:
        <<: *minio-common
        hostname: site2-minio3
        volumes:
          - site2-data3-1:/data1
          - site2-data3-2:/data2
    
      site2-minio4:
        <<: *minio-common
        hostname: site2-minio4
        volumes:
          - site2-data4-1:/data1
          - site2-data4-2:/data2
    
      site2-nginx:
        image: nginx:1.19.2-alpine
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Sep 30 10:13:56 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. .github/workflows/multipart/docker-compose-site1.yaml

        volumes:
          - site1-data2-1:/data1
          - site1-data2-2:/data2
    
      site1-minio3:
        <<: *minio-common
        hostname: site1-minio3
        volumes:
          - site1-data3-1:/data1
          - site1-data3-2:/data2
    
      site1-minio4:
        <<: *minio-common
        hostname: site1-minio4
        volumes:
          - site1-data4-1:/data1
          - site1-data4-2:/data2
    
      site1-nginx:
        image: nginx:1.19.2-alpine
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Sep 30 10:13:56 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. tests/test_tutorial/test_websockets/test_tutorial003_py39.py

            data1 = connection.receive_text()
            assert data1 == "You wrote: Hello from 1234"
            data2 = connection_two.receive_text()
            client1_says = "Client #1234 says: Hello from 1234"
            assert data2 == client1_says
            data1 = connection.receive_text()
            assert data1 == client1_says
            connection_two.close()
            data1 = connection.receive_text()
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. tests/test_tutorial/test_websockets/test_tutorial003.py

            data1 = connection.receive_text()
            assert data1 == "You wrote: Hello from 1234"
            data2 = connection_two.receive_text()
            client1_says = "Client #1234 says: Hello from 1234"
            assert data2 == client1_says
            data1 = connection.receive_text()
            assert data1 == client1_says
            connection_two.close()
            data1 = connection.receive_text()
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 29 09:26:07 UTC 2021
    - 872 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/testing/testng-groupbyinstances/kotlin/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)
Back to top