Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 558 for Sort (0.04 sec)

  1. src/cmd/trace/tasks.go

    		for _, task := range tasks {
    			stats, ok := summary[task.Name]
    			if !ok {
    				stats.Type = task.Name
    			}
    			stats.add(task)
    			summary[task.Name] = stats
    		}
    
    		// Sort tasks by type.
    		userTasks := make([]taskStats, 0, len(summary))
    		for _, stats := range summary {
    			userTasks = append(userTasks, stats)
    		}
    		slices.SortFunc(userTasks, func(a, b taskStats) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. cmd/signature-v4.go

    // types.
    // - Based on Authorization header.
    // - Based on Query parameters.
    // - Based on Form POST policy.
    package cmd
    
    import (
    	"bytes"
    	"crypto/subtle"
    	"encoding/hex"
    	"net/http"
    	"net/url"
    	"sort"
    	"strconv"
    	"strings"
    	"time"
    
    	"github.com/minio/minio-go/v7/pkg/s3utils"
    	"github.com/minio/minio-go/v7/pkg/set"
    	"github.com/minio/minio/internal/auth"
    	"github.com/minio/minio/internal/hash/sha256"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 16 23:13:47 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java

        }
      }
    
      public void testHeadSetInclusive() {
        String[] strings = NUMBER_NAMES.toArray(new String[0]);
        ImmutableSortedSet<String> set = ImmutableSortedSet.copyOf(strings);
        Arrays.sort(strings);
        for (int i = 0; i < strings.length; i++) {
          assertThat(set.headSet(strings[i], true))
              .containsExactlyElementsIn(sortedNumberNames(0, i + 1))
              .inOrder();
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/CollectionUtils.java

        }
    
    
        /**
         * Returns a sorted copy of the provided collection of things. Uses the provided comparator to sort.
         */
        public static <T> List<T> sort(Iterable<? extends T> things, Comparator<? super T> comparator) {
            List<T> copy = toMutableList(things);
            Collections.sort(copy, comparator);
            return copy;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  5. tests/preload_test.go

    package tests_test
    
    import (
    	"context"
    	"encoding/json"
    	"regexp"
    	"sort"
    	"strconv"
    	"sync"
    	"testing"
    	"time"
    
    	"gorm.io/gorm"
    	"gorm.io/gorm/clause"
    	. "gorm.io/gorm/utils/tests"
    )
    
    func TestPreloadWithAssociations(t *testing.T) {
    	user := *GetUser("preload_with_associations", Config{
    		Account:   true,
    		Pets:      2,
    		Toys:      3,
    		Company:   true,
    		Manager:   true,
    		Team:      4,
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:00:47 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/typeset.go

    	}
    	assert(!comp || terms.isAll()) // comparable invariant
    	return terms, comp
    }
    
    func sortMethods(list []*Func) {
    	sort.Sort(byUniqueMethodName(list))
    }
    
    func assertSortedMethods(list []*Func) {
    	if !debug {
    		panic("assertSortedMethods called outside debug mode")
    	}
    	if !sort.IsSorted(byUniqueMethodName(list)) {
    		panic("methods not sorted")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. pkg/controller/statefulset/stateful_set_test.go

    		t.Error(err)
    	}
    	pods, err = om.podsLister.Pods(set.Namespace).List(selector)
    	if err != nil {
    		t.Error(err)
    	}
    	if len(pods) != 5 {
    		t.Error("StatefulSet does not respect termination")
    	}
    	sort.Sort(ascendingOrdinal(pods))
    	spc.DeleteStatefulPod(set, pods[3])
    	spc.DeleteStatefulPod(set, pods[4])
    	*set.Spec.Replicas = 0
    	if err := scaleDownStatefulSetController(logger, set, ssc, spc, om); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  8. src/net/net_windows_test.go

    					have = append(have, addr.IP.String())
    				}
    			}
    		}
    		slices.Sort(have)
    
    		want := netshInterfaceIPv4ShowAddress(ifi.Name, outIPV4)
    		wantIPv6 := netshInterfaceIPv6ShowAddress(ifi.Name, outIPV6)
    		want = append(want, wantIPv6...)
    		slices.Sort(want)
    
    		if strings.Join(want, "/") != strings.Join(have, "/") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. src/net/lookup_plan9.go

    	lines, err := queryCS(ctx, network, "127.0.0.1", toLower(service))
    	if err != nil {
    		if stringslite.HasSuffix(err.Error(), "can't translate service") {
    			return 0, &DNSError{Err: "unknown port", Name: errNetwork + "/" + service, IsNotFound: true}
    		}
    		return
    	}
    	if len(lines) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:08:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/typestring.go

    		var termHashes []string
    		for _, term := range s.terms {
    			// terms are not canonically sorted, so we sort their hashes instead.
    			var buf bytes.Buffer
    			if term.tilde {
    				buf.WriteByte('~')
    			}
    			newTypeHasher(&buf, w.ctxt).typ(term.typ)
    			termHashes = append(termHashes, buf.String())
    		}
    		sort.Strings(termHashes)
    		if !first {
    			w.byte(';')
    		}
    		w.string(strings.Join(termHashes, "|"))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top