Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 207 for Example (0.21 sec)

  1. pkg/controller/endpointslice/endpointslice_controller_test.go

    					CreationTimestamp: creationTimestamp,
    				},
    				Spec: v1.ServiceSpec{
    					Ports: []v1.ServicePort{
    						{Name: "tcp-example", TargetPort: intstr.FromInt32(80), Protocol: v1.ProtocolTCP},
    						{Name: "udp-example", TargetPort: intstr.FromInt32(161), Protocol: v1.ProtocolUDP},
    						{Name: "sctp-example", TargetPort: intstr.FromInt32(3456), Protocol: v1.ProtocolSCTP},
    					},
    					Selector:   map[string]string{"foo": "bar"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    [source,java]
    .buildSrc/src/main/java/org/example/ProcessTemplates.java
    ----
    include::{snippetsPath}/tasks/incrementalBuild-customTaskClass/groovy/buildSrc/src/main/java/org/example/ProcessTemplates.java[tag=custom-task-class]
    ----
    
    [source,java]
    .buildSrc/src/main/java/org/example/TemplateData.java
    ----
    include::{snippetsPath}/tasks/incrementalBuild-customTaskClass/groovy/buildSrc/src/main/java/org/example/TemplateData.java[]
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    islands. So, this pass is needed in order to make preservation of the
    semantic ordering relationships between ops as determined by side effect
    analysis explicit in the IR.
    
    Example: original program:
    
    ```mlir
        func.func @example(%arg0: tensor<*x!tf_type.resource<tensor<32xf32>>>, %arg1: tensor<32xf32>) -> (tensor<32xf32>) {
          %graph = tf_executor.graph {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  4. pkg/apis/certificates/validation/validation_test.go

    			},
    		},
    		"signerName domain component is not fully qualified": {
    			csr: capi.CertificateSigningRequest{
    				ObjectMeta: validObjectMeta,
    				Spec: capi.CertificateSigningRequestSpec{
    					Usages:     validUsages,
    					Request:    newCSRPEM(t),
    					SignerName: "example/some-signer-name",
    				},
    			},
    			errs: field.ErrorList{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/httproute_test.go

    			service: &model.Service{
    				Hostname:     "aaa.example.local",
    				MeshExternal: true,
    			},
    			port: 7777,
    			node: &model.Proxy{
    				DNSDomain: "tests.svc.cluster.local",
    			},
    			want: []string{"aaa.example.local"},
    		},
    		{
    			name: "front subset of cluster domain in address",
    			service: &model.Service{
    				Hostname:     "aaa.example.my",
    				MeshExternal: true,
    			},
    			port: 7777,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/reflect/TypeToken.java

     * {@code Type}, for example {@link #isSubtypeOf}, {@link #isArray} and {@link #getComponentType}.
     * It also provides additional utilities such as {@link #getTypes}, {@link #resolveType}, etc.
     *
     * <p>There are three ways to get a {@code TypeToken} instance:
     *
     * <ul>
     *   <li>Wrap a {@code Type} obtained via reflection. For example: {@code
     *       TypeToken.of(method.getGenericReturnType())}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/reflect/TypeToken.java

     * {@code Type}, for example {@link #isSubtypeOf}, {@link #isArray} and {@link #getComponentType}.
     * It also provides additional utilities such as {@link #getTypes}, {@link #resolveType}, etc.
     *
     * <p>There are three ways to get a {@code TypeToken} instance:
     *
     * <ul>
     *   <li>Wrap a {@code Type} obtained via reflection. For example: {@code
     *       TypeToken.of(method.getGenericReturnType())}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

        }
    
      /**
       * Returns a string with containing this URL with its username, password, query, and fragment
       * stripped, and its path replaced with `/...`. For example, redacting
       * `http://username:password@example.com/path` returns `http://example.com/...`.
       */
      fun redact(): String {
        return newBuilder("/...")!!
          .username("")
          .password("")
          .build()
          .toString()
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  9. src/net/url/url_test.go

    	{
    		&URL{
    			Scheme: "http",
    			Host:   "example.com",
    			Opaque: "//other.example.com/%2F/%2F/",
    		},
    		"http://other.example.com/%2F/%2F/",
    	},
    	// better fix for issue 4860
    	{
    		&URL{
    			Scheme:  "http",
    			Host:    "example.com",
    			Path:    "/////",
    			RawPath: "/%2F/%2F/",
    		},
    		"/%2F/%2F/",
    	},
    	{
    		&URL{
    			Scheme:  "http",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  10. pkg/apis/admissionregistration/types.go

    	// - validationActions: The enforcement actions enacted for the validation failure
    	// Example audit annotation:
    	// `"validation.policy.admission.k8s.io/validation_failure": "[{\"message\": \"Invalid value\", {\"policy\": \"policy.example.com\", {\"binding\": \"policybinding.example.com\", {\"expressionIndex\": \"1\", {\"validationActions\": [\"Audit\"]}]"`
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
Back to top