Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,423 for Trailing (0.24 sec)

  1. src/archive/tar/testdata/trailing-slash.tar

    Caio Marcelo de Oliveira Filho <******@****.***> 1514852203 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 18:36:49 UTC 2018
    - 2.5K bytes
    - Viewed (0)
  2. security/pkg/pki/testdata/cert-chain-trailing-line.pem

    sschepens <******@****.***> 1717506007 -0300
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 13:00:07 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/ingress/testdata/simple.yaml

              service:
                name: service1
                port:
                  number: 4200
            # Subpath without trailing /
          - path: /sub/path
            backend:
              service:
                name: service1
                port:
                  number: 4201
          # With a trailing /
          - path: /sub/path/
            backend:
              service:
                name: service1
                port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 10 16:43:09 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/util/documentation.go

    func LongDesc(s string) string {
    	// Strip beginning and trailing space characters (including empty lines) and split the lines into a slice
    	lines := strings.Split(strings.TrimSpace(s), "\n")
    
    	output := []string{}
    	paragraph := []string{}
    
    	for _, line := range lines {
    		// Remove indentation and trailing spaces from the current line
    		trimmedLine := strings.TrimSpace(line)
    		if trimmedLine == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 24 11:40:55 UTC 2019
    - 4.4K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/ops/gen/cpp/renderers/renderer.h

      // Note: do *not* include a trailing semicolon in the statement text.
      Renderer &Statement(const string &text);
      template <typename... Args>
      Renderer Statement(absl::string_view text, const Args &...args) {
        return Statement(absl::Substitute(text, args...));
      }
    
      // Indent and append a call to a TF method returning a Status to check.
      // Note: do *not* include a trailing semicolon in the statement text.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/api/validation/generic_test.go

    			expectedAfterMasking: "-foa",
    			description:          "has both leading and trailing dashes",
    		},
    		{
    			beforeMasking:        "b-",
    			expectedAfterMasking: "a",
    			description:          "has trailing dash",
    		},
    		{
    			beforeMasking:        "ab",
    			expectedAfterMasking: "ab",
    			description:          "has neither leading nor trailing dashes",
    		},
    	}
    
    	for _, tc := range testCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 03 14:47:11 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  7. src/text/tabwriter/example_test.go

    	fmt.Fprintln(w, "a\tb\tc")
    	fmt.Fprintln(w, "aa\tbb\tcc")
    	fmt.Fprintln(w, "aaa\t") // trailing tab
    	fmt.Fprintln(w, "aaaa\tdddd\teeee")
    	w.Flush()
    
    	// output:
    	// ....a|..b|c
    	// ...aa|.bb|cc
    	// ..aaa|
    	// .aaaa|.dddd|eeee
    }
    
    func Example_trailingTab() {
    	// Observe that the third line has no trailing tab,
    	// so its final cell is not part of an aligned column.
    	const padding = 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 23 22:09:32 UTC 2016
    - 2K bytes
    - Viewed (0)
  8. common/config/sass-lint.yml

      no-empty-rulesets: 2
      no-extends: 2
      no-ids: 0
      no-invalid-hex: 2
      no-important: 0
      no-mergeable-selectors: 2
      no-misspelled-properties: 2
      no-qualifying-elements: 0
      no-trailing-whitespace: 2
      no-trailing-zero: 2
      no-transition-all: 0
      no-url-domains: 2
      no-url-protocols: 2
      no-warn: 2
      one-declaration-per-line: 2
      placeholder-in-extend: 2
      placeholder-name-format: 2
      property-sort-order: 0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 11 23:32:21 UTC 2019
    - 2K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/internal/GUtilTest.groovy

            toCamelCase("four or so Words") == "FourOrSoWords"
            toCamelCase("123-project") == "123Project"
            toCamelCase("i18n-admin") == "I18nAdmin"
            toCamelCase("trailing-") == "Trailing"
            toCamelCase("ABC") == "ABC"
            toCamelCase(".") == ""
            toCamelCase("-") == ""
        }
    
        def convertStringToLowerCamelCase() {
            expect:
            toLowerCamelCase(null) == null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/scatter.h

    //  The update needs permuting to be in the form (a,b,d,e,f) so that the update
    //  window dims are the trailing dimensions.
    //
    // To canonicalize the updates above, replace the updates with:
    //   transpose(updates, permutation={3,4,0,1,2})
    //
    // Note: NormalizeIndexVector is assumed to have run on the indices already so
    // that the index_vector_dim is the trailing dimension in `indices`.
    LogicalResult CanonicalizeScatterUpdates(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top