Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 362 for highest (0.14 sec)

  1. src/container/heap/heap.go

    //
    // A heap is a common way to implement a priority queue. To build a priority
    // queue, implement the Heap interface with the (negative) priority as the
    // ordering for the Less method, so Push adds items while Pop removes the
    // highest-priority item from the queue. The Examples include such an
    // implementation; the file example_pq_test.go has the complete source.
    package heap
    
    import "sort"
    
    // The Interface type describes the requirements
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:10 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/SmallCharMatcher.java

      @VisibleForTesting
      static int chooseTableSize(int setSize) {
        if (setSize == 1) {
          return 2;
        }
        // Correct the size for open addressing to match desired load factor.
        // Round up to the next highest power of 2.
        int tableSize = Integer.highestOneBit(setSize - 1) << 1;
        while (tableSize * DESIRED_LOAD_FACTOR < setSize) {
          tableSize <<= 1;
        }
        return tableSize;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/build/PlannedNodeGraph.java

            }
        }
    
        /**
         * {@link #collectNodes(Collection) Collects} and converts nodes to planned nodes
         * resolving their dependencies with the highest available {@link DetailLevel detail level}.
         */
        public static class Collector {
    
            private final ToPlannedNodeConverterRegistry converterRegistry;
            private final DetailLevel detailLevel;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 22 15:46:00 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseWtpFacet.java

     *         withXml {
     *           def node = it.asNode()
     *           node.appendNode('xml', 'is what I love')
     *         }
     *
     *         //beforeMerged and whenMerged closures are the highest voodoo for the tricky edge cases.
     *         //the type passed to the closures is {@link WtpFacet}
     *
     *         //closure executed after wtp facet file content is loaded from existing file
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/rich_versions.adoc

    [[sec:required-version]]
    `require`::
    Implies that the selected version cannot be lower than what `require` accepts but could be higher through conflict resolution, even if higher has an exclusive higher bound.
    This is what a direct dependency translates to.
    This term supports dynamic versions.
    +
    When defined, this overrides any previous `strictly` declaration and clears previous `reject`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2.kt

        )
    
      /**
       * Lookup table for valid flags for DATA, HEADERS, CONTINUATION. Invalid combinations are
       * represented in binary.
       */
      private val FLAGS = arrayOfNulls<String>(0x40) // Highest bit flag is 0x20.
      private val BINARY =
        Array(256) {
          format("%8s", Integer.toBinaryString(it)).replace(' ', '0')
        }
    
      init {
        FLAGS[FLAG_NONE] = ""
        FLAGS[FLAG_END_STREAM] = "END_STREAM"
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. src/hash/crc32/gen_const_ppc64le.go

    	return div
    }
    
    // xnmodp returns two values, p and div:
    // p is the representation of the binary polynomial x**n mod (x ** deg + "poly")
    // That is p is the binary representation of the modulus polynomial except for its highest-order term.
    // div is the binary representation of the polynomial x**n / (x ** deg + "poly")
    func xnmodp(n uint, poly uint64, deg uint) (uint64, uint64) {
    
    	var mod, mask, high, div uint64
    
    	if n < deg {
    		div = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 20:44:20 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/AbstractTestLoggerTest.groovy

            textOutputFactory.toString() == "{TestEventLogger}{INFO}${sep}Test Run > Gradle Worker 2 > OuterSuiteClass > InnerSuiteClass > TestClass > a test {failure}FAILED{normal}${sep}"
        }
    
        def "log test method event with highest display granularity"() {
            createLogger(LogLevel.INFO, -1)
    
            when:
            logger.logEvent(methodDescriptor, TestLogEvent.FAILED)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  9. pkg/scheduler/util/utils.go

    	}
    	// Assumed pods and bound pods that haven't started don't have a StartTime yet.
    	return &metav1.Time{Time: time.Now()}
    }
    
    // GetEarliestPodStartTime returns the earliest start time of all pods that
    // have the highest priority among all victims.
    func GetEarliestPodStartTime(victims *extenderv1.Victims) *metav1.Time {
    	if len(victims.Pods) == 0 {
    		// should not reach here.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 21 01:40:44 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  10. docs/erasure/README.md

    # MinIO Erasure Code Quickstart Guide [![Slack](https://slack.min.io/slack?type=svg)](https://slack.min.io)
    
    MinIO protects data against hardware failures and silent data corruption using erasure code and checksums. With the highest level of redundancy, you may lose up to half (N/2) of the total drives and still be able to recover the data.
    
    ## What is Erasure Code?
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 4.1K bytes
    - Viewed (0)
Back to top