Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 640 for ulong (0.06 sec)

  1. guava-testlib/src/com/google/common/collect/testing/SpliteratorTester.java

        final int characteristics() {
          return spliterator.characteristics();
        }
    
        final long estimateSize() {
          return spliterator.estimateSize();
        }
    
        final Comparator<? super E> getComparator() {
          return spliterator.getComparator();
        }
    
        final long getExactSizeIfKnown() {
          return spliterator.getExactSizeIfKnown();
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 18:19:31 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

       * @param terminationTimeout how long to wait for the executor to finish before terminating the
       *     JVM
       * @param timeUnit unit of time for the time parameter
       */
      @J2ktIncompatible
      @GwtIncompatible // TODO
      @SuppressWarnings("GoodTime") // should accept a java.time.Duration
      public static void addDelayedShutdownHook(
          ExecutorService service, long terminationTimeout, TimeUnit timeUnit) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 39K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/configuration/ExecuteUserLifecycleListenerBuildOperationIntegrationTest.groovy

        def scriptFile = file('script.gradle')
    
        Long initScriptAppId
        Long initOtherScriptAppId
        Long settingsScriptAppId
        Long rootProjectScriptAppId
        Long rootOtherScriptAppId
        Long subProjectScriptAppId
        Long subOtherScriptAppId
        Long settingsPluginAppId
        Long rootProjectPluginAppId
        Long subProjectPluginAppId
    
        private void run() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/Download.java

                in = conn.getInputStream();
                byte[] buffer = new byte[BUFFER_SIZE];
                int numRead;
                int totalLength = conn.getContentLength();
                long downloadedLength = 0;
                long progressCounter = 0;
                while ((numRead = in.read(buffer)) != -1) {
                    if (Thread.currentThread().isInterrupted()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. cmd/streaming-signature-v4.go

    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    // Package cmd This file implements helper functions to validate Streaming AWS
    // Signature Version '4' authorization header.
    package cmd
    
    import (
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 16 23:13:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/StreamingResolutionResultBuilder.java

                    Map<Long, ComponentSelector> selectors = new HashMap<>();
                    while (true) {
                        type = decoder.readByte();
                        valuesRead++;
                        switch (type) {
                            case ROOT:
                                // Last entry, complete the result
                                Long rootId = decoder.readSmallLong();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/StreamingResolutionResultBuilderTest.groovy

      org:dep2:2.0 [root]
        org:dep1:5.0 -> org:dep1:5.0 - Could not resolve org:dep1:5.0.
    """
        }
    
        private DependencyGraphEdge dep(DependencyGraphSelector selector, Long fromVariant, Long selectedId) {
            def edge = Stub(DependencyGraphEdge)
            _ * edge.selector >> selector
            _ * edge.selected >> selectedId
            _ * edge.failure >> null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. docs/vi/docs/features.md

    ### Đã được kiểm thử
    
    * 100% <abbr title=" Lượng code đã được kiểm thử tự động">test coverage</abbr>.
    * 100% <abbr title="Python type annotations, với điều này trình soạn thảo của bạn và các công cụ bên ngoài có thể hỗ trợ bạn tốt hơn">type annotated</abbr> code base.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/-UtilJvm.kt

    internal fun ServerSocket.closeQuietly() {
      try {
        close()
      } catch (rethrown: RuntimeException) {
        throw rethrown
      } catch (_: Exception) {
      }
    }
    
    internal fun Long.toHexString(): String = java.lang.Long.toHexString(this)
    
    internal fun Int.toHexString(): String = Integer.toHexString(this)
    
    @Suppress("PLATFORM_CLASS_MAPPED_TO_KOTLIN", "NOTHING_TO_INLINE")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon May 13 13:42:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. tensorflow/cc/framework/gradients.cc

      // in `internal_outputs`.
      std::unordered_set<int> internal_outputs;
      std::unordered_set<Node*> visited;
      // Initialize `queue` for BFS traversal. Nodes in `queue` hold upcoming nodes
      // along with the last Node in `output_` encountered along that path. If no
      // `output_` node was encountered, pair.second will be nullptr.
      std::deque<std::pair<Node*, Node*>> queue;
      for (const Output& nout : inputs_) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 22K bytes
    - Viewed (0)
Back to top