Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,108 for highest (0.13 sec)

  1. 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)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/AbstractRichVersionConstraintsIntegrationTest.groovy

                        byConstraint()
                    }
                    constraint("org:foo:{strictly 1.0}", "org:foo:1.0")
                }
            }
        }
    
        @Issue("gradle/gradle#4186")
        def "should choose highest when multiple prefer versions disagree"() {
            repository {
                'org:foo' {
                    '1.0.0'()
                    '1.1.0'()
                    '1.2.0'()
                    '2.0.0'()
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 15:37:32 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. pkg/scheduler/internal/queue/scheduling_queue.go

    				return queueImmediately
    			}
    
    			// interprets Queue from the unschedulable plugin as queueAfterBackoff.
    
    			if pInfo.PendingPlugins.Len() == 0 {
    				// We can return immediately because no Pending plugins, which only can make queueImmediately, registered in this Pod,
    				// and queueAfterBackoff is the second highest priority.
    				return queueAfterBackoff
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/handler.go

    			if iPriority == jPriority {
    				return version.CompareKubeAwareVersionStrings(iVersion, jVersion) > 0
    			}
    
    			// i sorts before j if it has a higher priority
    			return iPriority > jPriority
    		})
    
    		groups = append(groups, group)
    	}
    
    	// For each group, determine the highest minimum group priority and use that
    	priorities := map[string]int{}
    	for gv, info := range rdm.versionPriorities {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  7. 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)
  8. android/guava/src/com/google/common/math/StatsAccumulator.java

       *
       * @throws IllegalStateException if the dataset is empty
       */
      public double min() {
        checkState(count != 0);
        return min;
      }
    
      /**
       * Returns the highest value in the dataset. The count must be non-zero.
       *
       * <h3>Non-finite values</h3>
       *
       * <p>If the dataset contains {@link Double#NaN} then the result is {@link Double#NaN}. If it
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/math/StatsAccumulator.java

       *
       * @throws IllegalStateException if the dataset is empty
       */
      public double min() {
        checkState(count != 0);
        return min;
      }
    
      /**
       * Returns the highest value in the dataset. The count must be non-zero.
       *
       * <h3>Non-finite values</h3>
       *
       * <p>If the dataset contains {@link Double#NaN} then the result is {@link Double#NaN}. If it
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/pcln.go

    	pcln := &cursym.Func().Pcln
    	pcln.UsedFiles = make(map[goobj.CUFileIndex]struct{})
    
    	npcdata := 0
    	nfuncdata := 0
    	for p := cursym.Func().Text; p != nil; p = p.Link {
    		// Find the highest ID of any used PCDATA table. This ignores PCDATA table
    		// that consist entirely of "-1", since that's the assumed default value.
    		//   From.Offset is table ID
    		//   To.Offset is data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 20:45:15 UTC 2022
    - 11.8K bytes
    - Viewed (0)
Back to top