Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 52 for hasPath (0.48 sec)

  1. fess-crawler-es/src/main/java/org/codelibs/fess/crawler/service/impl/EsDataService.java

            return get(EsAccessResult.class, sessionId, url);
        }
    
        @Override
        public List<EsAccessResult> getAccessResultList(final String url, final boolean hasData) {
            return getList(EsAccessResult.class, builder -> builder.setQuery(QueryBuilders.termQuery(URL, url)));
        }
    
        public List<EsAccessResult> getAccessResultList(final Consumer<SearchRequestBuilder> callback) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppStaticLibraryPublishingIntegrationTest.groovy

        }
    
        @Override
        TestFile getVariantSourceFile(String module, VariantContext variantContext) {
            return staticLibrary("${module}/build/lib/main/${variantContext.asPath}${module}").file
        }
    
        @Override
        Map<String, String> getVariantFileInformation(String linkage, String module, String variantModuleNameWithVersion) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheStandardStreamsIntegrationTest.groovy

                tasks.register("run", Exec) {
                    dependsOn(compileJava)
                    executable = ${Jvm.canonicalName}.current().javaExecutable
                    args '-cp', project.layout.files(compileJava).asPath, 'Main' ${formatArgument args["extraArg"], { ", '$it'" }}
    
                    ${formatStreamArgument args, "standardInput"}
                    ${formatStreamArgument args, "standardOutput"}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Stream.kt

            val hasData = sendBuffer.size > 0L
            val hasTrailers = trailers != null
            when {
              hasTrailers -> {
                while (sendBuffer.size > 0L) {
                  emitFrame(false)
                }
                connection.writeHeaders(id, outFinished, trailers!!.toHeaderList())
              }
    
              hasData -> {
                while (sendBuffer.size > 0L) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorServicesIntegrationTest.groovy

            fixture.workActionThatCreatesFiles.action += """
                execOperations.exec {
                    executable org.gradle.internal.jvm.Jvm.current().getJavaExecutable()
                    args '-cp', parameters.classpath.asPath, 'org.gradle.TestMain', parameters.projectDir, parameters.testFile
                }
            """
            fixture.withWorkActionClassInBuildScript()
    
            file('src/main/java/org/gradle/TestMain.java') << testMainSource
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AbstractFileCollection.java

        public Iterator<File> iterator() {
            return getFiles().iterator();
        }
    
        @Override
        public String getAsPath() {
            showGetAsPathDeprecationWarning();
            return GUtil.asPath(this);
        }
    
        private void showGetAsPathDeprecationWarning() {
            List<String> filesAsPaths = this.getFiles().stream()
                .map(File::getPath)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:50 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilder.java

                    args.add("-sourcepath");
                    args.add("");
                }
                return;
            }
    
            args.add("-sourcepath");
            args.add(GUtil.asPath(sourcepath));
        }
    
        private void addUserProvidedArgs(List<String> compilerArgs) {
            if (!includeMainOptions) {
                return;
            }
            if (compilerArgs != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:08 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

            buildFile """
                def files = files('${escapeString(path)}')
                tasks.register("getAsPath") {
                    doLast {
                        println files.asPath
                    }
                }
            """
    
            when:
            runAndFail "getAsPath"
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitTestExecutionIntegrationTest.groovy

                        ["-DtestRuntimeClasspath=\${filteredTestClasspath.asPath}".toString()]
                    }
                }
            """.stripIndent()
    
            when:
            executer.withTasks('build').run()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationPublishingIntegrationTest.groovy

        }
    
        @Override
        TestFile getVariantSourceFile(String module, VariantContext variantContext) {
            def executable = executable("build/exe/main/${variantContext.asPath}${module}")
            return variantContext.buildType.name == 'release' ? executable.strippedRuntimeFile : executable.file
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 21.2K bytes
    - Viewed (0)
Back to top