Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 371 for separators (0.18 sec)

  1. src/cmd/compile/internal/types2/expr.go

    			// are not meaningful; and excessively long constants may
    			// consume a lot of space and time for a useless conversion.
    			// Cap constant length with a generous upper limit that also
    			// allows for separators between all digits.
    			const limit = 10000
    			if len(e.Value) > limit {
    				check.errorf(e, InvalidConstVal, "excessively long constant: %s... (%d chars)", e.Value[:10], len(e.Value))
    				goto Error
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/Project.java

        void setDescription(@Nullable String description);
    
        /**
         * <p>Returns the group of this project. Gradle always uses the {@code toString()} value of the group. The group
         * defaults to the path with dots as separators.</p>
         *
         * @return The group of this project. Never returns null.
         */
        Object getGroup();
    
        /**
         * <p>Sets the group of this project.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  3. 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)
  4. src/testing/testing.go

    		nonExistent = os.IsNotExist(err)
    		if err != nil && !nonExistent {
    			c.Fatalf("TempDir: %v", err)
    		}
    	}
    
    	if nonExistent {
    		c.Helper()
    
    		// Drop unusual characters (such as path separators or
    		// characters interacting with globs) from the directory name to
    		// avoid surprising os.MkdirTemp behavior.
    		mapper := func(r rune) rune {
    			if r < utf8.RuneSelf {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/io/src/main/java/org/gradle/internal/io/LineBufferingOutputStream.java

            output.write(b);
            counter++;
            if (endsWithLineSeparator(b) || counter >= lineMaxLength) {
                flush();
            }
        }
    
        // only check for the last byte of a multi-byte line separator
        // besides this, always check for '\n'
        // this handles '\r' (MacOSX 9), '\r\n' (Windows) and '\n' (Linux/Unix/MacOSX 10)
        private boolean endsWithLineSeparator(int b) {
            byte currentByte = (byte) (b & 0xff);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:14 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. istioctl/pkg/util/handlers/handlers.go

    		separator := strings.LastIndex(name[idx:], ".")
    		if separator < 0 {
    			return name, namespace
    		}
    
    		return name[0 : idx+separator], name[idx+separator+1:]
    	}
    	separator := strings.LastIndex(name, ".")
    	if separator < 0 {
    		return name, namespace
    	}
    
    	return name[0:separator], name[separator+1:]
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 06 15:01:41 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultProblemCategory.java

     */
    public class DefaultProblemCategory implements ProblemCategory, Serializable {
    
        public static final String GRADLE_CORE_NAMESPACE = "org.gradle";
        private static final String SEPARATOR = Path.SEPARATOR;
    
        private final String namespace;
        private final String category;
        private final List<String> subcategories;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top