Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 971 for space1 (0.38 sec)

  1. src/math/big/intconv.go

    		switch d := width - length; {
    		case s.Flag('-'):
    			// pad on the right with spaces; supersedes '0' when both specified
    			right = d
    		case s.Flag('0') && !precisionSet:
    			// pad with zeros unless precision also specified
    			zeros = d
    		default:
    			// pad on the left with spaces
    			left = d
    		}
    	}
    
    	// print number as [left pad][sign][prefix][zero pad][digits][right pad]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  2. hack/verify-description.sh

        echo "API file: ${file} should not contain descriptions in struct tags"
        result=1
      fi
      if grep json: "${file}" | grep -Ee ",[[:space:]]+omitempty|omitempty[[:space:]]+" ; then
        echo "API file: ${file} should not contain leading or trailing spaces for omitempty directive"
        result=1
      fi
    done
    
    internal_types_files="${KUBE_ROOT}/pkg/apis/core/types.go ${KUBE_ROOT}/pkg/apis/extensions/types.go"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:32 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. 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)
  4. src/encoding/xml/xml.go

    )
    
    // Apply name space translation to name n.
    // The default name space (for Space=="")
    // applies only to element names, not to attribute names.
    func (d *Decoder) translate(n *Name, isElementName bool) {
    	switch {
    	case n.Space == xmlnsPrefix:
    		return
    	case n.Space == "" && !isElementName:
    		return
    	case n.Space == xmlPrefix:
    		n.Space = xmlURL
    	case n.Space == "" && n.Local == xmlnsPrefix:
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  5. 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)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/c/CLanguageIntegrationTest.groovy

            '"quoted"'                         | 'quoted'
            '"with space"'                     | 'with space'
            '"with\\\\"quote\\\\"internal"'    | 'with"quote"internal'
            '"with \\\\"quote\\\\" and space"' | 'with "quote" and space'
        }
    
        @ToBeFixedForConfigurationCache
        def "compiler and linker args can contain quotes and spaces"() {
            given:
            buildFile << '''
            model {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  7. src/encoding/json/indent.go

    // any indentation, to make it easier to embed inside other formatted JSON data.
    // Although leading space characters (space, tab, carriage return, newline)
    // at the beginning of src are dropped, trailing space characters
    // at the end of src are preserved and copied to dst.
    // For example, if src has no trailing spaces, neither will dst;
    // if src ends in a trailing newline, so will dst.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 20:19:31 UTC 2023
    - 5.4K 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/vendor/rsc.io/markdown/html.go

    	// “A closing tag consists of the string </, a tag name,
    	// optional spaces, tabs, and up to one line ending, and the character >.”
    	if i+2 >= len(s) || s[i] != '<' || s[i+1] != '/' {
    		return nil, 0, false
    	}
    	if skipSpace(s, i+2) != i+2 {
    		// Goldmark allows spaces here but the spec and the Dingus do not.
    		p.corner = true
    	}
    
    	if _, j, ok := parseTagName(s, i+2); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top