Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 681 for Separator (0.17 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-filepath.h

      // it is called in CreateDirectoriesRecursively() assuming that it will change
      // a pathname from directory syntax (trailing separator) to filename syntax.
      //
      // On Windows this method also replaces the alternate path separator '/' with
      // the primary path separator '\\', so that for example "bar\\/\\foo" becomes
      // "bar\\foo".
    
      void Normalize();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/Joiner.java

      /** Returns a joiner which automatically places {@code separator} between consecutive elements. */
      public static Joiner on(String separator) {
        return new Joiner(separator);
      }
    
      /** Returns a joiner which automatically places {@code separator} between consecutive elements. */
      public static Joiner on(char separator) {
        return new Joiner(String.valueOf(separator));
      }
    
      private final String separator;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/route/route_cache.go

    	h := hash.New()
    
    	h.WriteString(r.RouteName)
    	h.Write(Separator)
    	h.WriteString(r.ProxyVersion)
    	h.Write(Separator)
    	h.WriteString(r.ClusterID)
    	h.Write(Separator)
    	h.WriteString(r.DNSDomain)
    	h.Write(Separator)
    	h.WriteString(strconv.FormatBool(r.DNSCapture))
    	h.Write(Separator)
    	h.WriteString(strconv.FormatBool(r.DNSAutoAllocate))
    	h.Write(Separator)
    	h.WriteString(strconv.FormatBool(r.AllowAny))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. src/path/filepath/path.go

    		// Treat any targetpath matching `\\host\share` basepath as absolute path.
    		base = string(Separator)
    	}
    
    	// Can't use IsAbs - `\a` and `a` are both relative in Windows.
    	baseSlashed := len(base) > 0 && base[0] == Separator
    	targSlashed := len(targ) > 0 && targ[0] == Separator
    	if baseSlashed != targSlashed || !sameWord(baseVol, targVol) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. pkg/jwt/routing_test.go

    		},
    		{
    			// if `.` exists, use `.` as separator
    			name: "@request.auth.claims.[key1]",
    			want: RoutingClaim{Match: true, Separator: Dot, Claims: []string{"[key1]"}},
    		},
    		{
    			name: "@request.auth.claims[key1]",
    			want: RoutingClaim{Match: true, Separator: Square, Claims: []string{"key1"}},
    		},
    		{
    			name: "@request.auth.claims[key1][key2]",
    			want: RoutingClaim{Match: true, Separator: Square, Claims: []string{"key1", "key2"}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 16:38:57 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/HierarchicalNameSerializer.java

        private void writeFirstOccurrenceOfName(String name, Encoder encoder) throws IOException {
            int separator = SEPARATOR_MATCHER.lastIndexIn(name);
            if (separator > 0) {
                String parent = name.substring(0, separator);
                String child = name.substring(separator + 1);
                encoder.writeByte((byte) name.charAt(separator));
                writeName(parent, encoder);
                writeName(child, encoder);
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/str/path.go

    			// was absolute, not relative. Keep the leading path separator so that it
    			// remains absolute when joined to prefix.
    		} else {
    			// Prefix ends in a regular path element, so strip the path separator that
    			// follows it.
    			trimmed = trimmed[1:]
    		}
    	}
    	return trimmed
    }
    
    // WithFilePathSeparator returns s with a trailing path separator, or the empty
    // string if s is empty.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:02 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/Splitter.java

       * Returns a splitter that uses the given single-character separator. For example, {@code
       * Splitter.on(',').split("foo,,bar")} returns an iterable containing {@code ["foo", "", "bar"]}.
       *
       * @param separator the character to recognize as a separator
       * @return a splitter, with default settings, that recognizes that separator
       */
      public static Splitter on(char separator) {
        return on(CharMatcher.is(separator));
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-filepath.h

      // it is called in CreateDirectoriesRecursively() assuming that it will change
      // a pathname from directory syntax (trailing separator) to filename syntax.
      //
      // On Windows this method also replaces the alternate path separator '/' with
      // the primary path separator '\\', so that for example "bar\\/\\foo" becomes
      // "bar\\foo".
    
      void Normalize();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster_cache.go

    	h := hash.New()
    	h.WriteString(t.clusterName)
    	h.Write(Separator)
    	h.WriteString(t.proxyVersion)
    	h.Write(Separator)
    	h.WriteString(util.LocalityToString(t.locality))
    	h.Write(Separator)
    	h.WriteString(t.proxyClusterID)
    	h.Write(Separator)
    	h.WriteString(strconv.FormatBool(t.proxySidecar))
    	h.Write(Separator)
    	h.WriteString(strconv.FormatBool(t.http2))
    	h.Write(Separator)
    	h.WriteString(strconv.FormatBool(t.downstreamAuto))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top