Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 470 for spacer (0.12 sec)

  1. src/cmd/go/testdata/script/gccgo_link_ldflags.txt

    # Test that #cgo LDFLAGS are properly quoted.
    # The #cgo LDFLAGS below should pass a string with spaces to -L,
    # as though searching a directory with a space in its name.
    # It should not pass --nosuchoption to the external linker.
    
    [!cgo] skip
    
    go build
    
    [!exec:gccgo] skip
    
    # TODO: remove once gccgo on builder is updated
    [GOOS:aix] [GOARCH:ppc64] skip
    
    go build -compiler gccgo
    
    -- go.mod --
    module m
    -- cgo.go --
    package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 06:52:47 UTC 2023
    - 499 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/cgo_path_space.txt

    ! exists $WORK/log.txt
    ? go build -x
    exists $WORK/log.txt
    rm $WORK/log.txt
    
    # TODO(#41400, #43078): when CC is set explicitly, it should be allowed to
    # contain spaces separating arguments, and it should be possible to quote
    # arguments with spaces (including the path), as in CGO_CFLAGS and other
    # variables. For now, this doesn't work.
    [!GOOS:windows] env CC=$WORK/'program files'/gcc
    [GOOS:windows] env CC=$WORK\'program files'\gcc.bat
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  3. cmd/signature-v4-parser.go

    	// credElement is fetched first to skip replacing the space in access key.
    	credElement := strings.TrimPrefix(strings.Split(strings.TrimSpace(v4Auth), ",")[0], signV4Algorithm)
    	// Replace all spaced strings, some clients can send spaced
    	// parameters and some won't. So we pro-actively remove any spaces
    	// to make parsing easier.
    	v4Auth = strings.ReplaceAll(v4Auth, " ", "")
    	if v4Auth == "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. src/unicode/graphic.go

    // characters include letters, marks, numbers, punctuation, symbols, and the
    // ASCII space character, from categories [L], [M], [N], [P], [S] and the ASCII space
    // character. This categorization is the same as [IsGraphic] except that the
    // only spacing character is ASCII space, U+0020.
    func IsPrint(r rune) bool {
    	if uint32(r) <= MaxLatin1 {
    		return properties[uint8(r)]&pp != 0
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. src/go/doc/synopsis.go

    	"author",
    }
    
    // Synopsis returns a cleaned version of the first sentence in text.
    // That sentence ends after the first period followed by space and not
    // preceded by exactly one uppercase letter, or at the first paragraph break.
    // The result string has no \n, \r, or \t characters and uses only single
    // spaces between words. If text starts with any of the [IllegalPrefixes],
    // the result is the empty string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/rsc.io/markdown/code.go

    				break
    			}
    			// var iline string
    			// is := initialSpaces(line)
    			// if is < 4 {
    			// 	iline = "    " + line
    			// } else {
    			// 	iline = "\t" + line[4:]
    			// }
    			// Indent by 4 spaces.
    			pre := s.prefix
    			if i == 0 {
    				pre = prefix1
    			}
    			fmt.Fprintf(buf, "%s%s%s\n", pre, "    ", line)
    		}
    	} else {
    		fmt.Fprintf(buf, "%s%s\n", prefix1, b.Fence)
    		for _, line := range b.Text {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top