Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 767 for pconstants (0.39 sec)

  1. cmd/kubeadm/app/cmd/config_test.go

    			name: "InitConfiguration: No component configs",
    			expectedKinds: []string{
    				constants.ClusterConfigurationKind,
    				constants.InitConfigurationKind,
    			},
    			cmdProc: newCmdConfigPrintInitDefaults,
    		},
    		{
    			name: "InitConfiguration: KubeProxyConfiguration",
    			expectedKinds: []string{
    				constants.ClusterConfigurationKind,
    				constants.InitConfigurationKind,
    				"KubeProxyConfiguration",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. 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)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/FaultTolerantClientTest.java

            assertEquals(1, testListener.endCount);
            assertEquals(url, testListener.requestUrl);
            assertEquals(Constants.GET_METHOD, testListener.requestMethod);
            assertNull(testListener.exceptionUrl);
            assertEquals(1, testClient.count);
            assertEquals(url, response.getUrl());
            assertEquals(Constants.GET_METHOD, response.getMethod());
        }
    
        public void test_doGet_with4Exception() {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. 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 (0)
  5. 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)
  6. 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)
  7. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    	Namespaces krt.Collection[*v1.Namespace], o metav1.ObjectMeta,
    ) *Waypoint {
    	w := fetchWaypointForTarget(ctx, Waypoints, Namespaces, o)
    	if w != nil {
    		if w.TrafficType == constants.ServiceTraffic || w.TrafficType == constants.AllTraffic {
    			return w
    		}
    		// Waypoint does not support Service traffic
    		log.Debugf("Unable to add waypoint %s/%s; traffic type %s not supported for %s/%s",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/upgrade/staticpods_test.go

    				t.Fatalf("couldn't get create cert tree: %v", err)
    			}
    
    			for _, kubeConfig := range []string{
    				constants.AdminKubeConfigFileName,
    				constants.SuperAdminKubeConfigFileName,
    				constants.SchedulerKubeConfigFileName,
    				constants.ControllerManagerKubeConfigFileName,
    			} {
    				if rt.skipKubeConfig == kubeConfig {
    					continue
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 32K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/fileconfig/AdminFileconfigAction.java

                        copyBeanToBean(entity, form, copyOp -> {
                            copyOp.excludeNull();
                            copyOp.exclude(Stream.concat(Stream.of(Constants.COMMON_CONVERSION_RULE),
                                    Stream.of(Constants.PERMISSIONS, Constants.VIRTUAL_HOSTS)).toArray(n -> new String[n]));
                        });
                        final PermissionHelper permissionHelper = ComponentUtil.getPermissionHelper();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/webconfig/AdminWebconfigAction.java

                        copyBeanToBean(entity, form, copyOp -> {
                            copyOp.excludeNull();
                            copyOp.exclude(Stream.concat(Stream.of(Constants.COMMON_CONVERSION_RULE),
                                    Stream.of(Constants.PERMISSIONS, Constants.VIRTUAL_HOSTS)).toArray(n -> new String[n]));
                        });
                        final PermissionHelper permissionHelper = ComponentUtil.getPermissionHelper();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top