Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for get_target (0.25 sec)

  1. tests/integration/ambient/wasm_test.go

    					name:         "gateway-wasm-test",
    					testHostname: fmt.Sprintf("%s-gateway-istio.%s.svc.cluster.local", GetTarget().ServiceName(), apps.Namespace.Name()),
    					targetType:   "gateway",
    					targetName:   fmt.Sprintf("%s-gateway", GetTarget().(echo.Instances).ServiceName()),
    				},
    				{
    					desc:       "Configure WebAssembly filter for waypoint",
    					name:       "waypoint-wasm-test",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. tests/integration/telemetry/api/accesslogs_test.go

    			})
    			t.NewSubTest("enabled-with-targetref").Run(func(t framework.TestContext) {
    				args := map[string]any{
    					"To":                GetTarget().(echo.Instances),
    					"TargetGatewayName": GetTarget().ServiceName() + "-gateway",
    					"Address":           fmt.Sprintf("%s-gateway-istio.%s.svc.cluster.local", GetTarget().ServiceName(), apps.Namespace.Name()),
    				}
    				crd.DeployGatewayAPIOrSkip(t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/obj9.go

    				q = obj.Appendp(q, c.newprog)
    
    				q.As = obj.ANOP
    				p1.To.SetTarget(q)
    				p2.To.SetTarget(q)
    			}
    
    		case obj.ARET:
    			if p.From.Type == obj.TYPE_CONST {
    				c.ctxt.Diag("using BECOME (%v) is not supported!", p)
    				break
    			}
    
    			retTarget := p.To.Sym
    
    			if c.cursym.Func().Text.Mark&LEAF != 0 {
    				if autosize == 0 {
    					p.As = ABR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  4. tests/integration/telemetry/api/wasmplugin_test.go

    	args := map[string]any{
    		"WasmPluginName":    pluginName,
    		"TestWasmModuleURL": wasmModuleURL,
    		"WasmPluginVersion": pluginVersion,
    		"TargetAppName":     GetTarget().(echo.Instances).NamespacedName().Name,
    		"TargetGatewayName": GetTarget().(echo.Instances).ServiceName() + "-gateway",
    	}
    
    	if len(imagePullPolicy) != 0 {
    		args["ImagePullPolicy"] = imagePullPolicy
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  5. tests/integration/telemetry/api/stats_test.go

    apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: default
    spec:
      mtls:
        mode: STRICT
    `
    
    func GetClientInstances() echo.Instances {
    	return apps.A
    }
    
    func GetTarget() echo.Target {
    	return apps.B
    }
    
    // TestStatsFilter verifies the stats filter could emit expected client and server side
    // metrics when configured with the Telemetry API (with EnvoyFilters disabled).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultConflictHandler.java

            ModuleReplacementsData.Replacement replacement = moduleReplacements.getReplacementFor(candidate.getId());
            ModuleIdentifier replacedBy = replacement == null ? null : replacement.getTarget();
            return potentialConflict(conflicts.newElement(candidate.getId(), candidate.getVersions(), replacedBy));
        }
    
        /**
         * Informs if there are any batched up conflicts.
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. tests/integration/telemetry/api/customize_metrics_test.go

    		ApplyOrFail(t)
    }
    
    func sendCustomizeMetricsTraffic() error {
    	for _, cltInstance := range GetClientInstances() {
    		httpOpts := echo.CallOptions{
    			To: GetTarget(),
    			Port: echo.Port{
    				Name: "http",
    			},
    			HTTP: echo.HTTP{
    				Path:   "/path",
    				Method: "GET",
    			},
    			Retry: echo.Retry{
    				NoRetry: true,
    			},
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/ModuleReplacementsData.java

            Replacement(ModuleIdentifier target, @Nullable String reason) {
                this.target = target;
                this.reason = reason;
            }
    
            public ModuleIdentifier getTarget() {
                return target;
            }
    
            @Nullable
            public String getReason() {
                return reason;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/labels.go

    	name := s.Label.Value
    	if debug {
    		assert(b.gotoTarget(name) == nil)
    	}
    	labels := b.labels
    	if labels == nil {
    		labels = make(map[string]*syntax.LabeledStmt)
    		b.labels = labels
    	}
    	labels[name] = s
    }
    
    // gotoTarget returns the labeled statement in the current
    // or an enclosing block with the given label name, or nil.
    func (b *block) gotoTarget(name string) *syntax.LabeledStmt {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. src/go/types/labels.go

    	name := s.Label.Name
    	if debug {
    		assert(b.gotoTarget(name) == nil)
    	}
    	labels := b.labels
    	if labels == nil {
    		labels = make(map[string]*ast.LabeledStmt)
    		b.labels = labels
    	}
    	labels[name] = s
    }
    
    // gotoTarget returns the labeled statement in the current
    // or an enclosing block with the given label name, or nil.
    func (b *block) gotoTarget(name string) *ast.LabeledStmt {
    	for s := b; s != nil; s = s.parent {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top