Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 3,524 for data_ (0.31 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

        const char* const file;
        int const line;
        std::string const message;
    
       private:
        GTEST_DISALLOW_COPY_AND_ASSIGN_(AssertHelperData);
      };
    
      AssertHelperData* const data_;
    
      GTEST_DISALLOW_COPY_AND_ASSIGN_(AssertHelper);
    };
    
    }  // namespace internal
    
    #if GTEST_HAS_PARAM_TEST
    // The pure interface class that all value-parameterized tests inherit from.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

        const char* const file;
        int const line;
        std::string const message;
    
       private:
        GTEST_DISALLOW_COPY_AND_ASSIGN_(AssertHelperData);
      };
    
      AssertHelperData* const data_;
    
      GTEST_DISALLOW_COPY_AND_ASSIGN_(AssertHelper);
    };
    
    }  // namespace internal
    
    #if GTEST_HAS_PARAM_TEST
    // The pure interface class that all value-parameterized tests inherit from.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
Back to top