Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,678 for Sort (0.46 sec)

  1. src/cmd/vendor/golang.org/x/mod/sumdb/dirhash/hash.go

    //
    // Hash1 is "h1:" followed by the base64-encoded SHA-256 hash of a summary
    // prepared as if by the Unix command:
    //
    //	sha256sum $(find . -type f | sort) | sha256sum
    //
    // More precisely, the hashed summary contains a single line for each file in the list,
    // ordered by sort.Strings applied to the file names, where each line consists of
    // the hexadecimal SHA-256 hash of the file content,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/labels/labels.go

    func (ls Set) String() string {
    	selector := make([]string, 0, len(ls))
    	for key, value := range ls {
    		selector = append(selector, key+"="+value)
    	}
    	// Sort for determinism.
    	sort.StringSlice(selector).Sort()
    	return strings.Join(selector, ",")
    }
    
    // Has returns whether the provided label exists in the map.
    func (ls Set) Has(label string) bool {
    	_, exists := ls[label]
    	return exists
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 14 16:39:04 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/collect/testing/testers/SortedMapNavigationTester.java

        List<Entry<K, V>> entries =
            Helpers.copyToList(
                getSubjectGenerator()
                    .getSampleElements(getSubjectGenerator().getCollectionSize().getNumElements()));
        Collections.sort(entries, Helpers.<K, V>entryComparator(navigableMap.comparator()));
    
        // some tests assume SEVERAL == 3
        if (entries.size() >= 1) {
          a = entries.get(0);
          if (entries.size() >= 3) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. manifests/addons/dashboards/istio-performance-dashboard.json

            "legend": {
              "calcs": [],
              "displayMode": "list",
              "placement": "bottom",
              "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
    - 39.6K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/TestBuildCache.groovy

        }
    
        List<TestFile> listCacheFailedFiles() {
            cacheDir.listFiles().findAll { it.name.endsWith(DirectoryBuildCacheServiceFactory.FAILED_READ_SUFFIX) }.sort()
        }
    
        List<TestFile> listCacheFiles() {
            cacheDir.listFiles().findAll { it.name ==~ /\p{XDigit}{${Hashing.defaultFunction().hexDigits}}/ }.sort()
        }
    
        void deleteCacheEntry(String cacheKey) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/projection/AbstractCollectionModelProjectionTest.groovy

        }
    
        def "can sort within mutate block"() {
            when:
            mutate {
                add 'foo'
                add 'bar'
                add 'baz'
                sort()
            }
    
    
            then:
            def list = registry.realize(collectionPath, collectionType)
            list == checkable(['bar', 'baz', 'foo'])
        }
    
        def "can sort within mutate block using custom comparator"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/util/testing/fake.go

    }
    
    func toServiceKey(serv *utilipvs.VirtualServer) ServiceKey {
    	return ServiceKey{
    		IP:       serv.Address.String(),
    		Port:     serv.Port,
    		Protocol: serv.Protocol,
    	}
    }
    
    func toRealServerKey(rs *utilipvs.RealServer) *RealServerKey {
    	return &RealServerKey{
    		Address: rs.Address,
    		Port:    rs.Port,
    	}
    }
    
    // AddVirtualServer is a fake implementation, it simply adds the VirtualServer into the cache store.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/query/TermQueryCommand.java

    import org.opensearch.index.query.QueryBuilder;
    import org.opensearch.index.query.QueryBuilders;
    import org.opensearch.search.sort.SortOrder;
    
    public class TermQueryCommand extends QueryCommand {
        private static final Logger logger = LogManager.getLogger(TermQueryCommand.class);
    
        private static final String SORT_FIELD = "sort";
    
        @Override
        protected String getQueryClassName() {
            return TermQuery.class.getSimpleName();
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/sym.go

    		// that can be scheduled independently. We need to reorder those
    		// symbols reliably. Sort by name but use a stable sort, so that
    		// any original entries with the same name (all DWARFVAR symbols
    		// have empty names but different relocation sets) are not shuffled.
    		// TODO: Find a better place and optimize to only sort TOC symbols.
    		sort.SliceStable(ctxt.Data, func(i, j int) bool {
    			return ctxt.Data[i].Name < ctxt.Data[j].Name
    		})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/mod/semver/semver.go

    	cmp := Compare(vs[i], vs[j])
    	if cmp != 0 {
    		return cmp < 0
    	}
    	return vs[i] < vs[j]
    }
    
    // Sort sorts a list of semantic version strings using [ByVersion].
    func Sort(list []string) {
    	sort.Sort(ByVersion(list))
    }
    
    func parse(v string) (p parsed, ok bool) {
    	if v == "" || v[0] != 'v' {
    		return
    	}
    	p.major, v, ok = parseInt(v[1:])
    	if !ok {
    		return
    	}
    	if v == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 8.9K bytes
    - Viewed (0)
Back to top