Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,941 for pconstants (0.21 sec)

  1. guava/src/com/google/common/primitives/UnsignedBytes.java

           * because the null check on the theUnsafe object remains inside the loop and
           * BYTE_ARRAY_BASE_OFFSET doesn't get constant-folded.
           *
           * The compiler can treat static final fields as compile-time constants and can constant-fold
           * them while (final or not) local variables are run time values.
           */
    
          static final Unsafe theUnsafe = getUnsafe();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  2. 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)
  3. cmd/kubeadm/app/phases/upgrade/staticpods.go

    	if component == constants.KubeControllerManager {
    		certificates = []string{
    			constants.ControllerManagerKubeConfigFileName,
    		}
    	}
    
    	// if scheduler, renew the certificate embedded in the scheduler kubeConfig file
    	if component == constants.KubeScheduler {
    		certificates = []string{
    			constants.SchedulerKubeConfigFileName,
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  4. 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)
  5. fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/XmlTransformerTest.java

            responseData.setResponseBody(ResourceUtil.getResourceAsFile("extractor/test.xml"), false);
            responseData.setCharSet(Constants.UTF_8);
            final ResultData resultData = xmlTransformer.transform(responseData);
            assertEquals(result, new String(resultData.getData(), Constants.UTF_8));
        }
    
        public void test_transformNs() throws Exception {
            final String result = "<?xml version=\"1.0\"?>\n"//
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

                final Map<String, String> configParamMap = webConfig.getConfigParameterMap(ConfigName.CONFIG);
    
                if (Constants.TRUE.equalsIgnoreCase(configParamMap.get(Config.CLEANUP_ALL))) {
                    deleteCrawlData(sid);
                } else if (Constants.TRUE.equalsIgnoreCase(configParamMap.get(Config.CLEANUP_URL_FILTERS))) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 22.6K bytes
    - Viewed (1)
  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. cmd/kubeadm/app/util/config/initconfiguration_test.go

    	"k8s.io/kubernetes/cmd/kubeadm/app/constants"
    )
    
    func TestLoadInitConfigurationFromFile(t *testing.T) {
    	certDir := "/tmp/foo"
    	clusterCfg := []byte(fmt.Sprintf(`
    apiVersion: %s
    kind: ClusterConfiguration
    certificatesDir: %s
    kubernetesVersion: %s`, kubeadmapiv1.SchemeGroupVersion.String(), certDir, constants.MinimumControlPlaneVersion.String()))
    
    	// Create temp folder for the test case
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 13 09:17:03 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top