Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,402 for spacer (1.15 sec)

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

    	errTagValueSpace  = errors.New("suspicious space in struct tag value")
    	errTagSpace       = errors.New("key:\"value\" pairs not separated by spaces")
    )
    
    // validateStructTag parses the struct tag and returns an error if it is not
    // in the canonical format, which is a space-separated list of key:"value"
    // settings. The value may contain spaces.
    func validateStructTag(tag string) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  2. src/cmd/gofmt/internal.go

    	// Determine and prepend leading space.
    	i, j := 0, 0
    	for j < len(src) && isSpace(src[j]) {
    		if src[j] == '\n' {
    			i = j + 1 // byte offset of last line in leading space
    		}
    		j++
    	}
    	var res []byte
    	res = append(res, src[:i]...)
    
    	// Determine and prepend indentation of first code line.
    	// Spaces are ignored unless there are no tabs,
    	// in which case spaces count as one tab.
    	indent := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 28 14:23:08 UTC 2020
    - 5K bytes
    - Viewed (0)
  3. src/go/format/internal.go

    	// Determine and prepend leading space.
    	i, j := 0, 0
    	for j < len(src) && isSpace(src[j]) {
    		if src[j] == '\n' {
    			i = j + 1 // byte offset of last line in leading space
    		}
    		j++
    	}
    	var res []byte
    	res = append(res, src[:i]...)
    
    	// Determine and prepend indentation of first code line.
    	// Spaces are ignored unless there are no tabs,
    	// in which case spaces count as one tab.
    	indent := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 28 14:23:08 UTC 2020
    - 5K bytes
    - Viewed (0)
  4. cluster/addons/fluentd-gcp/scaler-rbac.yaml

    kind: RoleBinding
    metadata:
      name: fluentd-gcp-scaler-binding
      namespace: kube-system
      labels:
        kubernetes.io/cluster-service: "true"
        addonmanager.kubernetes.io/mode: Reconcile
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: Role
      name: system:fluentd-gcp-scaler
    subjects:
    - kind: ServiceAccount
      name: fluentd-gcp-scaler
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 13 17:23:39 UTC 2019
    - 1009 bytes
    - Viewed (0)
  5. cluster/addons/fluentd-gcp/scaler-policy.yaml

    Marian Lobur <******@****.***> 1618829053 +0200
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 19 14:01:46 UTC 2021
    - 485 bytes
    - Viewed (0)
  6. 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)
  7. tensorflow/compiler/mlir/tensorflow/tests/isolate-placer.mlir

    Adrian Kuegel <******@****.***> 1648469008 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top