Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 234 for SIMPLE (0.12 sec)

  1. tests/integration/ambient/waypoint_test.go

    metadata:
      name: disable-hbone
    spec:
      selector:
        matchLabels:
          gateway.networking.k8s.io/gateway-name: simple-http-waypoint
      environmentVariables:
        ISTIO_META_DISABLE_HBONE_SEND: "true"
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: simple-http-waypoint
      namespace: {{.Namespace}}
      labels:
        istio.io/dataplane-mode: ambient
      annotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. tests/integration/pilot/ingress_test.go

    				// Install ingress gateway chart
    				if err := h.InstallChart("helm-simple", filepath.Join(env.IstioSrc, "manifests/charts/gateway"), gatewayNs.Name(),
    					d, helmtest.Timeout); err != nil {
    					t.Fatal(err)
    				}
    				retry.UntilSuccessOrFail(t, func() error {
    					_, err := kubetest.CheckPodsAreReady(kubetest.NewPodFetch(cs, gatewayNs.Name(), "istio=helm-simple"))
    					return err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/echotest/filters_test.go

    		AllClusters:        allClusters,
    	}}
    
    	// simple pod
    	a1 = &fakeInstance{Cluster: cls1, Namespace: echo1NS, Service: "a"}
    	a2 = &fakeInstance{Cluster: cls2, Namespace: echo1NS, Service: "a"}
    	// simple pod with different svc
    	b1 = &fakeInstance{Cluster: cls1, Namespace: echo1NS, Service: "b"}
    	b2 = &fakeInstance{Cluster: cls2, Namespace: echo1NS, Service: "b"}
    	// another simple pod with different svc
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test_base.py

          saved_model_path: str,
          bias_fn: Optional[ops.Operation] = None,
          activation_fn: Optional[ops.Operation] = None,
      ) -> module.Module:
        class MatmulModel(module.Module):
          """A simple model with a single matmul.
    
          Bias and activation function are optional.
          """
    
          def __init__(
              self,
              weight_shape: Sequence[int],
          ) -> None:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. pkg/volume/util/operationexecutor/operation_executor.go

    	// Creates a simple msg that is user friendly and a detailed msg that can be used in logs
    	// The msg format follows the pattern "<prefixMsg> <volume details> <suffixMsg>",
    	// where each implementation provides the volume details
    	GenerateMsg(prefixMsg, suffixMsg string) (simpleMsg, detailedMsg string)
    
    	// Creates a simple error that is user friendly and a detailed error that can be used in logs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFlowScopeIntegrationTest.groovy

        }
    
        void withLavaLampPluginFor(ScriptTarget target, ParameterKind parameter, InjectionStyle injectionStyle) {
            switch (parameter) {
                case ParameterKind.SIMPLE: {
                    withSimpleLavaLampPluginFor target, injectionStyle
                    break
                }
                case ParameterKind.SERVICE_REFERENCE: {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/common/lift_as_function_call_test.cc

      EXPECT_FALSE(IsEinsumSupportedByXlaDotV2(einsum_one_operand));
      EXPECT_FALSE(IsEinsumSupportedByXlaDotV2(einsum_ellipsis));
    }
    
    TEST_F(LiftAsFunctionCallTest, GetQuantizationMethodSucceeds) {
      // Function containing a simple `TF::XlaCallModuleOp` with a valid string
      // attribute `_quantization_method` set to `"no_quantization {}"`.
      constexpr absl::string_view kXlaCallModuleOpWithQuantizationMethodAttr =
          R"mlir(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/ambient/workloads_test.go

    	}{
    		{
    			name:   "simple pod not running and not have podIP",
    			inputs: []any{},
    			pod: &v1.Pod{
    				TypeMeta: metav1.TypeMeta{},
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "name",
    					Namespace: "ns",
    				},
    				Spec: v1.PodSpec{},
    				Status: v1.PodStatus{
    					Phase: v1.PodPending,
    				},
    			},
    			result: nil,
    		},
    		{
    			name:   "simple pod not running but have podIP",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. docs/es/docs/tutorial/first-steps.md

    # Primeros pasos
    
    Un archivo muy simple de FastAPI podría verse así:
    
    ```Python
    {!../../../docs_src/first_steps/tutorial001.py!}
    ```
    
    Copia eso a un archivo `main.py`.
    
    Corre el servidor en vivo:
    
    <div class="termy">
    
    ```console
    $ uvicorn main:app --reload
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. docs/en/docs/deployment/docker.md

    Here are some examples of when that could make sense:
    
    #### A Simple App
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
Back to top