Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,476 for Sort (0.12 sec)

  1. src/main/java/org/codelibs/fess/helper/QueryHelper.java

    import org.opensearch.search.sort.SortBuilder;
    import org.opensearch.search.sort.SortBuilders;
    import org.opensearch.search.sort.SortOrder;
    
    public class QueryHelper {
        private static final Logger logger = LogManager.getLogger(QueryHelper.class);
    
        protected static final String PREFERENCE_QUERY = "_query";
    
        protected String sortPrefix = "sort:";
    
        protected String additionalQuery;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/labels/selector.go

    func parse(selector string, path *field.Path) (internalSelector, error) {
    	p := &Parser{l: &Lexer{s: selector, pos: 0}, path: path}
    	items, err := p.parse()
    	if err != nil {
    		return nil, err
    	}
    	sort.Sort(ByKey(items)) // sort to grant determistic parsing
    	return internalSelector(items), err
    }
    
    func validateLabelKey(k string, path *field.Path) *field.Error {
    	if errs := validation.IsQualifiedName(k); len(errs) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 31.8K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/cpumanager/topology_hints_test.go

    		}
    
    		if m.pendingAdmissionPod == nil {
    			t.Errorf("The pendingAdmissionPod should point to the current pod after the call to GetTopologyHints()")
    		}
    
    		sort.SliceStable(hints, func(i, j int) bool {
    			return hints[i].LessThan(hints[j])
    		})
    		sort.SliceStable(tc.expectedHints, func(i, j int) bool {
    			return tc.expectedHints[i].LessThan(tc.expectedHints[j])
    		})
    		if !reflect.DeepEqual(tc.expectedHints, hints) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. pkg/proxy/endpointslicecache.go

    				continue
    			}
    			// TODO: handle nil ports to mean "all"
    			if port.Port == nil || *port.Port == int32(0) {
    				klog.ErrorS(nil, "Ignoring invalid endpoint port", "portName", *port.Name)
    				continue
    			}
    
    			svcPortName := ServicePortName{
    				NamespacedName: serviceNN,
    				Port:           *port.Name,
    				Protocol:       *port.Protocol,
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 11.7K bytes
    - Viewed (1)
  5. internal/logger/logger.go

    // unique set. data is expected to be pre-sorted, and the resulting set in
    // the range [0:size] will remain in sorted order. Uniq, following a
    // sort.Sort call, can be used to prepare arbitrary inputs for use as sets.
    func uniq(data sort.Interface) (size int) {
    	p, l := 0, data.Len()
    	if l <= 1 {
    		return l
    	}
    	for i := 1; i < l; i++ {
    		if !data.Less(p, i) {
    			continue
    		}
    		p++
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  6. istioctl/pkg/writer/envoy/configdump/listener.go

    }
    
    func (c *ConfigWriter) PrintRemoteListenerSummary() error {
    	w, listeners, err := c.setupListenerConfigWriter()
    	if err != nil {
    		return err
    	}
    	// Sort by port, addr, type
    	sort.Slice(listeners, func(i, j int) bool {
    		if listeners[i].GetInternalListener() != nil && listeners[j].GetInternalListener() != nil {
    			return listeners[i].GetName() < listeners[j].GetName()
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/typechecking.go

    		if len(versions) == 0 {
    			continue
    		}
    		resources := extractResources(&rule.Rule)
    		if len(resources) == 0 {
    			continue
    		}
    		// sort GVRs so that the loop below provides
    		// consistent results.
    		sort.Strings(groups)
    		sort.Strings(versions)
    		sort.Strings(resources)
    		count := 0
    		for _, group := range groups {
    			for _, version := range versions {
    				for _, resource := range resources {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/quantization/tools/tflite_op_coverage_spec_getters_gen.cc

      std::string dynamic_quant_kernel_support_regex =
          "bool GetDynamicRangeQuantKernelSupport() { return true; }";
      raw_ostream &os = *ostream;
      std::vector<std::string> weight_only;
      llvm::sort(defs, LessRecord());
    
      os.indent(0) << "const std::set<std::string> &ExportDynamicRangeSpec() {\n";
      os.indent(2) << "static const std::set<std::string> * result =\n";
      os.indent(4) << "new std::set<std::string>({\n";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  9. cmd/metacache-walk.go

    				meta.name = strings.TrimSuffix(meta.name, SlashSeparator)
    				meta.name = pathJoinBuf(sb, current, meta.name)
    
    				return send(meta)
    			}
    			// Skip all other files.
    		}
    
    		// Process in sort order.
    		sort.Strings(entries)
    		dirStack := make([]string, 0, 5)
    		prefix = "" // Remove prefix after first level as we have already filtered the list.
    		if len(forward) > 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 01 05:17:37 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedModelMapIntegrationTest.groovy

                    create("print") {
                      doLast {
                        println "containerThings: ${$.container.things.collect { it.name + ":" + it.value }.sort().join(",")}"
                        println "things: ${$.things.collect { it.name + ":" + it.value }.sort().join(",")}"
                      }
                    }
                  }
                }
            '''
    
            then:
            succeeds "print"
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.5K bytes
    - Viewed (0)
Back to top