Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,484 for Sort (0.05 sec)

  1. pkg/kubelet/images/image_gc_manager.go

    	i.Lock()
    	defer i.Unlock()
    	// The image list needs to be sorted when it gets read and used in
    	// setNodeStatusImages. We sort the list on write instead of on read,
    	// because the image cache is more often read than written
    	sort.Sort(sliceutils.ByImageSize(images))
    	i.images = images
    }
    
    // get gets image list from image cache.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. src/internal/profile/graph.go

    	}
    	return strings.Join(s, "\n")
    }
    
    // Sort returns a slice of the edges in the map, in a consistent
    // order. The sort order is first based on the edge weight
    // (higher-to-lower) and then by the node names to avoid flakiness.
    func (em EdgeMap) Sort() []*Edge {
    	el := make(edgeList, 0, len(em))
    	for _, w := range em {
    		el = append(el, w)
    	}
    
    	sort.Sort(el)
    	return el
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 20:59:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. cmd/dependencyverifier/dependencyverifier.go

    	for dependency := range aMinusB {
    		aMinusBList = append(aMinusBList, dependency)
    	}
    	for dependency := range bMinusA {
    		bMinusAList = append(bMinusAList, dependency)
    	}
    	sort.Strings(aMinusBList)
    	sort.Strings(bMinusAList)
    	return aMinusBList, bMinusAList
    }
    
    type module struct {
    	name    string
    	version string
    }
    
    func (m module) String() string {
    	if len(m.version) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 07 01:48:30 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/TopKSelector.java

          }
          iterations++;
          if (iterations >= maxIterations) {
            @SuppressWarnings("nullness") // safe because we pass sort() a range that contains real Ts
            T[] castBuffer = (T[]) buffer;
            // We've already taken O(k log k), let's make sure we don't take longer than O(k log k).
            Arrays.sort(castBuffer, left, right + 1, comparator);
            break;
          }
        }
        bufferSize = k;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/main.go

    				log.Fatalf("failed to close trace file: %v", err)
    			}
    		}()
    
    		if err := trace.Start(f); err != nil {
    			log.Fatalf("failed to start trace: %v", err)
    		}
    		defer trace.Stop()
    	}
    
    	sort.Sort(ArchsByName(archs))
    
    	// The generate tasks are run concurrently, since they are CPU-intensive
    	// that can easily make use of many cores on a machine.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedCustomTaskExecutionIntegrationTest.groovy

            file("build").listFiles().sort() as List == [file("build/output.txt"), file("build/secondary.txt")]
    
            when:
            cleanBuildDir()
            withBuildCache().run "customTask"
            then:
            skipped ":customTask"
            file("build/output.txt").text == "data"
            file("build/secondary.txt").text == "secondary"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/primitives/UnsignedInts.java

       *
       * @since 23.1
       */
      public static void sort(int[] array) {
        checkNotNull(array);
        sort(array, 0, array.length);
      }
    
      /**
       * Sorts the array between {@code fromIndex} inclusive and {@code toIndex} exclusive, treating its
       * elements as unsigned 32-bit integers.
       *
       * @since 23.1
       */
      public static void sort(int[] 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
    - 13.4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/primitives/UnsignedInts.java

       *
       * @since 23.1
       */
      public static void sort(int[] array) {
        checkNotNull(array);
        sort(array, 0, array.length);
      }
    
      /**
       * Sorts the array between {@code fromIndex} inclusive and {@code toIndex} exclusive, treating its
       * elements as unsigned 32-bit integers.
       *
       * @since 23.1
       */
      public static void sort(int[] 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
    - 13.4K bytes
    - Viewed (0)
  9. pilot/pkg/security/authz/builder/extauthz.go

    		return nil, errs
    	}
    
    	return generateGRPCConfig(cluster, hostname, config, status), nil
    }
    
    func parsePort(port uint32) (int, error) {
    	if 1 <= port && port <= 65535 {
    		return int(port), nil
    	}
    	return 0, fmt.Errorf("port must be in the range [1, 65535], found: %d", port)
    }
    
    func parseStatusOnError(status string) (*envoytypev3.HttpStatus, error) {
    	if status == "" {
    		return nil, nil
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. pkg/controller/job/indexed_job_utils.go

    // All pods with index not in valid range are appended to `rm`.
    func appendDuplicatedIndexPodsForRemoval(rm, left, pods []*v1.Pod, completions int) ([]*v1.Pod, []*v1.Pod) {
    	sort.Sort(byCompletionIndex(pods))
    	lastIndex := unknownCompletionIndex
    	firstRepeatPos := 0
    	countLooped := 0
    	for i, p := range pods {
    		ix := getCompletionIndex(p.Annotations)
    		if ix >= completions {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 00:44:53 UTC 2023
    - 17.5K bytes
    - Viewed (0)
Back to top