Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 987 for Tconstants (0.56 sec)

  1. cmd/kubeadm/app/componentconfigs/kubelet_test.go

    	"k8s.io/kubernetes/cmd/kubeadm/app/constants"
    )
    
    func testKubeletConfigMap(contents string) *v1.ConfigMap {
    	return &v1.ConfigMap{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      constants.KubeletBaseConfigurationConfigMap,
    			Namespace: metav1.NamespaceSystem,
    		},
    		Data: map[string]string{
    			constants.KubeletBaseConfigurationConfigMapKey: dedent.Dedent(contents),
    		},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 10:26:46 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/config/strict/strict_test.go

    	}{
    		// tests with file errors
    		{
    			fileName:      "invalid_casesensitive_field.yaml",
    			kind:          constants.ClusterConfigurationKind,
    			groupVersion:  kubeadmapiv1.SchemeGroupVersion,
    			expectedError: true,
    		},
    		{
    			fileName:      "invalid_duplicate_field_clustercfg.yaml",
    			kind:          constants.InitConfigurationKind,
    			groupVersion:  kubeadmapiv1.SchemeGroupVersion,
    			expectedError: true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 17 17:37:41 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  3. cni/pkg/nodeagent/healthServer_test.go

    	defer server.Close()
    
    	makeReq(t, server.URL, constants.LivenessEndpoint, http.StatusOK)
    	makeReq(t, server.URL, constants.ReadinessEndpoint, http.StatusServiceUnavailable)
    
    	installReady.Store(true)
    	watchReady.Store(true)
    	assert.Equal(t, installReady.Load(), true)
    	assert.Equal(t, watchReady.Load(), true)
    
    	makeReq(t, server.URL, constants.LivenessEndpoint, http.StatusOK)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. cni/pkg/repair/repair_test_helpers.go

    		Name: constants.ValidationContainerName,
    		State: corev1.ContainerState{
    			Waiting: &corev1.ContainerStateWaiting{
    				Reason:  "CrashLoopBackOff",
    				Message: "Back-off 5m0s restarting failed blah blah blah",
    			},
    		},
    		LastTerminationState: corev1.ContainerState{
    			Terminated: &corev1.ContainerStateTerminated{
    				ExitCode: constants.ValidationErrorCode,
    				Reason:   "Error",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 12 17:39:53 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/upgrade/diff.go

    }
    
    var (
    	defaultAPIServerManifestPath         = constants.GetStaticPodFilepath(constants.KubeAPIServer, constants.GetStaticPodDirectory())
    	defaultControllerManagerManifestPath = constants.GetStaticPodFilepath(constants.KubeControllerManager, constants.GetStaticPodDirectory())
    	defaultSchedulerManifestPath         = constants.GetStaticPodFilepath(constants.KubeScheduler, constants.GetStaticPodDirectory())
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. src/go/doc/testdata/d.2.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. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/deps/ClassAnalysis.java

            this.dependencyToAllReason = dependencyToAllReason;
            this.constants = constants.isEmpty() ? IntSets.EMPTY_SET : constants;
        }
    
        public String getClassName() {
            return className;
        }
    
        public Set<String> getPrivateClassDependencies() {
            return privateClassDependencies;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 15:22:57 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. pkg/kube/inject/initializer_test.go

    import (
    	"testing"
    
    	"istio.io/istio/pkg/config/constants"
    )
    
    func TestSystemNamespaces_Contains(t *testing.T) {
    	tests := []struct {
    		ns       string
    		expected bool
    	}{
    		{
    			ns:       constants.KubeSystemNamespace,
    			expected: true,
    		},
    		{
    			ns:       constants.KubePublicNamespace,
    			expected: true,
    		},
    		{
    			ns:       constants.KubeNodeLeaseNamespace,
    			expected: true,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 10 17:15:19 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/ds/AbstractDataStoreTest.java

            value = null;
            assertEquals("", dataStore.convertValue(Constants.DEFAULT_SCRIPT, value, paramMap));
    
            value = "";
            assertEquals("", dataStore.convertValue(Constants.DEFAULT_SCRIPT, value, paramMap));
    
            value = " ";
            assertNull(dataStore.convertValue(Constants.DEFAULT_SCRIPT, value, paramMap));
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. tools/istio-clean-iptables/pkg/config/config.go

    }
    
    var envoyUserVar = env.Register(constants.EnvoyUser, "istio-proxy", "Envoy proxy username")
    
    func (c *Config) FillConfigFromEnvironment() {
    	// Fill in env-var only options
    	c.OwnerGroupsInclude = constants.OwnerGroupsInclude.Get()
    	c.OwnerGroupsExclude = constants.OwnerGroupsExclude.Get()
    	c.InboundInterceptionMode = constants.IstioInboundInterceptionMode.Get()
    	c.InboundTProxyMark = constants.IstioInboundTproxyMark.Get()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 01 04:37:36 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top