Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 440 for spacer (0.46 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    	// '-' is a width modifier, always valid.
    	// '.' is a precision for float, max width for strings.
    	// '+' is required sign for numbers, Go format for %v.
    	// '#' is alternate format for several verbs.
    	// ' ' is spacer for numbers
    	{'%', noFlag, 0},
    	{'b', sharpNumFlag, argInt | argFloat | argComplex | argPointer},
    	{'c', "-", argRune | argInt},
    	{'d', numFlag, argInt | argPointer},
    	{'e', sharpNumFlag, argFloat | argComplex},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  2. src/fmt/doc.go

    the input. Unless the run of spaces in the format string
    appears adjacent to a newline, the run must consume at least
    one space from the input or find the end of the input.
    
    The handling of spaces and newlines differs from that of C's
    scanf family: in C, newlines are treated as any other space,
    and it is never an error when a run of spaces in the format
    string finds no spaces to consume in the input.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  3. doc/next/6-stdlib/99-minor/net/http/64910.md

    The patterns used by [ServeMux] now allow one or more spaces or tabs after the method name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:44:13 UTC 2024
    - 139 bytes
    - Viewed (0)
  4. cmd/http-tracer.go

    Klaus Post <******@****.***> 1717429554 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:45:54 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. src/fmt/scan.go

    		fmtc, w := utf8.DecodeRuneInString(format[i:])
    
    		// Space processing.
    		// In the rest of this comment "space" means spaces other than newline.
    		// Newline in the format matches input of zero or more spaces and then newline or end-of-input.
    		// Spaces in the format before the newline are collapsed into the newline.
    		// Spaces in the format after the newline match zero or more spaces after the corresponding input newline.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  6. cmd/signature-v4-utils.go

    }
    
    // Trim leading and trailing spaces and replace sequential spaces with one space, following Trimall()
    // in http://docs.aws.amazon.com/general/latest/gr/sigv4-create-canonical-request.html
    func signV4TrimAll(input string) string {
    	// Compress adjacent spaces (a space is determined by
    	// unicode.IsSpace() internally here) to one space and return
    	return strings.Join(strings.Fields(input), " ")
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. src/net/textproto/reader.go

    // ReadContinuedLine reads a possibly continued line from r,
    // eliding the final trailing ASCII white space.
    // Lines after the first are considered continuations if they
    // begin with a space or tab character. In the returned data,
    // continuation lines are separated from the previous line
    // only by a single space: the newline and leading white space
    // are removed.
    //
    // For example, consider this input:
    //
    //	Line 1
    //	  continued...
    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. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestNameTestDirectoryProvider.java

            super(root, klass);
        }
    
        private static String determineTestDirectoryName(Class<?> klass) {
            // NOTE: the space in the directory name is intentional to shake out problems with paths that contain spaces
            // NOTE: and so is the "s with circumflex" character (U+015D), to shake out problems with non-ASCII folder names
            return shouldUseNonAsciiPath(klass)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginIntegrationTest.groovy

                    environment ${envVar}: '-DFOO="with a space"'
                }
            """
            succeeds('execStartScript')
    
            then:
            outputContains("FOO: with a space")
    
            where:
            envVar << ["JAVA_OPTS", "SAMPLE_OPTS"]
        }
    
        @Requires(UnitTestPreconditions.UnixDerivative)
        def "environment variables can have spaces in their values that should be treated as separate tokens"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/util.go

    // Not even worth sorting.
    var regSpace []regSet
    
    /*
    	Each architecture defines a register space as a unique
    	integer range.
    	Here is the list of architectures and the base of their register spaces.
    */
    
    const (
    	// Because of masking operations in the encodings, each register
    	// space should start at 0 modulo some power of 2.
    	RBase386     = 1 * 1024
    	RBaseAMD64   = 2 * 1024
    	RBaseARM     = 3 * 1024
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top