Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,905 for pathsOf (0.98 sec)

  1. platforms/jvm/jvm-services/src/integTest/groovy/org/gradle/jvm/toolchain/JavaInstallationRegistryIntegrationTest.groovy

                .withArgument("-Porg.gradle.java.installations.paths=${new File("/other/path").absolutePath}," + secondJavaHome)
                .withArgument("-Porg.gradle.java.installations.fromEnv=JDK1,JDK2")
                .withTasks("show")
                .run()
            then:
            outputContains("Directory '${new File("/other/path").absolutePath}' (Gradle property 'org.gradle.java.installations.paths') used for java installations does not exist")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:29:03 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/podtopologyspread/filtering.go

    		if p[0].MatchNum > p[1].MatchNum {
    			// swap paths[0] and paths[1]
    			p[0], p[1] = p[1], p[0]
    		}
    	} else {
    		// `tpVal` doesn't exist
    		if num < p[0].MatchNum {
    			// update paths[1] with paths[0]
    			p[1] = p[0]
    			// update paths[0]
    			p[0].TopologyValue, p[0].MatchNum = tpVal, num
    		} else if num < p[1].MatchNum {
    			// update paths[1]
    			p[1].TopologyValue, p[1].MatchNum = tpVal, num
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 12.4K bytes
    - Viewed (1)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/resolver/CompactTree.kt

    
    internal
    fun compactStringFor(paths: Iterable<String>, separator: Char) =
        CompactTree.of(paths.map { it.splitIncluding(separator).toList() }).toString()
    
    
    private
    sealed class CompactTree {
    
        companion object {
    
            fun of(paths: Iterable<List<String>>): CompactTree =
                paths
                    .filter { it.isNotEmpty() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/file/ProjectLayout.java

         *
         * <p>This method can also be used to create an empty collection, but the collection may not be mutated later.</p>
         *
         * @param paths The paths to the files. May be empty.
         * @return The file collection. Never returns null.
         * @since 4.8
         */
        FileCollection files(Object... paths);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. pkg/kubelet/kubeletconfig/configfiles/configfiles.go

    }
    
    // resolveRelativePaths makes relative paths absolute by resolving them against `root`
    func resolveRelativePaths(paths []*string, root string) {
    	for _, path := range paths {
    		// leave empty paths alone, "no path" is a valid input
    		// do not attempt to resolve paths that are already absolute
    		if len(*path) > 0 && !utilfs.IsAbs(*path) {
    			*path = filepath.Join(root, *path)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/DefaultTask.java

        }
    
        @Override
        public Task finalizedBy(Object... paths) {
            return super.finalizedBy(paths);
        }
    
        @Override
        public TaskDependency getFinalizedBy() {
            return super.getFinalizedBy();
        }
    
        @Override
        public TaskDependency shouldRunAfter(Object... paths) {
            return super.shouldRunAfter(paths);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/module/module.go

    // but additional checking functions, most notably [Check], verify that
    // a particular path, version pair is valid.
    //
    // # Escaped Paths
    //
    // Module paths appear as substrings of file system paths
    // (in the download cache) and of web server URLs in the proxy protocol.
    // In general we cannot rely on file systems to be case-sensitive,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/it/admin/FileConfigTests.java

            final Map<String, Object> requestBody = new HashMap<>();
            final String keyProp = NAME_PREFIX + id;
            final String paths = "file:///" + NAME_PREFIX + id;
            requestBody.put(KEY_PROPERTY, keyProp);
            requestBody.put("paths", paths);
            requestBody.put("num_of_thread", 5);
            requestBody.put("interval_time", 1000);
            requestBody.put("boost", id);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. test/import5.go

    // Does not compile.
    
    package main
    
    // Correct import paths.
    import _ "fmt"
    import _ `time`
    import _ "m\x61th"
    import _ "go/parser"
    
    // Correct import paths, but the packages don't exist.
    // Don't test.
    //import "a.b"
    //import "greek/αβ"
    
    // Import paths must be strings.
    import 42    // ERROR "import path must be a string"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 20:07:15 UTC 2017
    - 722 bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverResult.java

        /**
         * Returns the file paths of all dependencies, regardless on which tool option those paths should be placed.
         * The returned list may contain a mix of Java class-path, Java module-path, and other types of path elements.
         * This collection has the same content than {@code getDependencies.values()} except that it does not contain
         * null elements.
         *
         * @return the paths of all dependencies
         */
        @Nonnull
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top