Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,062 for leastOf (0.14 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/NewerGradleNeededByPluginFailureDescriber.java

     */
    public abstract class NewerGradleNeededByPluginFailureDescriber extends AbstractResolutionFailureDescriber<IncompatibleGraphVariantFailure> {
        private static final String GRADLE_VERSION_TOO_OLD_TEMPLATE = "Plugin %s requires at least Gradle %s. This build uses %s.";
        private static final String NEEDS_NEWER_GRADLE_SECTION = "sub:updating-gradle";
    
        private final GradleVersion currentGradleVersion = GradleVersion.current();
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/flowcontrol/v1/types.go

    // at least one member of verbs matches the request, (b) at least one
    // member of apiGroups matches the request, (c) at least one member of
    // resources matches the request, and (d) either (d1) the request does
    // not specify a namespace (i.e., `Namespace==""`) and clusterScope is
    // true or (d2) the request specifies a namespace and least one member
    // of namespaces matches the request's namespace.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/sidecar/selector.go

    	"istio.io/istio/pkg/config/resource"
    	"istio.io/istio/pkg/config/schema/gvk"
    )
    
    // SelectorAnalyzer validates, per namespace, that:
    // * sidecar resources that define a workload selector match at least one pod
    // * there aren't multiple sidecar resources that select overlapping pods
    type SelectorAnalyzer struct{}
    
    var _ analysis.Analyzer = &SelectorAnalyzer{}
    
    // Metadata implements Analyzer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. src/internal/zstd/bits.go

    func (r *Reader) makeBitReader(data block, off int) bitReader {
    	return bitReader{
    		r:    r,
    		data: data,
    		off:  uint32(off),
    	}
    }
    
    // moreBits is called to read more bits.
    // This ensures that at least 16 bits are available.
    func (br *bitReader) moreBits() error {
    	for br.cnt < 16 {
    		if br.off >= uint32(len(br.data)) {
    			return br.r.makeEOFError(int(br.off))
    		}
    		c := br.data[br.off]
    		br.off++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:13 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. pkg/kubelet/apis/podresources/constants.go

    */
    
    package podresources
    
    const (
    	// Socket is the name of the podresources server socket
    	Socket = "kubelet"
    
    	// DefaultQPS is determined by empirically reviewing known consumers of the API.
    	// It's at least unlikely that there is a legitimate need to query podresources
    	// more than 100 times per second, the other subsystems are not guaranteed to react
    	// so fast in the first place.
    	DefaultQPS = 100
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 07:22:23 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. src/crypto/subtle/xor.go

    // license that can be found in the LICENSE file.
    
    package subtle
    
    // XORBytes sets dst[i] = x[i] ^ y[i] for all i < n = min(len(x), len(y)),
    // returning n, the number of bytes written to dst.
    // If dst does not have length at least n,
    // XORBytes panics without writing anything to dst.
    func XORBytes(dst, x, y []byte) int {
    	n := min(len(x), len(y))
    	if n == 0 {
    		return 0
    	}
    	if n > len(dst) {
    		panic("subtle.XORBytes: dst too short")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:50:40 UTC 2024
    - 618 bytes
    - Viewed (0)
  7. src/internal/types/testdata/fixedbugs/issue66285.go

    // -lang=go1.21
    
    // Copyright 2024 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Note: Downgrading to go1.13 requires at least go1.21,
    //       hence the need for -lang=go1.21 at the top.
    
    //go:build go1.13
    
    package p
    
    import "io"
    
    // A "duplicate method" error should be reported for
    // all these interfaces, irrespective of which package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 766 bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/WriteReplaceOverridesTest.java

            continue;
          }
          if (info.getName().endsWith("GwtSerializationDependencies")) {
            continue; // These classes exist only for the GWT compiler, not to be used.
          }
          if (
          /*
           * At least one of the classes nested inside TypeResolverTest triggers a bug under older JDKs:
           * https://bugs.openjdk.org/browse/JDK-8215328 -> https://bugs.openjdk.org/browse/JDK-8215470
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. pkg/credentialprovider/plugin/config.go

    	allErrs := field.ErrorList{}
    
    	if len(config.Providers) == 0 {
    		allErrs = append(allErrs, field.Required(field.NewPath("providers"), "at least 1 item in plugins is required"))
    	}
    
    	fieldPath := field.NewPath("providers")
    	for _, provider := range config.Providers {
    		if strings.Contains(provider.Name, "/") {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 19 15:11:57 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionPerformanceTestHistory.java

            }
            return knownVersions;
        }
    
        /**
         * Returns results from most recent to least recent.
         */
        public List<CrossVersionPerformanceResults> getResults() {
            return newestFirst;
        }
    
        /**
         * Returns results from least recent to most recent.
         */
        public List<CrossVersionPerformanceResults> getResultsOldestFirst() {
            if (oldestFirst == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top