Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 987 for Tconstants (0.33 sec)

  1. istioctl/pkg/util/ambient/util.go

    	case *corev1.Pod:
    		return t.GetAnnotations()[constants.AmbientRedirection] == constants.AmbientRedirectionEnabled
    	case *corev1.Namespace:
    		if t.GetLabels()["istio-injection"] == "enabled" {
    			return false
    		}
    		if v, ok := t.GetLabels()[label.IoIstioRev.Name]; ok && v != "" {
    			return false
    		}
    		return t.GetLabels()[constants.DataplaneModeLabel] == constants.DataplaneModeAmbient
    	}
    	return false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. tools/istio-clean-iptables/pkg/cmd/root.go

    	"istio.io/istio/tools/istio-clean-iptables/pkg/config"
    	"istio.io/istio/tools/istio-iptables/pkg/constants"
    )
    
    func bindCmdlineFlags(cfg *config.Config, cmd *cobra.Command) {
    	fs := cmd.Flags()
    	flag.BindEnv(fs, constants.DryRun, "n", "Do not call any external dependencies like iptables.",
    		&cfg.DryRun)
    
    	flag.BindEnv(fs, constants.ProxyUID, "u",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/upgrade/postupgrade_test.go

    		t.Fatalf("Failed to create backup directory %s: %v", subDir, err)
    	}
    
    	filesToMove := map[string]string{
    		filepath.Join(tmpdir, constants.APIServerCertName): filepath.Join(subDir, constants.APIServerCertName),
    		filepath.Join(tmpdir, constants.APIServerKeyName):  filepath.Join(subDir, constants.APIServerKeyName),
    	}
    
    	if err := moveFiles(filesToMove); err != nil {
    		t.Fatalf("Failed to move files %v: %v", filesToMove, err)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 11:40:04 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. tests/integration/ambient/cnirepair/main_test.go

    			Subsets: []echo.SubsetConfig{
    				{
    					Replicas: 1,
    					Version:  "v1",
    					Labels:   map[string]string{constants.DataplaneModeLabel: constants.DataplaneModeNone},
    				},
    				{
    					Replicas: 1,
    					Version:  "v2",
    					Labels:   map[string]string{constants.DataplaneModeLabel: constants.DataplaneModeNone},
    				},
    			},
    		}).
    		WithConfig(echo.Config{
    			Service:        Sidecar,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 09 09:12:45 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. istioctl/pkg/waypoint/waypoint_test.go

    			gateways: []*gateway.Gateway{
    				makeGateway(constants.DefaultNamespaceWaypoint, "default", true, true),
    				makeGateway(constants.DefaultNamespaceWaypoint, "fake", true, true),
    			},
    			expectedOutFile: "default-gateway",
    		},
    		{
    			name: "all namespaces gateways",
    			args: strings.Split("list -A", " "),
    			gateways: []*gateway.Gateway{
    				makeGateway(constants.DefaultNamespaceWaypoint, "default", true, true),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 15:53:09 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. src/go/doc/testdata/d.1.golden

    // 
    PACKAGE d
    
    IMPORTPATH
    	testdata/d
    
    FILENAMES
    	testdata/d1.go
    	testdata/d2.go
    
    CONSTANTS
    	// CBx constants should appear before CAx constants. 
    	const (
    		CB2	= iota	// before CB1
    		CB1		// before CB0
    		CB0		// at end
    	)
    
    	// CAx constants should appear after CBx constants. 
    	const (
    		CA2	= iota	// before CA1
    		CA1		// before CA0
    		CA0		// at end
    	)
    
    	// C0 should be first. 
    	const C0 = 0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.5K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/route/route_cache_test.go

    					{
    						Meta: config.Meta{
    							Name:      "foo-0-istio-autogenerated-k8s-gateway",
    							Namespace: "default",
    							Annotations: map[string]string{
    								constants.InternalRouteSemantics: constants.RouteSemanticsGateway,
    								constants.InternalParentNames:    "HTTPRoute/foo.default",
    							},
    						},
    					},
    				},
    			},
    			want: []model.ConfigHash{
    				model.ConfigKey{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/componentconfigs/kubelet.go

    	}
    
    	if kc.config.HealthzPort == nil {
    		kc.config.HealthzPort = ptr.To[int32](constants.KubeletHealthzPort)
    	} else if *kc.config.HealthzPort != constants.KubeletHealthzPort {
    		warnDefaultComponentConfigValue(kind, "healthzPort", constants.KubeletHealthzPort, *kc.config.HealthzPort)
    	}
    
    	if kc.config.ReadOnlyPort != kubeletReadOnlyPort {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/addons/proxy/proxy.go

    	daemonSetbytes, err := kubeadmutil.ParseTemplate(KubeProxyDaemonSet19, struct{ Image, ProxyConfigMap, ProxyConfigMapKey string }{
    		Image:             images.GetKubernetesImage(constants.KubeProxy, cfg),
    		ProxyConfigMap:    constants.KubeProxyConfigMap,
    		ProxyConfigMapKey: constants.KubeProxyConfigMapKey,
    	})
    	if err != nil {
    		return []byte(""), errors.Wrap(err, "error when parsing kube-proxy daemonset template")
    	}
    
    	if printManifest {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 13:23:44 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/util/FacetResponse.java

            aggregations.forEach(aggregation -> {
                if (aggregation.getName().startsWith(Constants.FACET_FIELD_PREFIX)) {
                    final Terms termFacet = (Terms) aggregation;
                    fieldList.add(new Field(termFacet));
                } else if (aggregation.getName().startsWith(Constants.FACET_QUERY_PREFIX)) {
                    final Filter queryFacet = (Filter) aggregation;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top