Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,643 for orderID (0.11 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/attributes/DisambiguationRuleChain.java

         * @since 4.0
         */
        void add(Class<? extends AttributeDisambiguationRule<T>> rule, Action<? super ActionConfiguration> configureAction);
    
        /**
         * Adds an ordered disambiguation rule. Values will be compared using the
         * provided comparator, and the rule will automatically select the first
         * value (if multiple candidates have the same attribute value, there will
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/graph/MutableGraph.java

      /**
       * Adds an edge connecting {@code endpoints} (in the order, if any, specified by {@code
       * endpoints}) if one is not already present.
       *
       * <p>If this graph is directed, {@code endpoints} must be ordered and the added edge will be
       * directed; if it is undirected, the added edge will be undirected.
       *
       * <p>If this graph is directed, {@code endpoints} must be ordered.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/math/Quantiles.java

         *     this call (it is copied instead)
         * @return an unmodifiable, ordered map of results: the keys will be the specified quantile
         *     indexes, and the values the corresponding quantile values. When iterating, entries in the
         *     map are ordered by quantile index in the same order they were passed to the {@code
         *     indexes} method.
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  4. clause/benchmarks_test.go

    			clause.Limit{Limit: &limit10, Offset: 20},
    			clause.OrderBy{Columns: []clause.OrderByColumn{{Column: clause.PrimaryColumn, Desc: true}}},
    		}
    
    		for _, clause := range clauses {
    			stmt.AddClause(clause)
    		}
    
    		stmt.Build("SELECT", "FROM", "WHERE", "GROUP BY", "LIMIT", "ORDER BY")
    		_ = stmt.SQL.String()
    	}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Oct 07 12:14:14 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  5. src/internal/types/testdata/examples/constraints.go

    	Floats interface{ ~float32|~float64 }
    	Complex interface{ ~complex64|~complex128 }
    	Number interface{ Integer|Unsigned|Floats|Complex }
    	Ordered interface{ Integer|Unsigned|Floats|~string }
    
    	_ interface{ Number | error /* ERROR "cannot use error in union" */ }
    	_ interface{ Ordered | comparable /* ERROR "cannot use comparable in union" */ }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/graph/ValueGraph.java

      Optional<V> edgeValue(N nodeU, N nodeV);
    
      /**
       * Returns the value of the edge that connects {@code endpoints} (in the order, if any, specified
       * by {@code endpoints}), if one is present; otherwise, returns {@code Optional.empty()}.
       *
       * <p>If this graph is directed, the endpoints must be ordered.
       *
       * @throws IllegalArgumentException if either endpoint is not an element of this graph
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. guava/src/com/google/common/graph/Network.java

      /**
       * Returns the single edge that directly connects {@code endpoints} (in the order, if any,
       * specified by {@code endpoints}), if one is present, or {@code Optional.empty()} if no such edge
       * exists.
       *
       * <p>If this network is directed, the endpoints must be ordered.
       *
       * @throws IllegalArgumentException if there are multiple parallel edges connecting {@code nodeU}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/admission.go

    	utilruntime.Must(apiserverapiv1.AddToScheme(configScheme))
    }
    
    // AdmissionOptions holds the admission options
    type AdmissionOptions struct {
    	// RecommendedPluginOrder holds an ordered list of plugin names we recommend to use by default
    	RecommendedPluginOrder []string
    	// DefaultOffPlugins is a set of plugin names that is disabled by default
    	DefaultOffPlugins sets.Set[string]
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 12 08:49:42 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  9. src/go/parser/testdata/map.go2

    // Package orderedmap provides an ordered map, implemented as a binary tree.
    package orderedmap
    
    import "chans"
    
    // Map is an ordered map.
    type Map[K, V any] struct {
    	root    *node[K, V]
    	compare func(K, K) int
    }
    
    // node is the type of a node in the binary tree.
    type node[K, V any] struct {
    	key         K
    	val         V
    	left, right *node[K, V]
    }
    
    // New returns a new map.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 24 19:44:06 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  10. src/cmd/nm/doc.go

    //		for compatibility with other nm commands
    //	-size
    //		print symbol size in decimal between address and type
    //	-sort {address,name,none,size}
    //		sort output in the given order (default name)
    //		size orders from largest to smallest
    //	-type
    //		print symbol type after name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.3K bytes
    - Viewed (0)
Back to top