Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,643 for orderID (0.17 sec)

  1. guava/src/com/google/common/collect/SortedIterable.java

      /**
       * Returns the {@code Comparator} by which the elements of this iterable are ordered, or {@code
       * Ordering.natural()} if the elements are ordered by their natural ordering.
       */
      Comparator<? super T> comparator();
    
      /**
       * Returns an iterator over elements of type {@code T}. The elements are returned in nondecreasing
       * order according to the associated {@link #comparator}.
       */
      @Override
      Iterator<T> iterator();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 29 02:13:00 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  2. pkg/slices/slices.go

    func SortBy[E any, A constraints.Ordered](x []E, extract func(a E) A) []E {
    	if len(x) <= 1 {
    		return x
    	}
    	SortFunc(x, func(a, b E) int {
    		return cmp.Compare(extract(a), extract(b))
    	})
    	return x
    }
    
    // Sort sorts a slice of any ordered type in ascending order.
    // The slice is modified in place but returned.
    func Sort[E constraints.Ordered](x []E) []E {
    	if len(x) <= 1 {
    		return x
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/DestroyerTaskCommandLineOrderIntegrationTest.groovy

    import spock.lang.Issue
    
    class DestroyerTaskCommandLineOrderIntegrationTest extends AbstractCommandLineOrderTaskIntegrationTest {
        def "destroyer task with a dependency in another project will run before producer tasks when ordered first (type: #type)"() {
            def foo = subproject(':foo')
            def bar = subproject(':bar')
    
            def cleanFoo = foo.task('cleanFoo').destroys('build/foo')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 23 14:13:02 UTC 2022
    - 21.1K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/workflow/doc.go

    limitations under the License.
    */
    
    /*
    Package workflow implements a workflow manager to be used for
    implementing composable kubeadm workflows.
    
    Composable kubeadm workflows are built by an ordered sequence of phases;
    each phase can have it's own, nested, ordered sequence of sub phases.
    For instance
    
    	preflight     	Run control-plane pre-flight checks
    	certs         	Generates all PKI assets necessary to establish the control plane
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 14 23:49:31 UTC 2019
    - 2.6K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/collect/testing/google/MultimapTestSuiteBuilder.java

            }
            map.put(entry.getKey(), entry.getValue());
          }
          Iterable<Entry<K, V>> ordered = multimapGenerator.order(builder);
          LinkedHashMap<K, Collection<V>> orderedMap = new LinkedHashMap<>();
          for (Entry<K, V> entry : ordered) {
            orderedMap.put(entry.getKey(), map.get(entry.getKey()));
          }
          return orderedMap.entrySet();
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  6. src/sort/sort.go

    func (x IntSlice) Sort() { Sort(x) }
    
    // Float64Slice implements Interface for a []float64, sorting in increasing order,
    // with not-a-number (NaN) values ordered before other values.
    type Float64Slice []float64
    
    func (x Float64Slice) Len() int { return len(x) }
    
    // Less reports whether x[i] should be ordered before x[j], as required by the sort Interface.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 16:40:32 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  7. platforms/ide/problems-api/src/main/java/org/gradle/problems/buildtree/ProblemReporter.java

            void accept(Throwable throwable);
        }
    
        /**
         * A stable identifier for this reporter. Reporters are ordered by id before {@link #report(File, ProblemConsumer)} is called, so
         * that the output is generated in a stable order rather than in an order based on the order that implementations
         * are discovered.
         */
        String getId();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/JavaToolchainRepositoryHandler.java

         */
        void repository(String name, Action<? super JavaToolchainRepository> configureAction);
    
        /**
         * Returns a list of repositories that have been added so far. The list order
         * reflects the order in which the repositories have been declared.
         *
         * @since 7.6.1
         */
        List<JavaToolchainRepository> getAsList();
    
        /**
         * Returns the count of the repositories added so far.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:17:59 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/ProducerTaskCommandLineOrderIntegrationTest.groovy

    import spock.lang.Issue
    
    class ProducerTaskCommandLineOrderIntegrationTest extends AbstractCommandLineOrderTaskIntegrationTest {
        def "producer task with a dependency in another project will run before destroyer tasks when ordered first (type: #type)"() {
            def foo = subproject(':foo')
            def bar = subproject(':bar')
    
            def cleanFoo = foo.task('cleanFoo').destroys('build/foo')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  10. guava/src/com/google/common/graph/EndpointPair.java

       * endpoints of a directed edge).
       */
      public abstract boolean isOrdered();
    
      /** Iterates in the order {@link #nodeU()}, {@link #nodeV()}. */
      @Override
      public final UnmodifiableIterator<N> iterator() {
        return Iterators.forArray(nodeU, nodeV);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 01 17:18:04 UTC 2021
    - 8.1K bytes
    - Viewed (0)
Back to top