Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 4,735 for Sort (0.04 sec)

  1. staging/src/k8s.io/apimachinery/pkg/fields/fields.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 field exists in the map.
    func (ls Set) Has(field string) bool {
    	_, exists := ls[field]
    	return exists
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 19 14:50:16 UTC 2017
    - 1.7K bytes
    - Viewed (0)
  2. 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)
  3. android/guava-tests/benchmark/com/google/common/collect/SortedCopyBenchmark.java

      @Param InputOrder inputOrder;
    
      enum InputOrder {
        SORTED {
          @Override
          void arrange(List<Integer> list) {
            Collections.sort(list);
          }
        },
        ALMOST_SORTED {
          @Override
          void arrange(List<Integer> list) {
            Collections.sort(list);
            if (list.size() > 1) {
              int i = (list.size() - 1) / 2;
              Collections.swap(list, i, i + 1);
            }
          }
        },
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 3.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/distpack/archive.go

    			}
    			return x[i] < y[i]
    		}
    	}
    	return len(x) < len(y)
    }
    
    // Sort sorts the files in the archive.
    // It is only necessary to call Sort after calling Add or RenameGoMod.
    // NewArchive returns a sorted archive, and the other methods
    // preserve the sorting of the archive.
    func (a *Archive) Sort() {
    	sort.Slice(a.Files, func(i, j int) bool {
    		return nameLess(a.Files[i].Name, a.Files[j].Name)
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 17:37:52 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. schema/index.go

    					Where:   settings["WHERE"],
    					Comment: settings["COMMENT"],
    					Option:  settings["OPTION"],
    					Fields: []IndexOption{{
    						Field:      field,
    						Expression: settings["EXPRESSION"],
    						Sort:       settings["SORT"],
    						Collate:    settings["COLLATE"],
    						Length:     length,
    						priority:   priority,
    					}},
    				})
    			}
    		}
    	}
    
    	err = nil
    	return
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sun Feb 04 07:49:19 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/files/fileCollections/groovy/build.gradle

            println "Contents of $srcDir.name"
            collection.collect { projectDirectory.asFile.relativePath(it) }.sort().each { println it }
    
            srcDir = projectDirectory.file('src2').asFile
            println "Contents of $srcDir.name"
            collection.collect { projectDirectory.asFile.relativePath(it) }.sort().each { println it }
        }
    }
    // end::closure[]
    
    tasks.register('conventions') {
        def objects = objects
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 13:55:00 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/cse.go

    					if valueEqClass[v.Args[0].ID] > valueEqClass[v.Args[1].ID] {
    						v.Args[0], v.Args[1] = v.Args[1], v.Args[0]
    					}
    				}
    			}
    
    			// Sort by eq class of arguments.
    			byArgClass.a = e
    			byArgClass.eqClass = valueEqClass
    			sort.Sort(byArgClass)
    
    			// Find split points.
    			splitPoints = append(splitPoints[:0], 0)
    			for j := 1; j < len(e); j++ {
    				v, w := e[j-1], e[j]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 9.6K bytes
    - Viewed (0)
Back to top