- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 49 for getOption (0.09 sec)
-
istioctl/pkg/writer/envoy/configdump/listener.go
return "" } if len(vh.GetRoutes()) != 1 { return "" } r := vh.GetRoutes()[0] if r.GetMatch().GetPrefix() != "/" { return "" } a, ok := r.GetAction().(*route.Route_Route) if !ok { return "" } cl, ok := a.Route.ClusterSpecifier.(*route.RouteAction_Cluster) if !ok { return "" } if strings.Contains(cl.Cluster, "Cluster") {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Nov 29 12:37:14 UTC 2023 - 18.1K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/CommonsCliMavenOptions.java
CommandLine.Builder commandLineBuilder = new CommandLine.Builder(); commandLineBuilder.setDeprecatedHandler(o -> {}); for (Option option : options.commandLine.getOptions()) { if (!CLIManager.USER_PROPERTY.equals(option.getOpt())) { List<String> values = option.getValuesList();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 16K bytes - Viewed (0) -
cni/pkg/nodeagent/informers_test.go
} func assertPodAnnotated(t *testing.T, client kube.Client, pod *corev1.Pod) { for i := 0; i < 5; i++ { p, err := client.Kube().CoreV1().Pods(pod.Namespace).Get(context.Background(), pod.Name, metav1.GetOptions{}) if err != nil { t.Fatal(err) } if p.Annotations[annotation.AmbientRedirection.Name] == constants.AmbientRedirectionEnabled { return } time.Sleep(1 * time.Second) }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 22.1K bytes - Viewed (0) -
istioctl/pkg/tag/generate.go
// that is set to `Fail` by Istiod, we avoid of setting it back to the default `Ignore`. vwh, err := client.Kube().AdmissionregistrationV1().ValidatingWebhookConfigurations(). Get(context.Background(), vwhBaseTemplateName, metav1.GetOptions{}) if err != nil && !errors.IsNotFound(err) { return nil, err } if vwh == nil { return whConfig, nil } if whConfig.FailurePolicy == nil {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 13.3K bytes - Viewed (0) -
istioctl/pkg/tag/generate_test.go
assert.NoError(t, err) wh, err := fakeClient.Kube().AdmissionregistrationV1().MutatingWebhookConfigurations(). Get(context.Background(), "istio-sidecar-injector", metav1.GetOptions{}) assert.NoError(t, err) assertFunc(t, wh.Webhooks, defaultWh.Webhooks) } func TestGenerateOptions(t *testing.T) { // Test generate option 'true', should not modify webhooks
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 12.1K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 76.8K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java
.build(); CommandLine commandLine = parser.parse(options, cleanArgs); // to trigger deprecation handler, so we can report deprecation BEFORE we actually use options options.getOptions().forEach(commandLine::hasOption); return commandLine; } public Set<Option> getUsedDeprecatedOptions() { return usedDeprecatedOptions; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 17.6K bytes - Viewed (0) -
istioctl/pkg/multixds/gather.go
return nil, fmt.Errorf("invalid resource name format: %v", slice) } podName := slice[0] ns := slice[1] pod, err := kubeClient.Kube().CoreV1().Pods(ns).Get(context.TODO(), podName, metav1.GetOptions{}) if err != nil { return nil, err } resp, err := queryToOnePod(pod) if err != nil { return nil, err } responses = append(responses, resp) return responses, nil }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 13.6K bytes - Viewed (0) -
src/test/java/jcifs/tests/FileLocationTest.java
assertEquals("testing", h.getServer()); assertEquals("1.2.3.4", h.getBinding().getOptions().get("address")); } } // #165 @Test public void testV6DCE () throws MalformedURLException, CIFSException {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 08 13:16:07 UTC 2020 - 23K bytes - Viewed (0) -
istioctl/pkg/analyze/analyze.go
if selectedNamespace != "" { client, err := ctx.CLIClient() if err != nil { return err } _, err = client.Kube().CoreV1().Namespaces().Get(context.TODO(), selectedNamespace, metav1.GetOptions{}) if errors.IsNotFound(err) { fmt.Fprintf(cmd.ErrOrStderr(), "namespace %q not found\n", ctx.Namespace()) return nil } else if err != nil { return err } } }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 31 06:53:50 UTC 2024 - 17.6K bytes - Viewed (0)