Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,941 for pconstants (0.21 sec)

  1. src/go/doc/testdata/blank.go

    // See issue 5397.
    package blank
    
    import "os"
    
    type T int
    
    // T constants counting from a blank constant.
    const (
    	_ T = iota
    	T1
    	T2
    )
    
    // T constants counting from unexported constants.
    const (
    	tweedledee T = iota
    	tweedledum
    	C1
    	C2
    	alice
    	C3
    	redQueen int = iota
    	C4
    )
    
    // Constants with a single type that is not propagated.
    const (
    	zero     os.FileMode = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 18:01:14 UTC 2017
    - 1.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

            return Constants.TRUE.equalsIgnoreCase(getSystemProperty(key, defaultValue ? Constants.TRUE : Constants.FALSE));
        }
    
        default void setSystemPropertyAsBoolean(final String key, final boolean value) {
            setSystemProperty(key, value ? Constants.TRUE : Constants.FALSE);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/images/images_test.go

    				},
    			},
    			expectedImages: []string{
    				"/kube-apiserver:",
    				"/kube-controller-manager:",
    				"/kube-scheduler:",
    				"/kube-proxy:",
    				"/coredns:" + constants.CoreDNSVersion,
    				"/pause:" + constants.PauseVersion,
    				"/etcd:" + constants.DefaultEtcdVersion,
    			},
    		},
    		{
    			name: "CoreDNS and kube-proxy image are returned",
    			cfg:  &kubeadmapi.ClusterConfiguration{},
    			expectedImages: []string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 06:33:37 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/images/images.go

    		etcdImageRepository = cfg.Etcd.Local.ImageRepository
    	}
    	// Etcd uses an imageTag that corresponds to the etcd version matching the Kubernetes version
    	etcdImageTag := constants.DefaultEtcdVersion
    	etcdVersion, warning, err := constants.EtcdSupportedVersion(constants.SupportedEtcdVersion, cfg.KubernetesVersion)
    	if err == nil {
    		etcdImageTag = etcdVersion.String()
    	}
    	if warning != nil {
    		klog.V(1).Infof("WARNING: %v", warning)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 06:33:37 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

                }
                if (SpnegoHttpFilter.Constants.LOGIN_CONF.equals(name)) {
                    return getResourcePath(getProperty(SPNEGO_LOGIN_CONF, "auth_login.conf"));
                }
                if (SpnegoHttpFilter.Constants.KRB5_CONF.equals(name)) {
                    return getResourcePath(getProperty(SPNEGO_KRB5_CONF, "krb5.conf"));
                }
                if (SpnegoHttpFilter.Constants.CLIENT_MODULE.equals(name)) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. src/cmd/doc/pkg.go

    	}
    	if len(pkgs) > 1 {
    		log.Fatalf("multiple packages in directory %s", pkg.Dir)
    	}
    	astPkg := pkgs[pkg.Name]
    
    	// TODO: go/doc does not include typed constants in the constants
    	// list, which is what we want. For instance, time.Sunday is of type
    	// time.Weekday, so it is defined in the type but not in the
    	// Consts list for the package. This prevents
    	//	go doc time.Sunday
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 20:15:52 UTC 2024
    - 32K bytes
    - Viewed (0)
Back to top