- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 198 for Precision (0.15 sec)
-
istioctl/pkg/tag/util.go
return wh.ObjectMeta.Labels[label.IoIstioTag.Name] } // GetWebhookRevision extracts tag target revision from webhook object. func GetWebhookRevision(wh admitv1.MutatingWebhookConfiguration) (string, error) { if tagName, ok := wh.ObjectMeta.Labels[label.IoIstioRev.Name]; ok { return tagName, nil } return "", fmt.Errorf("could not extract tag revision from webhook") } // DeleteTagWebhooks deletes the given webhooks.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 5.5K bytes - Viewed (0) -
istioctl/pkg/tag/tag_test.go
tcs := []struct { name string tag string revision string webhookBefore *admitv1.MutatingWebhookConfiguration outputMatches []string error string }{ { name: "TestErrorWhenRevisionWithNameCollision", tag: "revision", revision: "revision", webhookBefore: &revisionCanonicalWebhook, outputMatches: []string{},
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 8.5K bytes - Viewed (0) -
istioctl/pkg/tag/generate_test.go
operatorManaged = operatorNamespace + "/managed" revisionCanonicalWebhook = admitv1.MutatingWebhookConfiguration{ ObjectMeta: metav1.ObjectMeta{ Name: "istio-sidecar-injector-revision", Labels: map[string]string{ label.IoIstioRev.Name: "revision", operatorManaged: "Reconcile", }, }, Webhooks: []admitv1.MutatingWebhook{ { Name: fmt.Sprintf("namespace.%s", istioInjectionWebhookSuffix),
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 12.1K bytes - Viewed (0) -
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: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 15 16:31:46 UTC 2024 - 25.3K bytes - Viewed (0) -
istioctl/pkg/precheck/precheck_test.go
) type testCase struct { version string revision string expectedOutput diag.Messages expectedError error } func Test_checkFromVersion(t *testing.T) { cases := []testCase{ { revision: "canary", version: "1.21", expectedOutput: diag.Messages{}, expectedError: nil, }, { revision: "canary", version: "XX", expectedOutput: nil,
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Jul 09 12:01:22 UTC 2024 - 3.9K bytes - Viewed (0) -
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: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 15 16:31:46 UTC 2024 - 21K bytes - Viewed (0) -
src/main/java/jcifs/smb/SID.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 14.9K bytes - Viewed (0) -
architecture/standards/README.md
## Architecture Standards **Experimental!** We'd like to capture our architectural decisions about the build tool as [Architectural Decision Records (ADRs)](https://adr.github.io/). For now we just have this global repository of ADRs. If we see fit, we can break these out to per-platform ones, or keep a hybrid approach to having global and platform-specific ADSs. Our aim is to keep the process lightweight and approachable.
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Feb 21 06:30:44 UTC 2024 - 546 bytes - Viewed (0) -
istioctl/pkg/cli/context.go
} type instance struct { // clients are cached clients for each revision clients map[string]kube.CLIClient // remoteClients are cached clients for each context with empty revision. remoteClients map[string]kube.CLIClient RootFlags } func newKubeClientWithRevision(kubeconfig, configContext, revision string, impersonateConfig rest.ImpersonationConfig) (kube.CLIClient, error) {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 23 19:31:32 UTC 2024 - 8.9K bytes - Viewed (0) -
istioctl/pkg/proxystatus/proxystatus_test.go
args: strings.Split("random-gibberish-podname-61789237418234", " "), wantException: true, }, { // case 6: new --revision argument args: strings.Split("--revision canary", " "), expectedString: "NAME CLUSTER CDS LDS EDS RDS ECDS ISTIOD", revision: "canary", }, { // case 7: supplying type that doesn't select pods should fail
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Mar 15 08:28:50 UTC 2024 - 5.5K bytes - Viewed (0)