Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,089 for Trailing (0.13 sec)

  1. src/runtime/checkptr.go

    // the address p.
    //
    // Importantly, if p1 and p2 point into the same variable, then
    // checkptrBase(p1) == checkptrBase(p2). However, the converse/inverse
    // is not necessarily true as allocations can have trailing padding,
    // and multiple variables may be packed into a single allocation.
    //
    // checkptrBase should be an internal detail,
    // but widely used packages access it using linkname.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. src/go/printer/printer.go

    	// output is buffered in p.output now.
    	// fix //go:build and // +build comments if needed.
    	p.fixGoBuildLines()
    
    	// redirect output through a trimmer to eliminate trailing whitespace
    	// (Input to a tabwriter must be untrimmed since trailing tabs provide
    	// formatting information. The tabwriter could provide trimming
    	// functionality but no tabwriter is used when RawFormat is set.)
    	output = &trimmer{output: output}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  3. pkg/kubelet/util/swap/swap_util.go

    }
    
    // gets /proc/swaps's content as an input, returns true if swap is enabled.
    func isSwapOnAccordingToProcSwaps(procSwapsContent []byte) bool {
    	procSwapsContent = bytes.TrimSpace(procSwapsContent) // extra trailing \n
    	procSwapsStr := string(procSwapsContent)
    	procSwapsLines := strings.Split(procSwapsStr, "\n")
    
    	// If there is more than one line (table headers) in /proc/swaps then swap is enabled
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 10:07:06 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. src/net/http/server.go

    // The patterns conflict.
    //
    // # Trailing-slash redirection
    //
    // Consider a [ServeMux] with a handler for a subtree, registered using a trailing slash or "..." wildcard.
    // If the ServeMux receives a request for the subtree root without a trailing slash,
    // it redirects the request by adding the trailing slash.
    // This behavior can be overridden with a separate registration for the path without
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/str/path.go

    		} else {
    			// Prefix ends in a regular path element, so strip the path separator that
    			// follows it.
    			trimmed = trimmed[1:]
    		}
    	}
    	return trimmed
    }
    
    // WithFilePathSeparator returns s with a trailing path separator, or the empty
    // string if s is empty.
    func WithFilePathSeparator(s string) string {
    	if s == "" || os.IsPathSeparator(s[len(s)-1]) {
    		return s
    	}
    	return s + string(filepath.Separator)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:02 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/HeadersJvmTest.kt

      }
    
      @Test fun addParsing() {
        val headers =
          Headers.Builder()
            .add("foo: bar")
            .add(" foo: baz") // Name leading whitespace is trimmed.
            .add("foo : bak") // Name trailing whitespace is trimmed.
            .add("\tkey\t:\tvalue\t") // '\t' also counts as whitespace
            .add("ping:  pong  ") // Value whitespace is trimmed.
            .add("kit:kat") // Space after colon is not required.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. src/strings/replace.go

    //	n7  .y+
    //
    // n0 is the root node, and its children are n1, n4 and n6; n1's children are
    // n2 and n3; n4's child is n5; n6's child is n7. Nodes n0, n1 and n4 (marked
    // with a trailing "-") are partial keys, and nodes n2, n3, n5, n6 and n7
    // (marked with a trailing "+") are complete keys.
    type trieNode struct {
    	// value is the value of the trie node's key/value pair. It is empty if
    	// this node is not a complete key.
    	value string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:10:31 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  8. internal/s3select/sql/parser.go

    	From     *PrimaryTerm `parser:" \"FROM\" @@ \")\" "`
    }
    
    // TrimFunc represents TRIM sql function
    type TrimFunc struct {
    	TrimWhere *string      `parser:" \"TRIM\" \"(\" ( @( \"LEADING\" | \"TRAILING\" | \"BOTH\" ) "`
    	TrimChars *PrimaryTerm `parser:"             @@?  "`
    	TrimFrom  *PrimaryTerm `parser:"             \"FROM\" )? @@ \")\" "`
    }
    
    // DateAddFunc represents the DATE_ADD function
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  9. src/text/template/parse/lex.go

    // does the job.
    const (
    	spaceChars    = " \t\r\n"  // These are the space characters defined by Go itself.
    	trimMarker    = '-'        // Attached to left/right delimiter, trims trailing spaces from preceding/following text.
    	trimMarkerLen = Pos(1 + 1) // marker plus space before or after
    )
    
    // stateFn represents the state of the scanner as a function that returns the next state.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 22:36:12 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  10. pkg/test/util/file/file.go

    }
    
    // NormalizePath expands the homedir (~) and returns an error if the file doesn't exist.
    func NormalizePath(originalPath string) (string, error) {
    	if originalPath == "" {
    		return "", nil
    	}
    	// trim leading/trailing spaces from the path and if it uses the homedir ~, expand it.
    	var err error
    	out := strings.TrimSpace(originalPath)
    	out, err = homedir.Expand(out)
    	if err != nil {
    		return "", err
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 17 02:22:22 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top