Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,771 for data0 (0.11 sec)

  1. pkg/kubelet/util/store/filestore_test.go

    	testCases := []struct {
    		key       string
    		data      string
    		expectErr bool
    	}{
    		{
    			"id1",
    			"data1",
    			false,
    		},
    		{
    			"id2",
    			"data2",
    			false,
    		},
    		{
    			"/id1",
    			"data1",
    			true,
    		},
    		{
    			".id1",
    			"data1",
    			true,
    		},
    		{
    			"   ",
    			"data2",
    			true,
    		},
    		{
    			"___",
    			"data2",
    			true,
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 24 13:51:34 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  2. 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)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractPathSensitivityIntegrationSpec.groovy

        }
    
        def "single source file moved within hierarchy with #pathSensitive as input is loaded from cache: #expectedOutcome"() {
            given:
            file("src/data1").createDir()
            file("src/data2").createDir()
            file("src/data1/input.txt").text = "input"
    
            declareTestTaskWithPathSensitivity(pathSensitive)
    
            buildFile << """
                test {
                    sources = fileTree("src")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  4. docs/orchestration/docker-compose/docker-compose.yaml

        <<: *minio-common
        hostname: minio1
        volumes:
          - data1-1:/data1
          - data1-2:/data2
    
      minio2:
        <<: *minio-common
        hostname: minio2
        volumes:
          - data2-1:/data1
          - data2-2:/data2
    
      minio3:
        <<: *minio-common
        hostname: minio3
        volumes:
          - data3-1:/data1
          - data3-2:/data2
    
      minio4:
        <<: *minio-common
        hostname: minio4
        volumes:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 05:40:03 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/normalization/KotlinApiClassExtractor.kt

                        when (it.name) {
                            "d1" -> data1 = it.value.map { arrayItem -> arrayItem.value as String }.toTypedArray()
                            "d2" -> data2 = it.value.map { arrayItem -> arrayItem.value as String }.toTypedArray()
                        }
                }
            }
            return KotlinClassHeader(kind, metadataVersion, data1, data2, extraString, packageName, extraInt)
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  6. schema/index_test.go

    	Name7        string `gorm:"index:type"`
    	Name8        string `gorm:"index:,length:10;index:,collate:utf8"`
    
    	// Composite Index: Flattened structure.
    	Data0A string `gorm:"index:,composite:comp_id0"`
    	Data0B string `gorm:"index:,composite:comp_id0"`
    
    	// Composite Index: Nested structure.
    	Data1A string `gorm:"index:,composite:comp_id1"`
    	CompIdxLevel1C
    
    	// Composite Index: Unique and priority.
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sun Feb 04 07:49:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. src/archive/tar/reader_test.go

    		{data1[:511], 0, io.ErrUnexpectedEOF},
    		{data1[:512], 1, io.ErrUnexpectedEOF},
    		{data1[:1024], 1, io.EOF},
    		{data1[:1536], 2, io.ErrUnexpectedEOF},
    		{data1[:2048], 2, io.EOF},
    		{data1, 2, io.EOF},
    		{data1[:2048] + data2[:1536], 3, io.EOF},
    		{data2[:511], 0, io.ErrUnexpectedEOF},
    		{data2[:512], 1, io.ErrUnexpectedEOF},
    		{data2[:1195], 1, io.ErrUnexpectedEOF},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 21:14:38 UTC 2022
    - 47.1K bytes
    - Viewed (0)
  8. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/language/groovy/GroovyCompileRelocationIntegrationTest.groovy

        @Override
        protected void setupProjectIn(TestFile projectDir) {
            projectDir.file("libs").createDir()
            projectDir.file("libs/lib1.jar") << jarWithContents("data.txt": "data1")
            projectDir.file("libs/lib2.jar") << jarWithContents("data.txt": "data2")
            projectDir.file("src/main/groovy/sub-dir").createDir()
            projectDir.file("src/main/groovy/Foo.java") << "class Foo {}"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileRelocationIntegrationTest.groovy

        @Override
        protected void setupProjectIn(TestFile projectDir) {
            projectDir.file("libs").createDir()
            projectDir.file("libs/lib1.jar") << jarWithContents("data.txt": "data1")
            projectDir.file("libs/lib2.jar") << jarWithContents("data.txt": "data2")
            projectDir.file("src/main/java/sub-dir").createDir()
            projectDir.file("src/main/java/Foo.java") << "public class Foo {}"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. src/testing/fstest/testfs.go

    	if string(data1) != string(data2) {
    		t.errorf("%s: %s: different data returned\n\t%q\n\t%q", file, desc, data1, data2)
    		return
    	}
    }
    
    // checkBadPath checks that various invalid forms of file's name cannot be opened using t.fsys.Open.
    func (t *fsTester) checkOpen(file string) {
    	t.checkBadPath(file, "Open", func(file string) error {
    		f, err := t.fsys.Open(file)
    		if err == nil {
    			f.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top