Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 548 for prefix (1.44 sec)

  1. src/archive/zip/testdata/test-prefix.zip

    Ian Lance Taylor <******@****.***> 1645759397 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 08 17:26:10 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

            for (Repository repository : repositories) {
                validateStringNotEmpty(
                        prefix, prefix2, "id", problems, Severity.ERROR, Version.V20, repository.getId(), null, repository);
    
                if (validateStringNotEmpty(
                        prefix,
                        prefix2,
                        "[" + repository.getId() + "].url",
                        problems,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/codehost/git_test.go

    			files: map[string]uint64{
    				"prefix/":            0,
    				"prefix/README":      0,
    				"prefix/v2":          3,
    				"prefix/another.txt": 8,
    				"prefix/foo.txt":     13,
    			},
    		},
    		{
    			repo:   hgrepo1,
    			rev:    "v2",
    			subdir: "",
    			files: map[string]uint64{
    				"prefix/.hg_archival.txt": ^uint64(0),
    				"prefix/README":           0,
    				"prefix/v2":               3,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 19:46:23 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/services/Environment.kt

            TrackingProperties(System.getProperties().uncheckedCast()) { prefix, snapshot ->
                listener.systemPropertiesPrefixedBy(prefix, snapshot)
            }
    
        override fun getVariables(): Environment.Properties =
            TrackingProperties(System.getenv()) { prefix, snapshot ->
                listener.envVariablesPrefixedBy(prefix, snapshot)
            }
    
        private
        class TrackingProperties(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/PrefixedObjectValueSource.java

         * @param prefix the prefix.
         * @param root the root of the graph.
         */
        public PrefixedObjectValueSource(String prefix, Object root) {
            super(new PrefixedValueSourceWrapper(new ObjectBasedValueSource(root), prefix));
        }
    
        /**
         * Wrap the specified root object, allowing the specified list of expression
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/base/link.go

    // package prefix. For user packages, prefix should be the package
    // path encoded with objabi.PathToPrefix.
    func PkgLinksym(prefix, name string, abi obj.ABI) *obj.LSym {
    	if name == "_" {
    		// TODO(mdempsky): Cleanup callers and Fatalf instead.
    		return linksym(prefix, "_", abi)
    	}
    	sep := "."
    	if ReservedImports[prefix] {
    		sep = ":"
    	}
    	return linksym(prefix, prefix+sep+name, abi)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 11:28:56 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

            for (Repository repository : repositories) {
                validateStringNotEmpty(
                        prefix, prefix2, "id", problems, Severity.ERROR, Version.V20, repository.getId(), null, repository);
    
                if (validateStringNotEmpty(
                        prefix,
                        prefix2,
                        "[" + repository.getId() + "].url",
                        problems,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  8. src/cmd/go/internal/str/path.go

    // HasPathPrefix reports whether the slash-separated path s
    // begins with the elements in prefix.
    func HasPathPrefix(s, prefix string) bool {
    	if len(s) == len(prefix) {
    		return s == prefix
    	}
    	if prefix == "" {
    		return true
    	}
    	if len(s) > len(prefix) {
    		if prefix[len(prefix)-1] == '/' || s[len(prefix)] == '/' {
    			return s[:len(prefix)] == prefix
    		}
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:02 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/str/str_test.go

    		{"/foo/", "/foo/", ""},
    
    		// if prefix is not s's prefix, return s
    		{"", "/", ""},
    		{"/foo", "/bar", "/foo"},
    		{"/foo", "/foo/bar", "/foo"},
    		{"foo", "/foo", "foo"},
    		{"/foo", "foo", "/foo"},
    		{"/foo", "/foo/", "/foo"},
    	} {
    		got := TrimFilePathPrefix(tt.s, tt.prefix)
    		if got == tt.want {
    			t.Logf("TrimFilePathPrefix(%q, %q) = %q", tt.s, tt.prefix, got)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 25 16:49:13 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. maven-api-impl/src/test/remote-repo/org/apache/maven/plugins/maven-metadata.xml

          <name>Maven Integration Test Plugin</name>
          <prefix>clean</prefix>
          <artifactId>maven-clean-plugin</artifactId>
        </plugin>
        <plugin>
          <name>Maven Integration Test Plugin</name>
          <prefix>deploy</prefix>
          <artifactId>maven-deploy-plugin</artifactId>
        </plugin>
        <plugin>
          <name>Maven Integration Test Plugin</name>
          <prefix>install</prefix>
          <artifactId>maven-install-plugin</artifactId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top