Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 574 for Unparsed (0.15 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/version/version_test.go

    		{version: "1.2.3.4.5", unparsed: "1.2.3.4.5"},
    		{version: "1.9.0", unparsed: "1.9.0"},
    		{version: "1.9.0.0.0.0.0.0", unparsed: "1.9.0.0.0.0.0.0", equalsPrev: true},
    		{version: "1.10.0", unparsed: "1.10.0"},
    		{version: "1.11.0", unparsed: "1.11.0"},
    		{version: "1.11.0.0.5", unparsed: "1.11.0.0.5"},
    		{version: "2.0.0", unparsed: "2.0.0"},
    		{version: "2.1.0", unparsed: "2.1.0"},
    		{version: "2.1.1", unparsed: "2.1.1"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 18 19:25:29 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  2. src/net/http/cookie.go

    		case "path":
    			c.Path = val
    			continue
    		case "partitioned":
    			c.Partitioned = true
    			continue
    		}
    		c.Unparsed = append(c.Unparsed, parts[i])
    	}
    	return c, nil
    }
    
    // readSetCookies parses all "Set-Cookie" values from
    // the header h and returns the successfully parsed Cookies.
    func readSetCookies(h Header) []*Cookie {
    	cookieCount := len(h["Set-Cookie"])
    	if cookieCount == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/tests/make_test_graphs.py

      parser.add_argument(
          '--out_dir',
          type=str,
          default='',
          help='Output directory for graphs, checkpoints and savers.')
      FLAGS, unparsed = parser.parse_known_args()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 15 15:25:23 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  4. src/internal/trace/batch.go

    	"fmt"
    	"io"
    
    	"internal/trace/event"
    	"internal/trace/event/go122"
    )
    
    // timestamp is an unprocessed timestamp.
    type timestamp uint64
    
    // batch represents a batch of trace events.
    // It is unparsed except for its header.
    type batch struct {
    	m    ThreadID
    	time timestamp
    	data []byte
    	exp  event.Experiment
    }
    
    func (b *batch) isStringsBatch() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. pkg/test/echo/response.go

    	RequestURL string
    	// Method used (for HTTP).
    	Method string
    	// Protocol used for the request.
    	Protocol string
    	// Alpn value (for HTTP).
    	Alpn string
    	// RawContent is the original unparsed content for this response
    	RawContent string
    	// ID is a unique identifier of the resource in the response
    	ID string
    	// URL is the url the request is sent to
    	URL string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 01 01:05:45 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  6. src/internal/trace/event.go

    	Args []uint64
    
    	// Data is additional unparsed data that is associated with the experimental event.
    	// Data is likely to be shared across many ExperimentalEvents, so callers that parse
    	// Data are encouraged to cache the parse result and look it up by the value of Data.
    	Data *ExperimentalData
    }
    
    // ExperimentalData represents some raw and unparsed sidecar data present in the trace that is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  7. src/internal/trace/base.go

    	// parsing but haven't come directly from the trace, so
    	// they don't appear in strings.
    	extraStrings   []string
    	extraStringIDs map[string]extraStringID
    	nextExtra      extraStringID
    
    	// expData contains extra unparsed data that is accessible
    	// only to ExperimentEvent via an EventExperimental event.
    	expData map[event.Experiment]*ExperimentalData
    }
    
    // addExtraString adds an extra string to the evTable and returns
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/test/testflag.go

    helpLoop:
    	for _, arg := range explicitArgs {
    		switch arg {
    		case "--":
    			break helpLoop
    		case "-h", "-help", "--help":
    			testHelp = true
    			break helpLoop
    		}
    	}
    
    	// Forward any unparsed arguments (following --args) to the test binary.
    	return packageNames, append(injectedFlags, explicitArgs...)
    }
    
    func exitWithUsage() {
    	fmt.Fprintf(os.Stderr, "usage: %s\n", CmdTest.UsageLine)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/http2/hpack/hpack.go

    // header blocks.
    type Decoder struct {
    	dynTab dynamicTable
    	emit   func(f HeaderField)
    
    	emitEnabled bool // whether calls to emit are enabled
    	maxStrLen   int  // 0 means unlimited
    
    	// buf is the unparsed buffer. It's only written to
    	// saveBuf if it was truncated in the middle of a header
    	// block. Because it's usually not owned, we can only
    	// process it under Write.
    	buf []byte // not owned; only valid during Write
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 14 18:30:34 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/rust.go

    		if o == NoTemplateParams {
    			rst.noGenericArgs = true
    		} else if isMaxLength(o) {
    			rst.max = maxLength(o)
    		}
    	}
    
    	rst.symbolName()
    
    	if len(rst.str) > 0 {
    		rst.fail("unparsed characters at end of mangled name")
    	}
    
    	if suffix != "" {
    		llvmStyle := false
    		for _, o := range options {
    			if o == LLVMStyle {
    				llvmStyle = true
    				break
    			}
    		}
    		if llvmStyle {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 23.3K bytes
    - Viewed (0)
Back to top