Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 4,042 for Sort (0.17 sec)

  1. pkg/volume/util/volumeattributesclass.go

    			klog.V(4).Infof("GetDefaultVolumeAttributesClass added: %s", class.Name)
    		}
    	}
    
    	if len(defaultClasses) == 0 {
    		return nil, nil
    	}
    
    	// Primary sort by creation timestamp, newest first
    	// Secondary sort by class name, ascending order
    	sort.Slice(defaultClasses, func(i, j int) bool {
    		if defaultClasses[i].CreationTimestamp.UnixNano() == defaultClasses[j].CreationTimestamp.UnixNano() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:18:56 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. pkg/config/analysis/diag/messages.go

    package diag
    
    import (
    	"sort"
    )
    
    // Messages is a slice of Message items.
    type Messages []Message
    
    // Add a new message to the messages
    func (ms *Messages) Add(m ...Message) {
    	*ms = append(*ms, m...)
    }
    
    // Sort the message lexicographically by level, code, resource origin name, then string.
    func (ms *Messages) Sort() {
    	sort.Slice(*ms, func(i, j int) bool {
    		a, b := (*ms)[i], (*ms)[j]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 02:47:46 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/cache.go

    	hdrInt64Slice []*[]int64
    }
    
    func (c *Cache) Reset() {
    	nv := sort.Search(len(c.values), func(i int) bool { return c.values[i].ID == 0 })
    	xv := c.values[:nv]
    	for i := range xv {
    		xv[i] = Value{}
    	}
    	nb := sort.Search(len(c.blocks), func(i int) bool { return c.blocks[i].ID == 0 })
    	xb := c.blocks[:nb]
    	for i := range xb {
    		xb[i] = Block{}
    	}
    	nl := sort.Search(len(c.locs), func(i int) bool { return c.locs[i] == nil })
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 15 23:00:54 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/configurationCache/topLevel/groovy/build.gradle

    def listFiles(File dir) {
        dir.listFiles({ file -> file.isFile() } as FileFilter).name.sort()
    }
    
    tasks.register('listFiles') {
        doLast {
            println listFiles(dir)
        }
    }
    // end::not-supported[]
    
    // tag::workaround[]
    class Files {
        static def listFiles(File dir) {
            dir.listFiles({ file -> file.isFile() } as FileFilter).name.sort()
        }
    }
    
    tasks.register('listFilesFixed') {
        doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 567 bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/insight/DependencyResultSorterSpec.groovy

            new DefaultMutableVersionConstraint(version)
        }
    
        def "throws exception if dependency or requested component selector is null (#d1, #d2)"() {
            when:
            DependencyResultSorter.sort([d1, d2], versionSelectorScheme, versionComparator, versionParser)
    
            then:
            Throwable t = thrown(IllegalArgumentException)
            t.message == "Dependency edge or the requested component selector may not be null"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 18.6K bytes
    - Viewed (0)
  6. src/cmd/nm/doc.go

    // symbols (type U).
    //
    // The options control the printed output:
    //
    //	-n
    //		an alias for -sort address (numeric),
    //		for compatibility with other nm commands
    //	-size
    //		print symbol size in decimal between address and type
    //	-sort {address,name,none,size}
    //		sort output in the given order (default name)
    //		size orders from largest to smallest
    //	-type
    //		print symbol type after name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  7. pkg/volume/util/storageclass.go

    			klog.V(4).Infof("GetDefaultClass added: %s", class.Name)
    		}
    	}
    
    	if len(defaultClasses) == 0 {
    		return nil, nil
    	}
    
    	// Primary sort by creation timestamp, newest first
    	// Secondary sort by class name, ascending order
    	sort.Slice(defaultClasses, func(i, j int) bool {
    		if defaultClasses[i].CreationTimestamp.UnixNano() == defaultClasses[j].CreationTimestamp.UnixNano() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 09:27:59 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/componentconfigs/checksums.go

    	// for the same config maps. The solution here is to extract the keys into a slice and sort them.
    	// Then iterate over that slice to fetch the values to be hashed.
    	keys := []string{}
    	for key := range cm.Data {
    		keys = append(keys, key)
    	}
    	sort.Strings(keys)
    
    	for _, key := range keys {
    		hash.Write([]byte(cm.Data[key]))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/apihelpers/helpers.go

    		if priorityLevel.Status.Conditions[i].Type == conditionType {
    			return &priorityLevel.Status.Conditions[i]
    		}
    	}
    	return nil
    }
    
    var _ sort.Interface = FlowSchemaSequence{}
    
    // FlowSchemaSequence holds sorted set of pointers to FlowSchema objects.
    // FlowSchemaSequence implements `sort.Interface`
    type FlowSchemaSequence []*flowcontrol.FlowSchema
    
    func (s FlowSchemaSequence) Len() int {
    	return len(s)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/entity/SearchRequestParams.java

            if (StringUtil.isNotBlank(minDocCountStr)) {
                facetInfo.minDocCount = Long.parseLong(minDocCountStr);
            }
            final String sort = request.getParameter("facet.sort");
            if (StringUtil.isNotBlank(sort)) {
                facetInfo.sort = sort;
            }
            final String missing = request.getParameter("facet.missing");
            if (StringUtil.isNotBlank(missing)) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top