Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for subst (0.04 sec)

  1. tests/integration/ambient/baseline_test.go

      http:
      - match:
        - headers:
            user:
              exact: istio-custom-user
        route:
        - destination:
            host: "{{.Destination}}"
            subset: v2
      - route:
        - destination:
            host: "{{.Destination}}"
            subset: v1
    `).ApplyOrFail(t)
    			t.ConfigIstio().Eval(apps.Namespace.Name(), map[string]string{
    				"Destination": dst.Config().Service,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conversion.go

    		return &istio.TCPRoute{
    			Route: []*istio.RouteDestination{{
    				Destination: &istio.Destination{
    					Host:   "internal.cluster.local",
    					Subset: "zero-weight",
    					Port:   &istio.PortSelector{Number: 65535},
    				},
    				Weight: 0,
    			}},
    		}, nil
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (FNEG (F(ABS|NABS) x)) => (F(NABS|ABS) x)
    
    // floating-point fused multiply-add/sub
    (F(ADD|SUB) (FMUL x y) z) && x.Block.Func.useFMA(v) => (FM(ADD|SUB) x y z)
    (F(ADDS|SUBS) (FMULS x y) z) && x.Block.Func.useFMA(v) => (FM(ADDS|SUBS) x y z)
    
    // Arch-specific inlining for small or disjoint runtime.memmove
    (SelectN [0] call:(CALLstatic {sym} s1:(MOVDstore _ (MOVDconst [sz]) s2:(MOVDstore  _ src s3:(MOVDstore {t} _ dst mem)))))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  4. cmd/kubelet/app/server.go

    		return emptyCPUSet, fmt.Errorf("unable to parse reserved-cpus list: %s", err)
    	}
    	allCPUSet := topo.CPUDetails.CPUs()
    	if !reservedCPUSet.IsSubsetOf(allCPUSet) {
    		return emptyCPUSet, fmt.Errorf("reserved-cpus: %s is not a subset of online-cpus: %s", cpus, allCPUSet.String())
    	}
    	return reservedCPUSet, nil
    }
    
    func run(ctx context.Context, s *options.KubeletServer, kubeDeps *kubelet.Dependencies, featureGate featuregate.FeatureGate) (err error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    - `getFiles(Spec)`
    - `getArtifacts(Spec)`
    
    To mitigate this deprecation, consider the example below that leverages the `ArtifactView`
    API along with the `componentFilter` method to select a subset of a Configuration's artifacts:
    
    ====
    [.multi-language-sample]
    =====
    .build.gradle.kts
    [source,kotlin]
    ----
    val conf by configurations.creating
    
    dependencies {
        conf("com.thing:foo:1.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top