Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 55 for Qux (0.19 sec)

  1. android/guava/src/com/google/common/base/Splitter.java

     *
     * <p>For example, this expression:
     *
     * <pre>{@code
     * Splitter.on(',').split("foo,bar,qux")
     * }</pre>
     *
     * ... produces an {@code Iterable} containing {@code "foo"}, {@code "bar"} and {@code "qux"}, in
     * that order.
     *
     * <p>By default, {@code Splitter}'s behavior is simplistic and unassuming. The following
     * expression:
     *
     * <pre>{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/Splitter.java

     *
     * <p>For example, this expression:
     *
     * <pre>{@code
     * Splitter.on(',').split("foo,bar,qux")
     * }</pre>
     *
     * ... produces an {@code Iterable} containing {@code "foo"}, {@code "bar"} and {@code "qux"}, in
     * that order.
     *
     * <p>By default, {@code Splitter}'s behavior is simplistic and unassuming. The following
     * expression:
     *
     * <pre>{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  3. pkg/kubeapiserver/options/authentication_test.go

    		"--requestheader-allowed-names=kube-aggregator",
    		"--service-account-key-file=cert",
    		"--service-account-key-file=key",
    		"--service-account-issuer=http://foo.bar.com",
    		"--service-account-jwks-uri=https://qux.com",
    		"--token-auth-file=tokenfile",
    		"--authentication-token-webhook-config-file=webhook_config.yaml",
    		"--authentication-token-webhook-cache-ttl=180s",
    	}
    
    	expected := &BuiltInAuthenticationOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfr/ir/tfr_ops.td

        ```
    
        Example:
    
        ```mlir
        tfr.func @foo(%arg0: !tfr.tensor, %arg1: !tfr.tensor_list<T>,
                      %arg2: int {tfr.name="T", tfr.default=1})
            attributes {qux: "quux"} {
          tfr.return
        }
        ```
    
        Note the arguments are ordered by the following rule:
          tfr.tensor > tfr.tensor_list > tfr.attr/i32/...,
        and only one trfr.tensor_list argument is allowed.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 10:54:29 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  5. pilot/pkg/model/sidecar_test.go

    			},
    		},
    	}
    
    	services := []*Service{
    		{
    			Hostname: "foo.example.com",
    		},
    		{
    			Hostname: "baz.example.com",
    		},
    		{
    			Hostname: "qux.bar.example.com",
    		},
    		{
    			Hostname: "*.bar.example.com",
    		},
    	}
    
    	tests := []struct {
    		name            string
    		virtualServices []config.Config
    		services        []*Service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/v2/conversion_test.go

                  type: string
                available:
                  description: Whether the Bar is installed.
                  type: boolean
                quxType:
                  description: Indicates to external qux type.
                  pattern: in-tree|out-of-tree
                  type: string`)
    
    	specV1beta1 := apiextensionsv1beta1.JSONSchemaProps{}
    	if err := yaml.Unmarshal(spec, &specV1beta1); err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 14:34:26 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/vcs/vcs_test.go

    				{Prefix: "example.com/user/foo/bar", VCS: "git", RepoRoot: "https://example.com/repo/target"},
    			},
    			path: "example.com/user/foo/bar/baz/qux",
    			err:  errors.New("should not be allowed to create nested repo"),
    		},
    		{
    			imports: []metaImport{
    				{Prefix: "example.com/user/foo", VCS: "git", RepoRoot: "https://example.com/repo/target"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 15:33:59 UTC 2022
    - 17K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            def firstRule = new DefaultExcludeRule("foo", "bar")
            def secondRule = new DefaultExcludeRule("bar", "baz")
            def thirdRule = new DefaultExcludeRule("baz", "qux")
    
            def rootConfig = conf().exclude(group: "baz", module: "qux")
            def parentConfig = conf().exclude(group: "bar", module: "baz").extendsFrom(rootConfig)
            def config = conf().exclude(group: "foo", module: "bar").extendsFrom(parentConfig)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  9. src/net/http/serve_test.go

    	c := ts.Client()
    
    	cases := []struct {
    		reqPath string
    		path    string // If empty we want a 404.
    		rawPath string
    	}{
    		{"/foo/bar/qux", "/qux", ""},
    		{"/foo/bar%2Fqux", "/qux", "%2Fqux"},
    		{"/foo%2Fbar/qux", "", ""}, // Escaped prefix does not match.
    		{"/bar", "", ""},           // No prefix match.
    	}
    	for _, tc := range cases {
    		t.Run(tc.reqPath, func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/validation_test.go

    			{
    				name: "bad gamma",
    				instanceFn: func() *unstructured.Unstructured {
    					instance := newNoxuValidationInstance(ns, "foo")
    					instance.Object["gamma"] = "qux"
    					return instance
    				},
    				expectedErrors: []string{`gamma: Unsupported value: "qux": supported values: "foo", "bar", "baz"`},
    			},
    			{
    				name: "absent alpha and beta",
    				instanceFn: func() *unstructured.Unstructured {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 26 20:48:36 UTC 2021
    - 63.6K bytes
    - Viewed (0)
Back to top