Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 667 for leastOf (0.16 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblemsSummary.kt

            return StringBuilder().apply {
                appendLine()
                appendSummaryHeader(cacheActionText, problemCount)
                appendLine()
                Ordering.from(consoleComparator()).leastOf(uniqueProblems, maxConsoleProblems).forEach { problem ->
                    append("- ")
                    append(problem.userCodeLocation.capitalized())
                    append(": ")
                    appendLine(problem.message)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Ordering.java

            }
            return Collections.unmodifiableList(Arrays.asList(array));
          }
        }
        return leastOf(iterable.iterator(), k);
      }
    
      /**
       * Returns the {@code k} least elements from the given iterator according to this ordering, in
       * order from least to greatest. If there are fewer than {@code k} elements present, all will be
       * included.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Ordering.java

            }
            return Collections.unmodifiableList(Arrays.asList(array));
          }
        }
        return leastOf(iterable.iterator(), k);
      }
    
      /**
       * Returns the {@code k} least elements from the given iterator according to this ordering, in
       * order from least to greatest. If there are fewer than {@code k} elements present, all will be
       * included.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/crypto/sha3/doc.go

    //
    // If you aren't sure what function you need, use SHAKE256 with at least 64
    // bytes of output. The SHAKE instances are faster than the SHA3 instances;
    // the latter have to allocate memory to conform to the hash.Hash interface.
    //
    // If you need a secret-key MAC (message authentication code), prepend the
    // secret key to the input, hash with SHAKE256 and read at least 32 bytes of
    // output.
    //
    // # Security strengths
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/types/KtSubstitutor.kt

         * @return substituted type if there was at least one substitution, [type] itself if there was no type parameter to substitute
         */
        public fun substitute(type: KaType): KaType = withValidityAssertion { substituteOrNull(type) ?: type }
    
        /**
         * substitutes type parameters in a given type corresponding to internal mapping rules.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. src/text/template/helper.go

    	return t
    }
    
    // ParseFiles creates a new [Template] and parses the template definitions from
    // the named files. The returned template's name will have the base name and
    // parsed contents of the first file. There must be at least one file.
    // If an error occurs, parsing stops and the returned *Template is nil.
    //
    // When parsing multiple files with the same name in different directories,
    // the last one mentioned will be the one that results.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:54:08 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/test/mergelocals_test.go

    	}
    
    	// Expect at least one clump of at least 3.
    	n3 := 0
    	got := []int{}
    	for _, v := range varsAtFrameOffset {
    		if v > 2 {
    			n3++
    		}
    		got = append(got, v)
    	}
    	sort.Ints(got)
    	if n3 == 0 {
    		t.Logf("%s\n", string(out))
    		t.Fatalf("expected at least one clump of 3, got: %+v", got)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:43:53 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. cmd/metrics-v3-bucket-replication.go

    		"Total number of bytes failed at least once to replicate in the last hour on a bucket",
    		bucketL)
    	bucketReplLastHrFailedCountMD = NewGaugeMD(bucketReplLastHrFailedCount,
    		"Total number of objects which failed replication in the last hour on a bucket",
    		bucketL)
    	bucketReplLastMinFailedBytesMD = NewGaugeMD(bucketReplLastMinFailedBytes,
    		"Total number of bytes failed at least once to replicate in the last full minute on a bucket",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. src/go/types/gcsizes.go

    	// of alignment of the elements and fields, respectively.
    	switch t := under(T).(type) {
    	case *Array:
    		// spec: "For a variable x of array type: unsafe.Alignof(x)
    		// is the same as unsafe.Alignof(x[0]), but at least 1."
    		return s.Alignof(t.elem)
    	case *Struct:
    		if len(t.fields) == 0 && _IsSyncAtomicAlign64(T) {
    			// Special case: sync/atomic.align64 is an
    			// empty struct we recognize as a signal that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. pkg/kube/version.go

    package kube
    
    import (
    	"fmt"
    	"strconv"
    
    	"k8s.io/apimachinery/pkg/util/version"
    	kubeVersion "k8s.io/apimachinery/pkg/version"
    )
    
    // IsAtLeastVersion returns true if the client is at least the specified version.
    // For example, on Kubernetes v1.15.2, IsAtLeastVersion(13) == true, IsAtLeastVersion(17) == false
    func IsAtLeastVersion(client Client, minorVersion uint) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 23:16:29 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top