Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,643 for orderID (0.2 sec)

  1. src/cmd/compile/internal/ssa/schedule.go

    	}
    
    	// place values in count-indexed bins, which are in the desired store order
    	order := make([]*Value, len(values))
    	for _, v := range values {
    		s := storeNumber[v.ID]
    		order[count[s-1]] = v
    		count[s-1]++
    	}
    
    	// Order nil checks in source order. We want the first in source order to trigger.
    	// If two are on the same line, we don't really care which happens first.
    	// See issue 18169.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/inittask.go

    // record. See cmd/compile/internal/pkginit/init.go.
    //
    // This function computes an ordering of all of the inittask
    // records so that the order respects all the dependencies,
    // and given that restriction, orders the inittasks in
    // lexicographic order.
    func (ctxt *Link) inittasks() {
    	switch ctxt.BuildMode {
    	case BuildModeExe, BuildModePIE, BuildModeCArchive, BuildModeCShared:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/collect/testing/Helpers.java

        return new EntryComparator<K, V>(keyComparator);
      }
    
      /**
       * Asserts that all pairs of {@code T} values within {@code valuesInExpectedOrder} are ordered
       * consistently between their order within {@code valuesInExpectedOrder} and the order implied by
       * the given {@code comparator}.
       *
       * @see #testComparator(Comparator, List)
       */
      public static <T extends @Nullable Object> void testComparator(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/attributes/AttributeMatchingStrategy.java

         * a disambiguation rule based on an order defined by the provided
         * {@link Comparator}.</p>
         *
         * <p>All provider values which are lower than or equal the consumer value are
         * compatible. When disambiguating, it will pick the highest compatible value.</p>
         *
         * @param comparator the comparator to use for compatibility and disambiguation
         */
        void ordered(Comparator<T> comparator);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 20:41:53 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  5. src/cmp/cmp_test.go

    	// Sort by customer first, product second, and last by higher price
    	slices.SortFunc(orders, func(a, b Order) int {
    		return cmp.Or(
    			strings.Compare(a.Customer, b.Customer),
    			strings.Compare(a.Product, b.Product),
    			cmp.Compare(b.Price, a.Price),
    		)
    	})
    	for _, order := range orders {
    		fmt.Printf("%s %s %.2f\n", order.Product, order.Customer, order.Price)
    	}
    
    	// Output:
    	// foo alice 2.00
    	// foo alice 1.00
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 23:39:07 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. test/fixedbugs/bug491.go

    		a, b, c := cap(x), f(), cap(x)
    		if a != 1 || c != 3 {
    			bug()
    			println("cap call not ordered:", a, b, c)
    		}
    	}
    
    	// complex
    	{
    		x := 1.0
    		f := func() int { x = 3; return 2 }
    		a, b, c := complex(x, 0), f(), complex(x, 0)
    		if real(a) != 1 || real(c) != 3 {
    			bug()
    			println("complex call not ordered:", a, b, c)
    		}
    	}
    
    	// copy
    	{
    		tmp := make([]int, 100)
    		x := make([]int, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 2K bytes
    - Viewed (0)
  7. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/tasks/SnapshotTaskInputsBuildOperationType.java

             * <p>
             * May contain duplicates.
             * Order corresponds to execution order of the actions.
             * Never empty.
             */
            @Nullable
            List<String> getActionClassNames();
    
            /**
             * The input value property hashes.
             * <p>
             * key = property name
             * <p>
             * Ordered by key, lexicographically.
             * No null keys or values.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/object.go

    	// String returns a human-readable string of the object.
    	String() string
    
    	// order reflects a package-level object's source order: if object
    	// a is before object b in the source, then a.order() < b.order().
    	// order returns a value > 0 for package-level objects; it returns
    	// 0 for all other objects (including objects in file scopes).
    	order() uint32
    
    	// color returns the object's color.
    	color() color
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  9. src/go/types/object.go

    	// String returns a human-readable string of the object.
    	String() string
    
    	// order reflects a package-level object's source order: if object
    	// a is before object b in the source, then a.order() < b.order().
    	// order returns a value > 0 for package-level objects; it returns
    	// 0 for all other objects (including objects in file scopes).
    	order() uint32
    
    	// color returns the object's color.
    	color() color
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/execution/plan/CreationOrderedNode.java

    /**
     * Base class for nodes that are ordered based on their order of creation.
     */
    abstract public class CreationOrderedNode extends Node {
    
        private static final AtomicInteger ORDER_COUNTER = new AtomicInteger();
    
        private final int order = ORDER_COUNTER.incrementAndGet();
    
        public final int getOrder() {
            return order;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 11 14:29:26 UTC 2022
    - 1K bytes
    - Viewed (0)
Back to top