Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 50 for CONSTRUCTOR (0.29 sec)

  1. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

       * comparator has a more general type than the map's keys, such as creating a {@code
       * SortedMap<Integer, String>} with a {@code Comparator<Number>}, use the {@link Builder}
       * constructor instead.
       *
       * @throws NullPointerException if {@code comparator} is null
       */
      public static <K, V> Builder<K, V> orderedBy(Comparator<K> comparator) {
        return new Builder<>(comparator);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/Preconditions.java

    import com.google.errorprone.annotations.CanIgnoreReturnValue;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Static convenience methods that help a method or constructor check whether it was invoked
     * correctly (that is, whether its <i>preconditions</i> were met).
     *
     * <p>If the precondition is not met, the {@code Preconditions} method throws an unchecked exception
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. src/crypto/tls/conn.go

    	handshakeErr   error   // error resulting from handshake
    	vers           uint16  // TLS version
    	haveVers       bool    // version has been negotiated
    	config         *Config // configuration passed to constructor
    	// handshakes counts the number of handshakes performed on the
    	// connection so far. If renegotiation is disabled then this is either
    	// zero or one.
    	handshakes       int
    	extMasterSecret  bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass.cc

          &compile_time_const_nodes, lib_runtime));
      // Iterate over nodes in sorted order so that compiler fuel is deterministic.
      // We can't simply pass op_nodes().begin() and op_nodes().end() to the
      // std::vector constructor because they're not proper iterators, with
      // iterator_traits defined and so on.
      std::vector<Node*> sorted_nodes;
      for (Node* node : graph_->op_nodes()) {
        sorted_nodes.push_back(node);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/MapMakerInternalMap.java

       * that entries are indexable using ints.
       */
      static final int MAXIMUM_CAPACITY = Ints.MAX_POWER_OF_TWO;
    
      /** The maximum number of segments to allow; used to bound constructor arguments. */
      static final int MAX_SEGMENTS = 1 << 16; // slightly conservative
    
      /** Number of (unsynchronized) retries in the containsValue method. */
      static final int CONTAINS_VALUE_RETRIES = 3;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         */
        ProjectState getState();
    
        /**
         * <p>Creates a container for managing named objects of the specified type. The specified type must have a public constructor which takes the name as a String parameter.</p>
         *
         * <p>All objects <b>MUST</b> expose their name as a bean property named "name". The name must be constant for the life of the object.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  7. src/runtime/asm_amd64.s

    	JMP	runtime·rt0_go(SB)
    
    // _rt0_amd64_lib is common startup code for most amd64 systems when
    // using -buildmode=c-archive or -buildmode=c-shared. The linker will
    // arrange to invoke this function as a global constructor (for
    // c-archive) or when the shared library is loaded (for c-shared).
    // We expect argc and argv to be passed in the usual C ABI registers
    // DI and SI.
    TEXT _rt0_amd64_lib(SB),NOSPLIT|NOFRAME,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

       * that entries are indexable using ints.
       */
      static final int MAXIMUM_CAPACITY = Ints.MAX_POWER_OF_TWO;
    
      /** The maximum number of segments to allow; used to bound constructor arguments. */
      static final int MAX_SEGMENTS = 1 << 16; // slightly conservative
    
      /** Number of (unsynchronized) retries in the containsValue method. */
      static final int CONTAINS_VALUE_RETRIES = 3;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    The deprecated `mainClassName` property of the `JavaApplication` interface has been removed.
    Use the `mainClass` property instead.
    
    ==== DefaultDomainObjectSet API Cleanup
    
    The deprecated `DefaultDomainObjectSet(Class)` constructor has been removed.
    This was an internal API, but may have been used by plugins.
    
    ==== JacocoPluginExtension API Cleanup
    
    The deprecated `reportsDir` property of the `JacocoPluginExtension` has been removed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    =====
    [.multi-language-sample]
    ======
    .build-logic/src/main/kotlin/my-plugin.gradle.kts
    [source,kotlin]
    ----
    @CacheableRule
    abstract class AddDependenciesRule @Inject constructor(val dependencies: List<String>) : ComponentMetadataRule {
        override fun execute(context: ComponentMetadataContext) {
            listOf("compile", "runtime").forEach { base ->
                context.details.withVariant(base) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top