Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 329 for precision (0.14 sec)

  1. tests/integration/operator/switch_cr_test.go

    	istioCtl istioctl.Instance, profileName string, revision string,
    ) {
    	scopes.Framework.Infof(fmt.Sprintf("=== install istio with profile: %s===\n", profileName))
    	metadataYAML := `
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      name: %s
      namespace: istio-system
    spec:
    `
    	if revision != "" {
    		metadataYAML += "  revision: " + revision + "\n"
    	}
    
    	metadataYAML += `
      profile: %s
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/tracing.go

    }
    
    func buildServiceTags(metadata *model.NodeMetadata, labels map[string]string) []*tracing.CustomTag {
    	var revision, service string
    	if labels != nil {
    		revision = labels["service.istio.io/canonical-revision"]
    		service = labels["service.istio.io/canonical-name"]
    	}
    	if revision == "" {
    		revision = "latest"
    	}
    	// TODO: This should have been properly handled with the injector.
    	if service == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/dispatcher.go

    						authz,
    					),
    				)
    			}
    
    			for _, validationResult := range validationResults {
    				for i, decision := range validationResult.Decisions {
    					switch decision.Action {
    					case ActionAdmit:
    						if decision.Evaluation == EvalError {
    							celmetrics.Metrics.ObserveAdmissionWithError(ctx, decision.Elapsed, definition.Name, binding.Name, "active")
    						}
    					case ActionDeny:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. istioctl/pkg/workload/workload.go

    func IstiodHost(ns string, revision string) string {
    	istiod := "istiod"
    	if isRevisioned(revision) {
    		istiod = fmt.Sprintf("%s-%s", istiod, revision)
    	}
    	return fmt.Sprintf("%s.%s.svc", istiod, ns)
    }
    
    func IstiodAddr(ns, revision string) string {
    	// TODO make port configurable
    	return fmt.Sprintf("%s:%d", IstiodHost(ns, revision), 15012)
    }
    
    // Returns a map with each k,v entry on a new line
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  5. istioctl/pkg/kubeinject/kubeinject.go

    }
    
    func getMeshConfigFromConfigMap(ctx cli.Context, command, revision string) (*meshconfig.MeshConfig, error) {
    	client, err := ctx.CLIClient()
    	if err != nil {
    		return nil, err
    	}
    
    	if meshConfigMapName == defaultMeshConfigMapName && revision != "" {
    		meshConfigMapName = fmt.Sprintf("%s-%s", defaultMeshConfigMapName, revision)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 29 02:29:02 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/PluginManagementDslSpec.groovy

                            url "http://repo.internal.net/ivy"
                            patternLayout {
                                ivy '[organisation]/[module]/[revision]/[module]-[revision].ivy'
                                artifact '[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]'
                                m2compatible true
                            }
                        }
                        ivy {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. operator/pkg/verifier/verifier.go

    func (v *StatusVerifier) verifyInstallIOPRevision() error {
    	var err error
    	if v.controlPlaneOpts.Revision == "" {
    		v.controlPlaneOpts.Revision, err = v.getRevision()
    		if err != nil {
    			return err
    		}
    	} else if v.controlPlaneOpts.Revision == "default" {
    		v.controlPlaneOpts.Revision = ""
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/multicluster.go

    	}
    	return res
    }
    
    func createWleConfigStore(client kubelib.Client, revision string, opts Options) model.ConfigStoreController {
    	log.Infof("Creating WorkloadEntry only config store for %s", opts.ClusterID)
    	workloadEntriesSchemas := collection.NewSchemasBuilder().
    		MustAdd(collections.WorkloadEntry).
    		Build()
    	crdOpts := crdclient.Option{Revision: revision, DomainSuffix: opts.DomainSuffix, Identifier: "mc-workload-entry-controller"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. manifests/charts/gateways/istio-egress/templates/deployment.yaml

            chart: gateways
    {{- end }}
            service.istio.io/canonical-name: {{ $gateway.name }}
            service.istio.io/canonical-revision: {{ index $gateway.labels "app.kubernetes.io/version" | default (index $gateway.labels "version") | default .Values.revision | default "latest" | quote }}
            istio.io/rev: {{ .Values.revision | default "default" | quote }}
            install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    		User      user.Info
    		Secret    string
    		ConfigMap string
    		Decision  authorizer.Decision
    	}{
    		{User: node1, Decision: authorizer.DecisionAllow, Secret: "node1-only"},
    		{User: node1, Decision: authorizer.DecisionAllow, Secret: "node1-node2-only"},
    		{User: node1, Decision: authorizer.DecisionAllow, Secret: "shared-all"},
    
    		{User: node2, Decision: authorizer.DecisionNoOpinion, Secret: "node1-only"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 40.5K bytes
    - Viewed (0)
Back to top