Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for jarDir (0.11 sec)

  1. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/util/JdkClassFinder.java

                }
            }
    
            Set<String> pathFilter = CollectionFactory.createFilePathSet();
            for (Path jarDir : jarDirs) {
                if (jarDir != null && Files.isDirectory(jarDir)) {
                    try (DirectoryStream<Path> stream = Files.newDirectoryStream(jarDir, "*.jar")) {
                        for (Path jarFile : stream) {
                            String jarFileName = jarFile.getFileName().toString();
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Sep 06 07:36:11 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/test/groovy/org/gradle/api/tasks/wrapper/WrapperTest.groovy

        }
    
        def "execute with extant wrapper jar parent directory and extant wrapper jar"() {
            given:
            def jarDir = new File(getProject().getProjectDir(), "lib")
            jarDir.mkdirs()
            def parentFile = expectedTargetWrapperJar.getParentFile()
    
            expect:
            parentFile.isDirectory() || parentFile.mkdirs()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 03:11:06 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithFileInputsIntegrationTest.groovy

                        }
                    }
                }
            """
            def inputDir = file("inputDir")
            inputDir.mkdirs()
            def inputJar = file("input.jar")
            def jarSources = file("jarDir")
            jarSources.mkdirs()
    
            when:
            inputDir.file("org/gradle/input.txt").text = "input.txt"
            inputDir.file("org/gradle/ignored.txt").text = "some"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 20.6K bytes
    - Viewed (0)
  4. platforms/software/resources/src/test/groovy/org/gradle/internal/resource/UriTextResourceTest.groovy

            when:
            URI jarUri = createJar()
            UriTextResource resource = new UriTextResource('<display-name>', jarUri, resolver)
    
            then:
            resource.displayName == "<display-name> '$jarUri'"
            resource.file == null
            resource.charset == null
            resource.location.file == null
            resource.location.URI == jarUri
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/FileReferenceFactory.java

         * Creates a reference to the given path. Returns null for null path
         */
        public FileReference fromJarURI(String jarURI) {
            if (jarURI== null) {
                return null;
            }
            //cut the pre and postfix of this url
            URI fileURI = null;
            try {
                fileURI = new URI(jarURI.replace("jar:", "").replace("!/", ""));
            } catch (URISyntaxException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/enduser/GradleRunnerMiscEndUserIntegrationTest.groovy

                    || f.name.contains("gradle-core")
                    || f.name.contains("gradle-build-process-services")
                ) {
                    GFileUtils.copyFile(f, new File(jarsDir, f.name))
                }
            }
    
            def testKitJar = jarsDir.listFiles().find { it.name.contains "test-kit" }
            buildFile << """
                dependencies {
                    testImplementation fileTree(dir: 'jars', include: '*.jar')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/internal/fingerprint/impl/DefaultFileCollectionSnapshotterTest.groovy

            snapshot = snapshotter.snapshot(tarTree).snapshot
    
            then:
            assertSingleFileSnapshot(snapshot)
    
            when:
            def tarDir = tmpDir.createDir('tarDir')
            TestFile emptyTar = tempDir.file('emptyArchive.tar')
            tarDir.tarTo(emptyTar)
            def emptyTarTree = TestFiles.fileOperations(tempDir, testFileProvider()).tarTree(tar)
            snapshot = snapshotter.snapshot(emptyTarTree).snapshot
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 12 16:25:23 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  8. docs/pt/docs/tutorial/extra-models.md

        password = user_dict["password"],
        email = user_dict["email"],
        full_name = user_dict["full_name"],
    )
    ```
    
    #### Um modelo Pydantic a partir do conteúdo de outro
    
    Como no exemplo acima, obtivemos o `user_dict` a partir do `user_in.dict()`, este código:
    
    ```Python
    user_dict = user_in.dict()
    UserInDB(**user_dict)
    ```
    
    seria equivalente a:
    
    ```Python
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. docs/tr/docs/advanced/security/index.md

    # Gelişmiş Güvenlik
    
    ## Ek Özellikler
    
    [Tutorial - User Guide: Security](../../tutorial/security/index.md){.internal-link target=_blank} sayfasında ele alınanların dışında güvenlikle ilgili bazı ek özellikler vardır.
    
    !!! tip "İpucu"
        Sonraki bölümler **mutlaka "gelişmiş" olmak zorunda değildir**.
    
        Kullanım şeklinize bağlı olarak, çözümünüz bu bölümlerden birinde olabilir.
    
    ## Önce Öğreticiyi Okuyun
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 27 16:21:37 UTC 2024
    - 700 bytes
    - Viewed (0)
  10. docs/pt/docs/tutorial/body-multiple-params.md

        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="19-21"
        {!> ../../../docs_src/body_multiple_params/tutorial001.py!}
        ```
    
    !!! note "Nota"
        Repare que, neste caso, o `item` que seria capturado a partir do corpo é opcional. Visto que ele possui `None` como valor padrão.
    
    ## Múltiplos parâmetros de corpo
    
    No exemplo anterior, as *operações de rota* esperariam um JSON no corpo contendo os atributos de um `Item`, exemplo:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top