Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 155 for Parses (0.11 sec)

  1. internal/config/compress/compress.go

    			Value: config.EnableOff,
    		},
    		config.KV{
    			Key:   Extensions,
    			Value: DefaultExtensions,
    		},
    		config.KV{
    			Key:   MimeTypes,
    			Value: DefaultMimeTypes,
    		},
    	}
    )
    
    // Parses the given compression exclude list `extensions` or `content-types`.
    func parseCompressIncludes(include string) ([]string, error) {
    	includes := strings.Split(include, config.ValueSeparator)
    	for _, e := range includes {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/cc/convert_asset_args_test.cc

    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "mlir/IR/MLIRContext.h"  // from @llvm-project
    #include "mlir/IR/OwningOpRef.h"  // from @llvm-project
    #include "mlir/Parser/Parser.h"  // from @llvm-project
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_dialect.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. src/internal/buildcfg/exp.go

    // platforms that support it.
    //
    // Note: must agree with runtime.framepointer_enabled.
    var FramePointerEnabled = GOARCH == "amd64" || GOARCH == "arm64"
    
    // ParseGOEXPERIMENT parses a (GOOS, GOARCH, GOEXPERIMENT)
    // configuration tuple and returns the enabled and baseline experiment
    // flag sets.
    //
    // TODO(mdempsky): Move to internal/goexperiment.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:38:52 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. src/internal/trace/raw/textreader.go

    	if trace != "Trace" {
    		return nil, fmt.Errorf("failed to parse header")
    	}
    	gover, line := readToken(line)
    	if !strings.HasPrefix(gover, "Go1.") {
    		return nil, fmt.Errorf("failed to parse header Go version")
    	}
    	rawv, err := strconv.ParseUint(gover[len("Go1."):], 10, 64)
    	if err != nil {
    		return nil, fmt.Errorf("failed to parse header Go version: %v", err)
    	}
    	v := version.Version(rawv)
    	if !v.Valid() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/features/features.go

    			pre = fmt.Sprintf("%s - ", v.PreRelease)
    		}
    		known = append(known, fmt.Sprintf("%s=true|false (%sdefault=%t)", k, pre, v.Default))
    	}
    	sort.Strings(known)
    	return known
    }
    
    // NewFeatureGate parses a string of the form "key1=value1,key2=value2,..." into a
    // map[string]bool of known keys or returns an error.
    func NewFeatureGate(f *FeatureList, value string) (map[string]bool, error) {
    	featureGate := map[string]bool{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 13:55:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. src/runtime/pprof/vminfo_darwin_test.go

    		return 0, 0, false, fmt.Errorf("failed to parse vmmap output, vmmap did not report an error: %v", err)
    	}
    	return hi, lo, false, nil
    }
    
    // parseVmmap parses the output of vmmap and calls addMapping for the first r-x TEXT segment in the output.
    func parseVmmap(data []byte) (hi, lo uint64, err error) {
    	// vmmap 53799
    	// Process:         gopls [53799]
    	// Path:            /Users/USER/*/gopls
    	// Load Address:    0x1029a0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 19:59:50 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. src/crypto/tls/ech.go

    	PublicName    []byte
    	Extensions    []echExtension
    }
    
    var errMalformedECHConfig = errors.New("tls: malformed ECHConfigList")
    
    // parseECHConfigList parses a draft-ietf-tls-esni-18 ECHConfigList, returning a
    // slice of parsed ECHConfigs, in the same order they were parsed, or an error
    // if the list is malformed.
    func parseECHConfigList(data []byte) ([]echConfig, error) {
    	s := cryptobyte.String(data)
    	// Skip the length prefix
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/VersionNumber.java

        }
    
        public static VersionNumber parse(String versionString) {
            return DEFAULT_SCHEME.parse(versionString);
        }
    
        @Nullable
        private static String toLowerCase(@Nullable String string) {
            return string == null ? null : string.toLowerCase(Locale.ROOT);
        }
    
        public interface Scheme {
            VersionNumber parse(String value);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. src/crypto/x509/oid.go

    	"math/bits"
    	"strconv"
    	"strings"
    )
    
    var (
    	errInvalidOID = errors.New("invalid oid")
    )
    
    // An OID represents an ASN.1 OBJECT IDENTIFIER.
    type OID struct {
    	der []byte
    }
    
    // ParseOID parses a Object Identifier string, represented by ASCII numbers separated by dots.
    func ParseOID(oid string) (OID, error) {
    	var o OID
    	return o, o.unmarshalOIDText(oid)
    }
    
    func newOIDFromDER(der []byte) (OID, bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 19:10:38 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/mod/modfile/work.go

    type Use struct {
    	Path       string // Use path of module.
    	ModulePath string // Module path in the comment.
    	Syntax     *Line
    }
    
    // ParseWork parses and returns a go.work file.
    //
    // file is the name of the file, used in positions and errors.
    //
    // data is the content of the file.
    //
    // fix is an optional function that canonicalizes module versions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top