Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 825 for suffixed (0.15 sec)

  1. src/go/doc/example_test.go

    	}
    
    	want := map[string][]string{
    		"": {"", "suffix", "suffix_xX_X_x"}, // Package-level examples.
    
    		"Type1":     {"", "foo_Suffix", "func2", "suffix"},
    		"Type1_Foo": {"", "suffix"},
    		"Type1_foo": {"", "suffix"},
    
    		"Func1":     {"", "foo_Suffix", "suffix"},
    		"Func1_Foo": {"", "suffix"},
    		"Func1_foo": {"", "suffix"},
    
    		"Type1.Func1":     {"", "foo_Suffix", "suffix"},
    		"Type1.Func1_Foo": {"", "suffix"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 16:17:51 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/HierarchicalNameSerializer.java

    import java.io.IOException;
    
    /**
     * Efficiently serializes hierarchical names, like Java class names or relative paths of resources.
     * Splits names into prefixes and suffixes along package separators, inner class separators, file separators and camel case borders.
     * Reuses these prefixes and suffixes to efficiently store names or parts of names it has seen before.
     *
     * This class is stateful. Use a new one for each serialization/deserialization attempt.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/mesh.yaml.golden

      namespace: default
    spec:
      gateways:
      - mesh
      hosts:
      - echo-1.default.svc.domain.suffix
      tls:
      - match:
        - sniHosts:
          - echo-1.default.svc.domain.suffix
        route:
        - destination:
            host: echo.default.svc.domain.suffix
            port:
              number: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 19 18:39:48 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. cluster/gce/gci/append_or_replace_prefixed_line_test.go

    		desc                string
    		prefix              string
    		suffix              string
    		initialFileContents string
    		want                string
    	}{
    		{
    			desc:   "simple string and empty file",
    			prefix: "hello",
    			suffix: "world",
    			want: `helloworld
    `,
    		},
    		{
    			desc:   "simple string and non empty file",
    			prefix: "hello",
    			suffix: "world",
    			initialFileContents: `jelloworld
    chelloworld
    `,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 30 06:23:50 UTC 2021
    - 4K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/route-precedence.yaml.golden

            exact: /baz
        name: allowed-2.http.1
        route:
        - destination:
            host: svc2.allowed-2.svc.domain.suffix
            port:
              number: 80
      - match:
        - uri:
            prefix: /foo/bar
        name: allowed-2.http.0
        route:
        - destination:
            host: svc2.allowed-2.svc.domain.suffix
            port:
              number: 80
      - match:
        - headers:
            my-header:
              exact: some-value
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  6. pilot/pkg/security/authz/builder/testdata/http/extended-custom-http-provider-out2.yaml

            - ignoreCase: true
              prefix: x-prefix-
            - ignoreCase: true
              suffix: -suffix
          allowedClientHeadersOnSuccess:
            patterns:
            - exact: Set-cookie
              ignoreCase: true
            - ignoreCase: true
              prefix: x-prefix-
            - ignoreCase: true
              suffix: -suffix
          allowedUpstreamHeaders:
            patterns:
            - exact: Authorization
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modfetch/coderepo.go

    	}
    	if err1 == nil {
    		// Explicit go.mod with non-matching major version disallowed.
    		suffix := ""
    		if file2 != "" {
    			suffix = fmt.Sprintf(" (and ...%s/go.mod does not exist)", r.pathMajor)
    		}
    		if mpath1 == "" {
    			return "", "", nil, fmt.Errorf("%s is missing module path%s at revision %s", file1, suffix, rev)
    		}
    		if r.pathMajor != "" { // ".v1", ".v2" for gopkg.in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/get_issue53955.txt

    [!git] skip
    [!net:github.com] skip 'does not actually use github.com because of insteadOf, but silence network check just in case'
    
    # Redirect git to a test-specific .gitconfig.
    # GIT_CONFIG_GLOBAL suffices for git 2.32.0 and newer.
    # For older git versions we also set $HOME.
    env GIT_CONFIG_GLOBAL=$WORK${/}home${/}gopher${/}.gitconfig
    env HOME=$WORK${/}home${/}gopher
    exec git config --global --show-origin user.name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/plan9x.go

    			op = "FMOVD" + suffix
    			args[0] = fmt.Sprintf("F%d", rno&31)
    		} else if rno >= uint16(Q0) && rno <= uint16(Q31) {
    			op = "FMOVQ" + suffix
    			args[0] = fmt.Sprintf("F%d", rno&31)
    		} else {
    			op = "MOVD" + suffix
    		}
    
    	case LDRB:
    		op = "MOVBU" + suffix
    
    	case LDRH:
    		op = "MOVHU" + suffix
    
    	case LDRSW:
    		op = "MOVW" + suffix
    
    	case LDRSB:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 17K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/legacy.go

    	}
    	containerIDWithSuffix := parts[len(parts)-1]
    	suffix := fmt.Sprintf(".%s", legacyLogSuffix)
    	if !strings.HasSuffix(containerIDWithSuffix, suffix) {
    		return "", fmt.Errorf("%q doesn't end with %q", logSymlink, suffix)
    	}
    	containerIDWithoutSuffix := strings.TrimSuffix(containerIDWithSuffix, suffix)
    	// container can be retrieved with container Id as short as 6 characters
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 16:05:48 UTC 2022
    - 2.7K bytes
    - Viewed (0)
Back to top