Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,883 for Paths (0.1 sec)

  1. maven-core/src/main/java/org/apache/maven/execution/DefaultBuildResumptionDataRepository.java

            Properties properties =
                    loadResumptionFile(Paths.get(rootProject.getBuild().getDirectory()));
            applyResumptionProperties(request, properties);
        }
    
        @Override
        public void removeResumptionData(MavenProject rootProject) {
            Path resumeProperties = Paths.get(rootProject.getBuild().getDirectory(), RESUME_PROPERTIES_FILENAME);
            try {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 06 08:51:18 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. src/path/filepath/example_unix_test.go

    	fmt.Println("On Unix:", filepath.SplitList("/a/b/c:/usr/bin"))
    	// Output:
    	// On Unix: [/a/b/c /usr/bin]
    }
    
    func ExampleRel() {
    	paths := []string{
    		"/a/b/c",
    		"/b/c",
    		"./b/c",
    	}
    	base := "/a"
    
    	fmt.Println("On Unix:")
    	for _, p := range paths {
    		rel, err := filepath.Rel(base, p)
    		fmt.Printf("%q: %q %v\n", p, rel, err)
    	}
    
    	// Output:
    	// On Unix:
    	// "/a/b/c": "b/c" <nil>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/SettingsScriptApi.kt

         *
         * @param paths The paths to the files. May be empty.
         * @return The file collection.
         */
        @Suppress("unused")
        fun files(vararg paths: Any): ConfigurableFileCollection =
            fileOperations.configurableFiles(paths)
    
        /**
         * Creates a [ConfigurableFileCollection] containing the given files.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/ManifestUtil.java

            List<String> paths = new ArrayList<String>(classpath.size());
            for (File file : classpath) {
                String path = constructRelativeClasspathUri(jarFile, file);
                paths.add(path);
            }
    
            return CollectionUtils.join(" ", paths);
        }
    
        private static String constructRelativeClasspathUri(File jarFile, File file) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/toolchain/java/JavaToolchainFactory.java

                        "Java toolchain without the " + JavaToolchainImpl.KEY_JAVAHOME + " configuration element.");
            }
            Path normal = Paths.get(javahome.getValue()).normalize();
            if (Files.exists(normal)) {
                jtc.setJavaHome(Paths.get(javahome.getValue()).normalize().toString());
            } else {
                throw new MisconfiguredToolchainException(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/ProjectDelegate.kt

            delegate.projectDir
    
        override fun files(vararg paths: Any?): ConfigurableFileCollection =
            delegate.files(*paths)
    
        override fun files(paths: Any, configureClosure: Closure<*>): ConfigurableFileCollection =
            delegate.files(paths, configureClosure)
    
        override fun files(paths: Any, configureAction: Action<in ConfigurableFileCollection>): ConfigurableFileCollection =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:16:16 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            def file1 = new File("1")
            def file2 = new File("2")
    
            when:
            def paths = ["a"]
            collection.from({ paths })
            def files = collection.files
    
            then:
            1 * fileResolver.resolve("a") >> file1
            files as List == [file1]
    
            when:
            paths.add("b")
            files = collection.files
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  8. tools/bug-report/pkg/filter/filter_test.go

    			config := &config2.BugReportConfig{}
    			if err := yaml.Unmarshal([]byte(tt.config), config); err != nil {
    				t.Fatal(err)
    			}
    
    			paths, err := GetMatchingPaths(config, testClusterResources)
    			if err != nil {
    				t.Fatal(err)
    			}
    			g.Expect(paths).Should(ConsistOf(tt.want))
    		})
    	}
    }
    
    func TestGetMatchingPathsMultiple(t *testing.T) {
    	g := NewWithT(t)
    
    	tests := []struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  9. src/cmd/doc/main.go

    		}
    	}
    }
    
    // failMessage creates a nicely formatted error message when there is no result to show.
    func failMessage(paths []string, symbol, method string) error {
    	var b bytes.Buffer
    	if len(paths) > 1 {
    		b.WriteString("s")
    	}
    	b.WriteString(" ")
    	for i, path := range paths {
    		if i > 0 {
    			b.WriteString(", ")
    		}
    		b.WriteString(path)
    	}
    	if method == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. src/go/doc/comment/testdata/text8.txt

    arguments must satisfy the following constraints:
    
     - Arguments must be package paths or package patterns (with "..." wildcards).
     They must not be standard packages (like fmt), meta-patterns (std, cmd,
     all), or relative or absolute file paths.
    
     - All arguments must have the same version suffix. Different queries are not
     allowed, even if they refer to the same version.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:48 UTC 2022
    - 3.5K bytes
    - Viewed (0)
Back to top