Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 78 for Interpret (0.17 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/AnsiConsoleUtil.java

         */
        private static OutputStream wrapOutputStream(final OutputStream stream, int fileno) {
    
            // If the jansi.passthrough property is set, then don't interpret
            // any of the ansi sequences.
            if (Boolean.getBoolean("jansi.passthrough")) {
                return stream;
            }
    
            // If the jansi.strip property is set, then we just strip the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/testdata/flowgraph_generator1.go

    	cond  bool  // block ends in conditional
    	succs [2]int64
    }
    
    // strings2blocks converts a slice of strings specifying
    // successors into a slice of blo encoding the blocks in a
    // common form easy to execute or interpret.
    func strings2blocks(blocks []string, fname string, i int) (bs []blo, cond uint) {
    	bs = make([]blo, len(blocks))
    	edge := int64(1)
    	cond = 0
    	k := uint(0)
    	for j, s := range blocks {
    		if j == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 6.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/primitives/ParseRequest.java

     * the License.
     */
    
    package com.google.common.primitives;
    
    import com.google.common.annotations.GwtCompatible;
    
    /** A string to be parsed as a number and the radix to interpret it in. */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    final class ParseRequest {
      final String rawValue;
      final int radix;
    
      private ParseRequest(String rawValue, int radix) {
        this.rawValue = rawValue;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:09:25 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/model/annotations/InputPropertyAnnotationHandler.java

                        .severity(Severity.ERROR)
                        .details("A property of type '" + ModelType.of(valueType).getDisplayName() + "' annotated with @Input cannot determine how to interpret the file")
                        .solution("Annotate with @InputFile for regular files")
                        .solution("Annotate with @InputFiles for collections of files")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/web/url_windows.go

    	"strings"
    )
    
    func convertFileURLPath(host, path string) (string, error) {
    	if len(path) == 0 || path[0] != '/' {
    		return "", errNotAbsolute
    	}
    
    	path = filepath.FromSlash(path)
    
    	// We interpret Windows file URLs per the description in
    	// https://blogs.msdn.microsoft.com/ie/2006/12/06/file-uris-in-windows/.
    
    	// The host part of a file URL (if any) is the UNC volume name,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:43:51 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_get_commit.txt

    grep 'rsc.io/quote v0.0.0-20180214005840-23179ee8a569' go.mod
    
    # but as commit should record as v1.5.1
    go get rsc.io/quote@23179ee8
    grep 'rsc.io/quote v1.5.1' go.mod
    
    # go mod edit -require does not interpret commits
    go mod edit -require rsc.io/quote@23179ee
    grep 'rsc.io/quote 23179ee' go.mod
    
    # but other commands fix them
    go list -m -mod=mod all
    grep 'rsc.io/quote v1.5.1' go.mod
    
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 21 20:57:57 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXBuildFile.java

     * the particular phase referencing this object, e.g.:
     *
     * - {@link PBXSourcesBuildPhase } may read <code>{"COMPILER_FLAGS": "-foo"}</code> and interpret
     * that this file should be compiled with the additional flag {@code "-foo" }.
     */
    public class PBXBuildFile extends PBXProjectItem {
        private final PBXReference fileRef;
        private Optional<NSDictionary> settings;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/discovery/v1beta1/generated.proto

    message EndpointConditions {
      // ready indicates that this endpoint is prepared to receive traffic,
      // according to whatever system is managing the endpoint. A nil value
      // indicates an unknown state. In most cases consumers should interpret this
      // unknown state as ready. For compatibility reasons, ready should never be
      // "true" for terminating endpoints.
      // +optional
      optional bool ready = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. pkg/apis/discovery/types.go

    	// ready indicates that this endpoint is prepared to receive traffic,
    	// according to whatever system is managing the endpoint. A nil value
    	// indicates an unknown state. In most cases consumers should interpret this
    	// unknown state as ready. For compatibility reasons, ready should never be
    	// "true" for terminating endpoints, except when the normal readiness
    	// behavior is being explicitly overridden, for example when the associated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 16 21:38:06 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/cases/trieval.go

    //	         Only 13..8 are used for XOR patterns.
    //	      7  inverseFold (fold to upper, not to lower)
    //	      6  index: interpret the XOR pattern as an index
    //	         or isMid if case mode is cIgnorableUncased.
    //	   5..4  CCC: zero (normal or break), above or other
    //	}
    //	   3  exception: interpret this value as an exception index
    //	      (TODO: is this bit necessary? Probably implied from case mode.)
    //	2..0  case mode
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top