Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 275 for Maximum (0.19 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/versions/types_go121.go

    	// In x/tools built with Go <= 1.21, we do not have Info.FileVersions
    	// available. We use a go version derived from the toolchain used to
    	// compile the tool by default.
    	// This will be <= go1.21. We take this as the maximum version that
    	// this tool can support.
    	//
    	// There are no features currently in x/tools that need to tell fine grained
    	// differences for versions <1.22.
    	return toolchain
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 938 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/kubeopenapi.go

    	}
    }
    
    func (v *ValueValidation) toKubeOpenAPI(ret *spec.Schema) {
    	if v == nil {
    		return
    	}
    
    	ret.Format = v.Format
    	ret.Maximum = v.Maximum
    	ret.ExclusiveMaximum = v.ExclusiveMaximum
    	ret.Minimum = v.Minimum
    	ret.ExclusiveMinimum = v.ExclusiveMinimum
    	ret.MaxLength = v.MaxLength
    	ret.MinLength = v.MinLength
    	ret.Pattern = v.Pattern
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/JvmMemoryStatusSnapshot.java

            return maximumMemory;
        }
    
        @Override
        public long getCommittedMemory() {
            return committedMemory;
        }
    
        @Override
        public String toString() {
            return "{Maximum: " + maximumMemory + ", Committed: " + committedMemory + '}';
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. pkg/apis/discovery/types.go

    	// * IPv6: Represents an IPv6 Address.
    	// * FQDN: Represents a Fully Qualified Domain Name. [DEPRECATED]
    	AddressType AddressType
    	// endpoints is a list of unique endpoints in this slice. Each slice may
    	// include a maximum of 1000 endpoints.
    	// +listType=atomic
    	Endpoints []Endpoint
    	// ports specifies the list of network ports exposed by each endpoint in
    	// this slice. Each port must have a unique name. When ports is empty, it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 16 21:38:06 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump

    $$ -*- mode: c++; -*-
    $var n = 50  $$ Maximum length of Values arguments we want to support.
    $var maxtuple = 10  $$ Maximum number of Combine arguments we want to support.
    // Copyright 2008 Google Inc.
    // All Rights Reserved.
    //
    // Redistribution and use in source and binary forms, with or without
    // modification, are permitted provided that the following conditions are
    // met:
    //
    //     * Redistributions of source code must retain the above copyright
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/openapi/adaptor.go

    }
    
    func (s *Schema) Minimum() *float64 {
    	return s.Schema.Minimum
    }
    
    func (s *Schema) IsExclusiveMinimum() bool {
    	return s.Schema.ExclusiveMinimum
    }
    
    func (s *Schema) Maximum() *float64 {
    	return s.Schema.Maximum
    }
    
    func (s *Schema) IsExclusiveMaximum() bool {
    	return s.Schema.ExclusiveMaximum
    }
    
    func (s *Schema) MultipleOf() *float64 {
    	return s.Schema.MultipleOf
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 10 21:26:55 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/Dispatcher.kt

     *
     * Each dispatcher uses an [ExecutorService] to run calls internally. If you supply your own
     * executor, it should be able to run [the configured maximum][maxRequests] number of calls
     * concurrently.
     */
    class Dispatcher() {
      internal val lock: ReentrantLock = ReentrantLock()
    
      /**
       * The maximum number of requests to execute concurrently. Above this requests queue in memory,
       * waiting for the running calls to complete.
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/zz_generated.deepcopy.go

    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *ValueValidation) DeepCopyInto(out *ValueValidation) {
    	*out = *in
    	if in.Maximum != nil {
    		in, out := &in.Maximum, &out.Maximum
    		*out = new(float64)
    		**out = **in
    	}
    	if in.Minimum != nil {
    		in, out := &in.Minimum, &out.Minimum
    		*out = new(float64)
    		**out = **in
    	}
    	if in.MaxLength != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/DefaultJvmMemoryInfo.java

        public DefaultJvmMemoryInfo() {
            this.totalMemory = Runtime.getRuntime().maxMemory();
        }
    
        /**
         * Max memory that this process can commit in bytes. Always returns the same value because maximum memory is determined at jvm start.
         */
        long getMaxMemory() {
            return totalMemory;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/pattern/PathMatcher.java

    public interface PathMatcher {
        /**
         * Returns the minimum number of segments a path must have to satisfy this matcher.
         */
        int getMinSegments();
    
        /**
         * Returns the maximum number of segments a path must have to satisfy this matcher.
         */
        int getMaxSegments();
    
        /**
         * Returns true if the path starting at the given offset satisfies this pattern.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top