Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,476 for Sort (0.24 sec)

  1. guava/src/com/google/common/primitives/UnsignedLongs.java

       *
       * @since 23.1
       */
      public static void sort(long[] array) {
        checkNotNull(array);
        sort(array, 0, array.length);
      }
    
      /**
       * Sorts the array between {@code fromIndex} inclusive and {@code toIndex} exclusive, treating its
       * elements as unsigned 64-bit integers.
       *
       * @since 23.1
       */
      public static void sort(long[] array, int fromIndex, int toIndex) {
        checkNotNull(array);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/memcombine.go

    			return false
    		}
    		a = append(a, StoreRecord{x, off})
    	}
    	// Before we sort, grab the memory arg the result should have.
    	mem := a[n-1].store.Args[2]
    	// Also grab position of first store (last in array = first in memory order).
    	pos := a[n-1].store.Pos
    
    	// Sort stores in increasing address order.
    	sort.Slice(a, func(i, j int) bool {
    		return a[i].offset < a[j].offset
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/DerivedCollectionGenerators.java

    import static com.google.common.collect.testing.Helpers.castOrCopyToList;
    import static com.google.common.collect.testing.Helpers.equal;
    import static com.google.common.collect.testing.Helpers.mapEntry;
    import static java.util.Collections.sort;
    
    import com.google.common.annotations.GwtCompatible;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Collection;
    import java.util.Collections;
    import java.util.Comparator;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/primitives/UnsignedLongs.java

       *
       * @since 23.1
       */
      public static void sort(long[] array) {
        checkNotNull(array);
        sort(array, 0, array.length);
      }
    
      /**
       * Sorts the array between {@code fromIndex} inclusive and {@code toIndex} exclusive, treating its
       * elements as unsigned 64-bit integers.
       *
       * @since 23.1
       */
      public static void sort(long[] array, int fromIndex, int toIndex) {
        checkNotNull(array);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/graph/DefaultGraphBuilder.java

            if (request.getPom() != null) {
                result = getProjectsInRequestScope(request, activeProjects);
    
                List<MavenProject> sortedProjects = graph.getSortedProjects();
                result.sort(comparing(sortedProjects::indexOf));
    
                result = includeAlsoMakeTransitively(result, request, graph);
            }
    
            return result;
        }
    
        private List<MavenProject> trimSelectedProjects(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 09:23:26 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  6. istioctl/pkg/injector/injector-list.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package injector
    
    import (
    	"context"
    	"fmt"
    	"io"
    	"sort"
    	"strconv"
    	"strings"
    	"text/tabwriter"
    
    	"github.com/spf13/cobra"
    	admitv1 "k8s.io/api/admissionregistration/v1"
    	corev1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 04 03:08:06 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storageversion/manager.go

    		for _, gvr := range gvrs {
    			seen[gvr.GroupResource()] = struct{}{}
    		}
    		ret = append(ret, info)
    	}
    	return ret
    }
    
    func sortResourceInfosByGroupResource(infos []ResourceInfo) {
    	sort.Sort(byGroupResource(infos))
    }
    
    type byGroupResource []ResourceInfo
    
    func (s byGroupResource) Len() int { return len(s) }
    
    func (s byGroupResource) Less(i, j int) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 17:47:19 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  8. cmd/metacache-entries.go

    func (m metaCacheEntries) less(i, j int) bool {
    	return m[i].name < m[j].name
    }
    
    // sort entries by name.
    // m is sorted and a sorted metadata object is returned.
    // Changes to m will also be reflected in the returned object.
    func (m metaCacheEntries) sort() metaCacheEntriesSorted {
    	if m.isSorted() {
    		return metaCacheEntriesSorted{o: m}
    	}
    	sort.Slice(m, m.less)
    	return metaCacheEntriesSorted{o: m}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 04:34:26 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/stackcheck.go

    			}
    		}
    	}
    
    	// Sort roots by height. This makes the result deterministic
    	// and also improves the error reporting.
    	var roots []loader.Sym
    	for k := range nodes {
    		roots = append(roots, k)
    	}
    	sort.Slice(roots, func(i, j int) bool {
    		h1, h2 := sc.height[roots[i]], sc.height[roots[j]]
    		if h1 != h2 {
    			return h1 > h2
    		}
    		// Secondary sort by Sym.
    		return roots[i] < roots[j]
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 16:49:08 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  10. pkg/kubelet/nodeshutdown/nodeshutdown_manager_linux.go

    	}
    
    	// Disable if the configuration is empty
    	if len(shutdownGracePeriodByPodPriority) == 0 {
    		m := managerStub{}
    		return m, m
    	}
    
    	// Sort by priority from low to high
    	sort.Slice(shutdownGracePeriodByPodPriority, func(i, j int) bool {
    		return shutdownGracePeriodByPodPriority[i].Priority < shutdownGracePeriodByPodPriority[j].Priority
    	})
    
    	if conf.Clock == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 08:02:40 UTC 2022
    - 15.5K bytes
    - Viewed (0)
Back to top