Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 627 for kSeparator (0.17 sec)

  1. tensorflow/compiler/mlir/init_mlir.cc

          "https://github.com/tensorflow/tensorflow/issues with the trace "
          "below.\n");
    
      constexpr char kSeparator[] = "--";
    
      // Find index of separator between two sets of flags.
      int pass_remainder = 1;
      bool split = false;
      for (int i = 0; i < *argc; ++i) {
        if (llvm::StringRef((*argv)[i]) == kSeparator) {
          pass_remainder = i;
          *argc -= (i + 1);
          split = true;
          break;
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 10:03:56 UTC 2024
    - 2.1K 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. 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)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-filepath.h

      //
      // 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();
    
      // Returns a pointer to the last occurrence of a valid path separator in
      // the FilePath. On Windows, for example, both '/' and '\' are valid path
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  6. 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)
  7. src/os/path_plan9.go

    // license that can be found in the LICENSE file.
    
    package os
    
    const (
    	PathSeparator     = '/'    // OS-specific path separator
    	PathListSeparator = '\000' // OS-specific path list separator
    )
    
    // IsPathSeparator reports whether c is a directory separator character.
    func IsPathSeparator(c uint8) bool {
    	return PathSeparator == c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:38:09 UTC 2024
    - 443 bytes
    - Viewed (0)
  8. 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)
  9. subprojects/core/src/test/groovy/org/gradle/util/LineBufferingOutputStreamTest.groovy

            then:
            1 * action.text("line 1" + separator)
            1 * action.text("line 2" + separator)
        }
    
        def logsLineWhichIsLongerThanInitialBufferLength() {
            when:
            final String separator = "-"
            LineBufferingOutputStream outputStream = new LineBufferingOutputStream(action, separator, 8)
            outputStream.write("a line longer than 8 bytes long-".getBytes())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:08 UTC 2021
    - 5.3K bytes
    - Viewed (0)
  10. android/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)
Back to top