Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,813 for Leading (0.34 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/swagger_doc_generator.go

    	for _, line := range strings.Split(rawDoc, "\n") {
    		line = strings.TrimRight(line, " ")
    		leading := strings.TrimLeft(line, " ")
    		switch {
    		case len(line) == 0: // Keep paragraphs
    			delPrevChar()
    			buffer.WriteString("\n\n")
    		case strings.HasPrefix(leading, "TODO"): // Ignore one line TODOs
    		case strings.HasPrefix(leading, "+"): // Ignore instructions to the generators
    		default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 03 07:33:58 UTC 2017
    - 7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/versions/gover.go

    		return gover{}
    	}
    
    	return v
    }
    
    // cutInt scans the leading decimal number at the start of x to an integer
    // and returns that value and the rest of the string.
    func cutInt(x string) (n, rest string, ok bool) {
    	i := 0
    	for i < len(x) && '0' <= x[i] && x[i] <= '9' {
    		i++
    	}
    	if i == 0 || x[0] == '0' && i != 1 { // no digits or unnecessary leading zero
    		return "", "", false
    	}
    	return x[:i], x[i:], true
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:52:54 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/DerWriter.kt

       */
      var typeHint: Any?
        get() = typeHintStack.lastOrNull()
        set(value) {
          typeHintStack[typeHintStack.size - 1] = value
        }
    
      /** Names leading to the current location in the ASN.1 document. */
      private val path = mutableListOf<String>()
    
      /**
       * False unless we made a recursive call to [write] at the current stack frame. The explicit box
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/mod/semver/semver.go

    // In this package, semantic version strings must begin with a leading "v",
    // as in "v1.0.0".
    //
    // The general form of a semantic version string accepted by this package is
    //
    //	vMAJOR[.MINOR[.PATCH[-PRERELEASE][+BUILD]]]
    //
    // where square brackets indicate optional parts of the syntax;
    // MAJOR, MINOR, and PATCH are decimal integers without extra leading zeros;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  5. src/encoding/json/tags.go

    // license that can be found in the LICENSE file.
    
    package json
    
    import (
    	"strings"
    )
    
    // tagOptions is the string following a comma in a struct field's "json"
    // tag, or the empty string. It does not include the leading comma.
    type tagOptions string
    
    // parseTag splits a struct field's json tag into its name and
    // comma-separated options.
    func parseTag(tag string) (string, tagOptions) {
    	tag, opt, _ := strings.Cut(tag, ",")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 972 bytes
    - Viewed (0)
  6. src/go/printer/gobuild.go

    	// Note that we are processing tabwriter input, so every comment
    	// begins and ends with a tabwriter.Escape byte.
    	// And some newlines have turned into \f bytes.
    	insert := 0
    	for pos := 0; ; {
    		// Skip leading space at beginning of line.
    		blank := true
    		for pos < len(p.output) && (p.output[pos] == ' ' || p.output[pos] == '\t') {
    			pos++
    		}
    		// Skip over // comment if any.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. src/math/big/intconv.go

    // 'X' (uppercase hexadecimal).
    // Also supported are the full suite of package fmt's format
    // flags for integral types, including '+' and ' ' for sign
    // control, '#' for leading zero in octal and for hexadecimal,
    // a leading "0x" or "0X" for "%#x" and "%#X" respectively,
    // specification of minimum digits precision, output field
    // width, space or zero padding, and '-' for left or right
    // justification.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  8. releasenotes/notes/fix-concurrency.yaml

        This often led to gateways running with concurrency based on the number of physical cores on the host machine,
        despite having CPU limits, leading to decreased performance and increased resource usage.
        
        In this release, concurrency configuration has been tweaked to be consistent across deployment types.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 13 11:53:23 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/scripts/ScriptingLanguage.java

     */
    package org.gradle.scripts;
    
    /**
     * Scripting language provider metadata.
     *
     * @since 4.0
     */
    public interface ScriptingLanguage {
    
        /**
         * Returns the file extension (including the leading dot) for scripts written in this scripting language.
         */
        String getExtension();
    
        /**
         * Returns the fully qualified class name of the scripting language provider for this scripting language.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 05 16:56:21 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  10. src/strconv/decimal.go

    const maxShift = uintSize - 4
    
    // Binary shift right (/ 2) by k bits.  k <= maxShift to avoid overflow.
    func rightShift(a *decimal, k uint) {
    	r := 0 // read pointer
    	w := 0 // write pointer
    
    	// Pick up enough leading digits to cover first shift.
    	var n uint
    	for ; n>>k == 0; r++ {
    		if r >= a.nd {
    			if n == 0 {
    				// a == 0; shouldn't get here, but handle anyway.
    				a.nd = 0
    				return
    			}
    			for n>>k == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jul 15 19:41:25 UTC 2017
    - 11K bytes
    - Viewed (0)
Back to top