Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of about 10,000 for FILE (0.06 sec)

  1. tests/test_tutorial/test_request_files/test_tutorial001.py

        assert response.status_code == 200, response.text
        assert response.json() == {"file_size": 14}
    
    
    def test_post_large_file(tmp_path):
        default_pydantic_max_size = 2**16
        path = tmp_path / "test.txt"
        path.write_bytes(b"x" * (default_pydantic_max_size + 1))
    
        client = TestClient(app)
        with path.open("rb") as file:
            response = client.post("/files/", files={"file": file})
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionLifecycleIntegrationTest.groovy

                assert files.files as List == [file('a1'), file('b'), file('c')]
    
                files.finalizeValue()
    
                assert counter == 2
    
                assert files.files as List == [file('a2'), file('b'), file('c')]
    
                counter = 45
                names.clear()
    
                assert files.files as List == [file('a2'), file('b'), file('c')]
            """
    
            expect:
            succeeds()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 10:55:07 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/UnpackingVisitorTest.groovy

        def "resolves String"() {
            def file = new File('some-file')
    
            when:
            visitor.add('path')
    
            then:
            1 * resolver.resolve('path') >> file
            1 * context.accept(_) >> { FileCollectionInternal collection ->
                collection.files == [file] as Set
            }
            0 * context._
        }
    
        def "resolves File"() {
            def file = new File('some-file')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/locator/ModelLocator.java

         */
        @Deprecated
        File locatePom(File projectDirectory);
    
        /**
         * Locates the POM file within the specified project directory. In case the given project directory does not exist
         * or does not contain a POM file, the return value indicates the expected path to the POM file. Subdirectories of
         * the project directory will not be considered when locating the POM file. The return value will be an absolute
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/files/fileCollections/groovy/build.gradle

    import java.nio.file.Paths
    
    // tag::simple-params[]
    FileCollection collection = layout.files('src/file1.txt',
                                      new File('src/file2.txt'),
                                      ['src/file3.csv', 'src/file4.csv'],
                                      Paths.get('src', 'file5.txt'))
    // end::simple-params[]
    
    file('src').mkdirs()
    file('src/dir1').mkdirs()
    file('src/file1.txt').mkdirs()
    file('src2').mkdirs()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 13:55:00 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. platforms/jvm/language-jvm/src/main/java/org/gradle/api/internal/tasks/compile/DefaultJvmLanguageCompileSpec.java

    import javax.annotation.Nullable;
    import java.io.File;
    import java.io.Serializable;
    import java.util.List;
    
    public class DefaultJvmLanguageCompileSpec implements JvmLanguageCompileSpec, Serializable {
        private File workingDir;
        private File tempDir;
        private List<File> classpath;
        private File destinationDir;
        private Iterable<File> sourceFiles;
        private Integer release;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. src/go/token/position.go

    // from the beginning of the file. Thus, the file base offset is the Pos value
    // representing the first byte in the file.
    //
    // To create the Pos value for a specific source offset (measured in bytes),
    // first add the respective file to the current file set using [FileSet.AddFile]
    // and then call [File.Pos](offset) for that file. Given a Pos value p
    // for a specific file set fset, the corresponding [Position] value is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AbstractBaseDirFileResolver.java

            }
    
            File file = convertObjectToFile(path);
    
            if (file == null) {
                throw new IllegalArgumentException(String.format("Cannot convert path to File. path='%s'", path));
            }
    
            if (!file.isAbsolute()) {
                File baseDir = getBaseDir();
                if (!GUtil.isTrue(baseDir)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintWriter.kt

        private
        fun reportUniqueFileSystemEntryInput(file: File, consumer: String?) {
            if (reportedFileSystemEntries.add(file)) {
                reportFileSystemEntryInput(file, consumer)
            }
        }
    
        private
        fun reportFileInput(file: File, consumer: String?) {
            reportInput(consumer, null) {
                text("file ")
                reference(host.displayNameOf(file))
            }
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/ConfigurableFileTreeIntegrationTest.groovy

            given:
            file('files/one.txt').createFile()
            file('files/a/one.txt').createFile()
            file('files/a/not ONE.txt').createFile()
            file('files/b/ignore.txt').createFile()
            file('files/b/not one to IGNORE.txt').createFile()
            file('files/b/one.ignore').createFile()
            buildFile """
                def files = fileTree(dir: 'files')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.7K bytes
    - Viewed (0)
Back to top