Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for endlines (0.29 sec)

  1. src/cmd/compile/internal/ir/func.go

    	// function literal numbering (e.g., runtime/trace_test.TestTraceSymbolize.func11).
    	funcLitGen  int32
    	rangeLitGen int32
    	goDeferGen  int32
    
    	Label int32 // largest auto-generated label in this function
    
    	Endlineno src.XPos
    	WBPos     src.XPos // position of first write barrier; see SetWBPos
    
    	Pragma PragmaFlag // go:xxx function annotations
    
    	flags bitset16
    
    	// ABI is a function's "definition" ABI. This is the ABI that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. cmd/storage-rest-client.go

    }
    
    // DeleteFile - deletes a file.
    func (client *storageRESTClient) Delete(ctx context.Context, volume string, path string, deleteOpts DeleteOptions) error {
    	if !deleteOpts.Immediate {
    		// add deadlines for all non-immediate purges
    		var cancel context.CancelFunc
    		ctx, cancel = context.WithTimeout(ctx, globalDriveConfig.GetMaxTimeout())
    		defer cancel()
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  3. src/runtime/netpoll.go

    	// because we can get ready notification from epoll/kqueue
    	// after the descriptor is closed/reused.
    	// Stale notifications are detected using seq variable,
    	// seq is incremented when deadlines are changed or descriptor is reused.
    }
    
    var (
    	netpollInitLock mutex
    	netpollInited   atomic.Uint32
    
    	pollcache      pollCache
    	netpollWaiters atomic.Uint32
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  4. cmd/server-main.go

    	setGlobalInternodeInterface(ctxt.Interface)
    
    	globalTCPOptions = xhttp.TCPOptions{
    		UserTimeout: int(ctxt.UserTimeout.Milliseconds()),
    		// FIXME: Bring this back when we have valid way to handle deadlines
    		//		DriveOPTimeout: globalDriveConfig.GetOPTimeout,
    		Interface:   ctxt.Interface,
    		SendBufSize: ctxt.SendBufSize,
    		RecvBufSize: ctxt.RecvBufSize,
    	}
    
    	// allow transport to be HTTP/1.1 for proxying.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (1)
  5. src/cmd/vendor/rsc.io/markdown/inline.go

    	}
    }
    
    func (p *parseState) skip(i int) {
    	p.emitted = i
    }
    
    func (p *parseState) inline(s string) []Inline {
    	s = trimSpaceTab(s)
    	// Scan text looking for inlines.
    	// Leaf inlines are converted immediately.
    	// Non-leaf inlines have potential starts pushed on a stack while we await completion.
    	// Links take priority over other emphasis, so the emphasis must be delayed.
    	p.s = s
    	p.list = nil
    	p.emitted = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  6. src/encoding/base32/base32_test.go

    		{r: badReader{data: []byte("MY======"), errs: []error{badErr}},
    			res: "f", err: badErr},
    		// Check a read error accompanied by input data consisting of newlines only is propagated.
    		{r: badReader{data: []byte("\n\n\n\n\n\n\n\n"), errs: []error{badErr, nil}},
    			res: "", err: badErr},
    		// Reader will be called twice.  The first time it will return 8 newline characters.  The
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 26K bytes
    - Viewed (0)
  7. src/net/textproto/reader.go

    // with a dot are escaped with an additional dot to avoid
    // looking like the end of the sequence.
    //
    // The decoded form returned by the Reader's Read method
    // rewrites the "\r\n" line endings into the simpler "\n",
    // removes leading dot escapes if present, and stops with error [io.EOF]
    // after consuming (and discarding) the end-of-sequence line.
    func (r *Reader) DotReader() io.Reader {
    	r.closeDot()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  8. src/cmd/cover/cover.go

    			mdb: mdb,
    		}
    	}
    	// TODO: process files in parallel here if it matters.
    	for k, name := range names {
    		if strings.ContainsAny(name, "\r\n") {
    			// annotateFile uses '//line' directives, which don't permit newlines.
    			log.Fatalf("cover: input path contains newline character: %q", name)
    		}
    
    		fd := os.Stdout
    		isStdout := true
    		if *pkgcfg != "" {
    			var err error
    			fd, err = os.Create(outputfiles[k])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  9. src/net/url/url.go

    		// any %-encoding it likes. That's different from the host, which
    		// can only %-encode non-ASCII bytes.
    		// We do impose some restrictions on the zone, to avoid stupidity
    		// like newlines.
    		zone := strings.Index(host[:i], "%25")
    		if zone >= 0 {
    			host1, err := unescape(host[:zone], encodeHost)
    			if err != nil {
    				return "", err
    			}
    			host2, err := unescape(host[zone:i], encodeZone)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
Back to top