Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,455 for Tconstants (0.16 sec)

  1. src/main/java/org/codelibs/fess/util/FacetResponse.java

            aggregations.forEach(aggregation -> {
                if (aggregation.getName().startsWith(Constants.FACET_FIELD_PREFIX)) {
                    final Terms termFacet = (Terms) aggregation;
                    fieldList.add(new Field(termFacet));
                } else if (aggregation.getName().startsWith(Constants.FACET_QUERY_PREFIX)) {
                    final Filter queryFacet = (Filter) aggregation;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/ScheduledJobService.java

            scheduledJobBhv.insertOrUpdate(scheduledJob, op -> {
                op.setRefreshPolicy(Constants.TRUE);
            });
        }
    
        public List<ScheduledJob> getCrawlerJobList() {
            return scheduledJobBhv.selectList(cb -> {
                cb.query().setCrawler_Equal(Constants.T);
                cb.query().addOrderBy_SortOrder_Asc();
                cb.query().addOrderBy_Name_Asc();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. 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)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    		map[string]string{
    			constants.ManagedGatewayLabel: constants.ManagedGatewayMeshControllerLabel,
    			constants.GatewayNameLabel:    "waypoint-ns",
    		}, nil, true, corev1.PodRunning)
    	s.assertEvent(t, s.podXdsName("waypoint-ns-pod"))
    	// create the waypoint service
    	s.addService(t, "waypoint-ns",
    		map[string]string{constants.ManagedGatewayLabel: constants.ManagedGatewayMeshControllerLabel},
    		map[string]string{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/exentity/WebAuthentication.java

        }
    
        private AuthScheme getAuthScheme() {
            final String scheme = getProtocolScheme();
            if (Constants.BASIC.equals(scheme)) {
                return new BasicScheme();
            }
            if (Constants.DIGEST.equals(scheme)) {
                return new DigestScheme();
            }
            if (Constants.NTLM.equals(scheme)) {
                final Properties props = new Properties();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  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/helper/SearchHelper.java

                            }
                        }
                    }
                }
                if (langSet.size() > 1 && langSet.contains(Constants.ALL_LANGUAGES)) {
                    return new String[] { Constants.ALL_LANGUAGES };
                }
                langSet.remove(Constants.ALL_LANGUAGES);
                return langSet.toArray(new String[langSet.size()]);
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java

            }
    
            if (!docMap.containsKey(Constants.SCORE)) {
                docMap.put(Constants.SCORE, searchHit.getScore());
            }
    
            if (!docMap.containsKey(fessConfig.getIndexFieldId())) {
                docMap.put(fessConfig.getIndexFieldId(), searchHit.getId());
            }
    
            final String[] searchers = DocumentUtil.getValue(docMap, Constants.SEARCHER, String[].class);
            if (searchers != null) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top