Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,056 for Example (0.26 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    be available to dependency resolution.
    
    ====
    [source.multi-language-sample,java]
    .ExamplePlugin.java
    ----
    include::{snippetsPath}/plugins/dependenciesBlock/common/buildSrc/src/main/java/com/example/ExamplePlugin.java[tags=wire-dependencies]
    ----
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.td

        The ExecuteOp executes an operation on the specified device.
    
        Example:
          %res = tfrt_fallback_async.executeop key(0) cost(100) device("/CPU:0") "some.op"(%arg) : 1
    
        Note that the trailing number indicates the number of results.
    
        The func attrs and op attrs are placed in two separate regions.
    
        Example:
          %res = tfrt_fallback_async.executeop key(0) device("/CPU:0") "some.op"(%arg)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. tests/integration/security/sds_ingress/ingress_test.go

    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    			var (
    				credName = "testsingletlsgateway-secretrotation"
    				host     = "testsingletlsgateway-secretrotation.example.com"
    			)
    			allInstances := []echo.Instances{ingressutil.A, ingressutil.VM}
    			for _, instances := range allInstances {
    				echotest.New(t, instances).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/loadbalancer/loadbalancer_test.go

    			Spec: &networking.DestinationRule{
    				Host: "test.example.org",
    				TrafficPolicy: &networking.TrafficPolicy{
    					OutlierDetection: &networking.OutlierDetection{},
    				},
    			},
    		},
    	})
    
    	return env
    }
    
    func buildEnvForClustersWithFailover() *model.Environment {
    	serviceDiscovery := memregistry.NewServiceDiscovery(&model.Service{
    		Hostname:       "test.example.org",
    		DefaultAddress: "1.1.1.1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  5. pkg/quota/v1/evaluator/core/pods_test.go

    						Resources: api.ResourceRequirements{
    							Requests: api.ResourceList{api.ResourceName("example.com/dongle"): resource.MustParse("3")},
    							Limits:   api.ResourceList{api.ResourceName("example.com/dongle"): resource.MustParse("3")},
    						},
    					}},
    				},
    			},
    			usage: corev1.ResourceList{
    				corev1.ResourceName("requests.example.com/dongle"): resource.MustParse("3"),
    				corev1.ResourcePods: resource.MustParse("1"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_maven.adoc

    [[publishing_maven:complete_example]]
    == Complete example
    
    The following example demonstrates how to sign and publish a Java library including sources, Javadoc, and a customized POM:
    
    .Publishing a Java library
    ====
    include::sample[dir="snippets/signing/maven-publish/kotlin",files="build.gradle.kts[tags=all]"]
    include::sample[dir="snippets/signing/maven-publish/groovy",files="build.gradle[tags=all]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCall.kt

     *   // }
     * }
     * ```
     * Such a call always involve both calls to `get` and `set` functions. With the example above, a call to `String?.plus` is sandwiched
     * between `get` and `set` call to compute the new value passed to `set`.
     *
     * Note that simple access using the array access convention is not captured by this class. For example, assuming `ThrowingMap` throws
     * in case of absent key instead of returning `null`,
     * ```
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. pilot/pkg/model/service_test.go

    		ParseSubsetKey("outbound|80|v1|example.com")
    		ParseSubsetKey("outbound_.8080_.v1_.foo.example.org")
    	}
    }
    
    func TestParseSubsetKey(t *testing.T) {
    	tests := []struct {
    		input      string
    		direction  TrafficDirection
    		subsetName string
    		hostname   host.Name
    		port       int
    	}{
    		{"outbound|80|v1|example.com", TrafficDirectionOutbound, "v1", "example.com", 80},
    		{"", "", "", "", 0},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. src/log/slog/doc.go

    	slog.Group("request",
    	    "method", r.Method,
    	    "url", r.URL)
    
    TextHandler would display this group as
    
    	request.method=GET request.url=http://example.com
    
    JSONHandler would display it as
    
    	"request":{"method":"GET","url":"http://example.com"}
    
    Use [Logger.WithGroup] to qualify all of a Logger's output
    with a group name. Calling WithGroup on a Logger results in a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 15 14:35:48 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. fastapi/openapi/models.py

        allowReserved: Optional[bool] = None
    
    
    class MediaType(BaseModelWithConfig):
        schema_: Optional[Union[Schema, Reference]] = Field(default=None, alias="schema")
        example: Optional[Any] = None
        examples: Optional[Dict[str, Union[Example, Reference]]] = None
        encoding: Optional[Dict[str, Encoding]] = None
    
    
    class ParameterBase(BaseModelWithConfig):
        description: Optional[str] = None
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 22:49:33 UTC 2024
    - 15K bytes
    - Viewed (1)
Back to top