Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 4,007 for Sort (0.05 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. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DirectoryFileTreeTest.groovy

            def fileTree = new DirectoryFileTree(root, new PatternSet(), TestFiles.fileSystem(), false)
    
            when:
            fileTree.visit(visitor)
    
            then:
            visitor.visited.sort() == [rootFile1, rootFile2, dir1, dirFile1, dirFile2].sort()
    
            where:
            visitor << [new TestVisitor(false), new TestVisitor(true)]
        }
    
        def "walk depth first - isReproducible: #visitor.isReproducibleFileOrder"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. pkg/test/framework/tools/featuresgen/cmd/root.go

    		panic(err)
    	}
    
    	constants := readVal(m, make([]string, 0))
    	// The parsing of the yaml file doesn't seem to happen in a consistent order. To avoid a different file every time 'make gen' is run, we sort the list.
    	sort.Strings(constants)
    	return strings.Join(constants, "\n")
    }
    
    func check(err error) {
    	if err != nil {
    		panic(err)
    	}
    }
    
    // Main function that writes the new generated labels file
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  6. releasenotes/notes/failover-priority-lb.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 25 06:49:06 UTC 2021
    - 258 bytes
    - Viewed (0)
  7. manifests/addons/dashboards/istio-service-dashboard.json

            "legend": {
              "calcs": [],
              "displayMode": "list",
              "placement": "right",
              "showLegend": true
            },
            "tooltip": {
              "mode": "multi",
              "sort": "none"
            }
          },
          "pluginVersion": "10.1.5",
          "targets": [
            {
              "datasource": {
                "type": "prometheus",
                "uid": "${datasource}"
              },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 111.8K bytes
    - Viewed (0)
  8. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/AbstractAcceptedApiChangesMaintenanceTask.kt

            return Gson().fromJson(jsonString, AcceptedApiChanges::class.java)
        }
    
        /**
         * Sorts the given list of [AcceptedApiChange]s by type and member.
         * <p>
         * This sort ought to remain consistent with the sort used by the [EnrichedReportRenderer].
         */
        @Suppress("KDocUnresolvedReference")
        protected
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. istioctl/pkg/util/configdump/listener.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package configdump
    
    import (
    	"sort"
    
    	admin "github.com/envoyproxy/go-control-plane/envoy/admin/v3"
    	listener "github.com/envoyproxy/go-control-plane/envoy/config/listener/v3"
    
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 08:41:32 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/componentconfigs/utils.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package componentconfigs
    
    import (
    	"fmt"
    	"sort"
    	"strings"
    
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/klog/v2"
    )
    
    // UnsupportedConfigVersionError is a special error type returned whenever we encounter too old config version
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 18 08:48:29 UTC 2022
    - 2.6K bytes
    - Viewed (0)
Back to top