Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,004 for spacer (0.13 sec)

  1. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/sink/GroupingProgressLogEventGeneratorTest.groovy

            then:
            1 * downstreamListener.onOutput({ it.toString() == "[LIFECYCLE] [category] <Normal>Header Execute :foo</Normal>" })
            then:
            0 * downstreamListener._
        }
    
        def "adds spacer line between build operations with log events and not between build operations with no log events"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  2. 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)
  3. src/encoding/xml/marshal_test.go

    		StartElement{Name{"", "foo"}, []Attr{
    			{Name{"space1", "a"}, "space1 value"},
    			{Name{"space2", "b"}, "space2 value"},
    		}},
    	},
    	want: `<foo xmlns:_xmlns="xmlns" _xmlns:x="space1"><foo _xmlns:x="space2"><foo xmlns:space1="space1" space1:a="space1 value" xmlns:space2="space2" space2:b="space2 value"></foo></foo><foo xmlns:space1="space1" space1:a="space1 value" xmlns:space2="space2" space2:b="space2 value">`,
    }, {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  4. cluster/addons/fluentd-gcp/scaler-deployment.yaml

    kind: Deployment
    metadata:
      name: fluentd-gcp-scaler
      namespace: kube-system
      labels:
        k8s-app: fluentd-gcp-scaler
        version: v0.5.1
        addonmanager.kubernetes.io/mode: Reconcile
    spec:
      selector:
        matchLabels:
          k8s-app: fluentd-gcp-scaler
      template:
        metadata:
          labels:
            k8s-app: fluentd-gcp-scaler
        spec:
          serviceAccountName: fluentd-gcp-scaler
          containers:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 07 17:58:57 UTC 2023
    - 972 bytes
    - Viewed (0)
  5. operator/pkg/object/testdata/well-formed-with-space.yaml

    # there are some spaces at the end
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: myconfigmap
      namespace: default
    data:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 19:39:36 UTC 2023
    - 182 bytes
    - Viewed (0)
  6. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/Packer.java

     * limitations under the License.
     */
    
    package org.gradle.caching.internal.tasks;
    
    import java.io.IOException;
    import java.util.List;
    
    interface Packer {
        void pack(List<DataSource> inputs, DataTarget output) throws IOException;
        void unpack(DataSource input, DataTargetFactory targetFactory) throws IOException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 899 bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top