Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,671 for Sort (0.16 sec)

  1. src/runtime/pprof/label_test.go

    // license that can be found in the LICENSE file.
    
    package pprof
    
    import (
    	"context"
    	"reflect"
    	"sort"
    	"testing"
    )
    
    func labelsSorted(ctx context.Context) []label {
    	ls := []label{}
    	ForLabels(ctx, func(key, value string) bool {
    		ls = append(ls, label{key, value})
    		return true
    	})
    	sort.Sort(labelSorter(ls))
    	return ls
    }
    
    type labelSorter []label
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/plan9/mkerrors.sh

    		$2 ~ /^__W[A-Z0-9]+$/ {printf("\t%s = C.%s\n", substr($2,3), $2)}
    
    		{next}
    	' | sort
    
    	echo ')'
    ) >_const.go
    
    # Pull out the error names for later.
    errors=$(
    	echo '#include <errno.h>' | $CC -x c - -E -dM $ccflags |
    	awk '$1=="#define" && $2 ~ /^E[A-Z0-9_]+$/ { print $2 }' |
    	sort
    )
    
    # Pull out the signal names for later.
    signals=$(
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 5.9K bytes
    - Viewed (1)
  3. tests/update_test.go

    	result.Friends = append(user.Friends, result.Friends...)
    
    	sort.Slice(result.Pets, func(i, j int) bool {
    		return result.Pets[i].ID < result.Pets[j].ID
    	})
    	sort.Slice(result.Team, func(i, j int) bool {
    		return result.Team[i].ID < result.Team[j].ID
    	})
    	sort.Slice(result.Friends, func(i, j int) bool {
    		return result.Friends[i].ID < result.Friends[j].ID
    	})
    	sort.Slice(result2.Pets, func(i, j int) bool {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Dec 04 03:50:58 UTC 2023
    - 30.3K bytes
    - Viewed (0)
  4. pkg/controller/deployment/rolling.go

    	logger := klog.FromContext(ctx)
    	sort.Sort(controller.ReplicaSetsByCreationTimestamp(oldRSs))
    	// Safely scale down all old replica sets with unhealthy replicas. Replica set will sort the pods in the order
    	// such that not-ready < ready, unscheduled < scheduled, and pending < running. This ensures that unhealthy replicas will
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  5. pkg/scheduler/profile/profile_test.go

    						},
    						Bind: config.PluginSet{
    							Enabled: []config.Plugin{
    								{Name: "Bind2"},
    							},
    						},
    					},
    				},
    			},
    			wantErr: "different queue sort plugins",
    		},
    		{
    			name: "different queue sort args",
    			cfgs: []config.KubeSchedulerProfile{
    				{
    					SchedulerName: "profile-1",
    					Plugins: &config.Plugins{
    						QueueSort: config.PluginSet{
    							Enabled: []config.Plugin{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 20 09:49:54 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    func (g *Graph) SortNodes(cum bool, visualMode bool) {
    	// Sort nodes based on requested mode
    	switch {
    	case visualMode:
    		// Specialized sort to produce a more visually-interesting graph
    		g.Nodes.Sort(EntropyOrder)
    	case cum:
    		g.Nodes.Sort(CumNameOrder)
    	default:
    		g.Nodes.Sort(FlatNameOrder)
    	}
    }
    
    // SelectTopNodePtrs returns a set of the top maxNodes *Node in a graph.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  7. src/cmd/fix/main.go

    func usage() {
    	fmt.Fprintf(os.Stderr, "usage: go tool fix [-diff] [-r fixname,...] [-force fixname,...] [path ...]\n")
    	flag.PrintDefaults()
    	fmt.Fprintf(os.Stderr, "\nAvailable rewrites are:\n")
    	sort.Sort(byName(fixes))
    	for _, f := range fixes {
    		if f.disabled {
    			fmt.Fprintf(os.Stderr, "\n%s (disabled)\n", f.name)
    		} else {
    			fmt.Fprintf(os.Stderr, "\n%s\n", f.name)
    		}
    		desc := strings.TrimSpace(f.desc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. test/fixedbugs/issue57184.go

    // run
    
    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"log"
    	"reflect"
    	"sort"
    )
    
    func main() {
    	const length = 257
    	x := make([]int64, length)
    	for i := 0; i < length; i++ {
    		x[i] = int64(i) * 27644437 % int64(length)
    	}
    
    	isLessStatic := func(i, j int) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 09 21:38:33 UTC 2022
    - 851 bytes
    - Viewed (0)
  9. testing/integ-test/src/integTest/groovy/org/gradle/integtests/MixInCoreTypesTransformingClassLoaderIntegrationTest.groovy

                    static def returnTypesFor(Object object, String methodName, Class... returnTypes) {
                        assert object.getClass().methods.findAll { it.name == methodName }*.returnType.name.sort() == returnTypes*.name.sort()
                    }
                }
    
                task customTask(type: CustomTask) {
                    doFirst { task ->
                        // Internal return type leaked in Gradle 0.9
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. 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)
Back to top