Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 340 for constants_ (1.24 sec)

  1. pkg/test/framework/components/ambient/waypoint.go

    		"--namespace",
    		ns.Name(),
    		"--name",
    		name,
    		"--for",
    		constants.AllTraffic,
    	})
    	if err != nil {
    		return nil, err
    	}
    
    	cls := ctx.Clusters().Default()
    	// Find the Waypoint pod and service, and start forwarding a local port.
    	fetchFn := testKube.NewSinglePodFetch(cls, ns.Name(), fmt.Sprintf("%s=%s", constants.GatewayNameLabel, name))
    	pods, err := testKube.WaitUntilPodsAreReady(fetchFn)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. istioctl/pkg/injector/injector-list_test.go

    		createNamespace("kube-system", nil),
    		createNamespace("istio-system", nil),
    		createNamespace("ambient", map[string]string{
    			constants.DataplaneModeLabel: constants.DataplaneModeAmbient,
    		}),
    		createNamespace("no-ambient", map[string]string{
    			constants.DataplaneModeLabel: constants.DataplaneModeAmbient,
    			"istio-injection":            "enabled",
    		}),
    	}
    
    	client := kube.NewFakeClient(nss...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 04:33:57 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/server_test.go

    			enableCA:     false,
    			certProvider: constants.CertProviderIstiod,
    			expNewCert:   false,
    			expCert:      []byte{},
    			expKey:       []byte{},
    		},
    		{
    			name: "DNS cert loaded because it is in known even if CA is Disabled",
    			FSCertsPaths: TLSFSLoadPaths{
    				constants.DefaultPilotTLSCert,
    				constants.DefaultPilotTLSKey,
    				constants.DefaultPilotTLSCaCert,
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/apiclient/wait.go

    	componentHash := ""
    	var err, lastErr error
    	mirrorPodHashes := map[string]string{}
    	for _, component := range constants.ControlPlaneComponents {
    		err = wait.PollUntilContextTimeout(context.Background(),
    			constants.KubernetesAPICallRetryInterval, w.timeout,
    			true, func(_ context.Context) (bool, error) {
    				componentHash, err = getStaticPodSingleHash(w.client, nodeName, component)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/runtime/runtime.go

    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	"k8s.io/klog/v2"
    
    	"k8s.io/kubernetes/cmd/kubeadm/app/constants"
    )
    
    // defaultKnownCRISockets holds the set of known CRI endpoints
    var defaultKnownCRISockets = []string{
    	constants.CRISocketContainerd,
    	constants.CRISocketCRIO,
    	constants.CRISocketDocker,
    }
    
    // ContainerRuntime is an interface for working with container runtimes
    type ContainerRuntime interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java

    import org.codelibs.core.io.InputStreamUtil;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.core.timer.TimeoutManager;
    import org.codelibs.core.timer.TimeoutTask;
    import org.codelibs.fess.crawler.Constants;
    import org.codelibs.fess.crawler.builder.RequestDataBuilder;
    import org.codelibs.fess.crawler.client.AbstractCrawlerClient;
    import org.codelibs.fess.crawler.client.AccessTimeoutTarget;
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 23 01:54:10 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/ppc64.s

    	// Hex constant 0x80000001
    	MOVW $2147483649, R5            // 6405800060a50001 or 0600800038a00001
    	MOVD $2147483649, R5            // 6405800060a50001 or 0600800038a00001
    	// Hex constant 0xFFFFFFFF80000001
    	MOVD $-2147483647, R5           // 3ca0800060a50001 or 0603800038a00001
    	// Hex constant 0xFFFFFFFE00000002 (load of constant on < power10, pli on >= power10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/fuzzer/fuzzer.go

    	obj.EncryptionAlgorithm = kubeadm.EncryptionAlgorithmRSA2048
    	obj.Proxy.Disabled = false
    	obj.CertificateValidityPeriod = &metav1.Duration{Duration: constants.CertificateValidityPeriod}
    	obj.CACertificateValidityPeriod = &metav1.Duration{Duration: constants.CACertificateValidityPeriod}
    }
    
    func fuzzDNS(obj *kubeadm.DNS, c fuzz.Continue) {
    	c.FuzzNoCustom(obj)
    	obj.Disabled = false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 06:41:07 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. security/pkg/server/ca/authenticate/kubeauth/kube_jwt_test.go

    func TestNewKubeJWTAuthenticator(t *testing.T) {
    	meshHolder := mockMeshConfigHolder{"testdomain.com"}
    	authenticator := NewKubeJWTAuthenticator(meshHolder, nil, constants.DefaultClusterName, nil)
    	expectedAuthenticator := &KubeJWTAuthenticator{
    		meshHolder: meshHolder,
    		clusterID:  constants.DefaultClusterName,
    	}
    	if !reflect.DeepEqual(authenticator, expectedAuthenticator) {
    		t.Errorf("Unexpected authentication result: want %v but got %v",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/namespacecontroller_test.go

    	newData := map[string]string{
    		constants.CACertNamespaceConfigMapDataName: string(newCaBundle),
    	}
    	expectConfigMap(t, nc.configmaps, CACertNamespaceConfigMap, "foo", newData)
    
    	deleteConfigMap(t, client.Kube(), "foo")
    	expectConfigMap(t, nc.configmaps, CACertNamespaceConfigMap, "foo", newData)
    
    	ignoredNamespaces := inject.IgnoredNamespaces.Copy().Delete(constants.KubeSystemNamespace)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top