Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,213 for Maximum (0.14 sec)

  1. internal/config/batch/help.go

    		config.HelpKV{
    			Key:         ReplicationWorkersWait,
    			Description: `maximum sleep duration between objects to slow down batch replication operation` + defaultHelpPostfix(ReplicationWorkersWait),
    			Optional:    true,
    			Type:        "duration",
    		},
    		config.HelpKV{
    			Key:         KeyRotationWorkersWait,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 02 10:51:33 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/TimeLimiter.java

       * @param interfaceType the interface you wish the returned proxy to implement
       * @param timeoutDuration with timeoutUnit, the maximum length of time that callers are willing to
       *     wait on each method call to the proxy
       * @param timeoutUnit with timeoutDuration, the maximum length of time that callers are willing to
       *     wait on each method call to the proxy
       * @return a time-limiting proxy
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. pkg/test/framework/resource/version.go

    func (rv *RevVerMap) Minimum() IstioVersion {
    	return rv.Versions().Minimum()
    }
    
    // Maximum returns the maximum version from the revision-version mapping.
    func (rv *RevVerMap) Maximum() IstioVersion {
    	return rv.Versions().Maximum()
    }
    
    // AtLeast returns true if the minimum Istio version under test is at least the given version.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/concurrent/ParallelismConfiguration.java

         * </ul>
         *
         * Defaults to the number of processors available to the Java virtual machine.
         *
         * @return maximum number of concurrent workers, always &gt;= 1.
         * @see java.lang.Runtime#availableProcessors()
         */
        int getMaxWorkerCount();
    
        /**
         * Specifies the maximum number of concurrent workers used for underlying build operations.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/process/JavaForkOptions.java

        void setMinHeapSize(@Nullable String heapSize);
    
        /**
         * Returns the maximum heap size for the process, if any.
         *
         * @return The maximum heap size. Returns null if the default maximum heap size should be used.
         */
        @Nullable @Optional @Input
        String getMaxHeapSize();
    
        /**
         * Sets the maximum heap size for the process.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  6. manifests/charts/base/crds/crd-all.gen.yaml

                                      description: The maximum number of concurrent streams
                                        allowed for a peer on one HTTP/2 connection.
                                      format: int32
                                      type: integer
                                    maxRequestsPerConnection:
                                      description: Maximum number of requests per connection
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  7. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/rules/JacocoViolationRulesLimit.groovy

            }
            if (minimum) {
                limit <<= "    minimum = $minimum\n"
            }
            if (maximum) {
                limit <<= "    maximum = $maximum\n"
            }
    
            limit <<= '}'
            limit.toString()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. build-logic-commons/code-quality-rules/src/main/resources/classycle/classycle_report_resources.zip

    class cycles class layers classes (using external classes) grouped in packages no package cycles package cycle package cycles no package packages Type Number of classes Averaged (maximum) size in bytes Averaged (maximum) number of usage by other classes Averaged (maximum) number of used internal classes Averaged (maximum) number of used external clasess Interfaces Abstract classes Concrete classes Cycles Name Number of classes Best Fragment Size Girth Radius Diameter Layer Package Cycles Name Number...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 23.4K bytes
    - Viewed (0)
  9. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/rules/JacocoPluginCoverageVerificationIntegrationTest.groovy

            """
    
            fails TEST_AND_JACOCO_COVERAGE_VERIFICATION_TASK_PATHS
    
            then:
            executed(JACOCO_COVERAGE_VERIFICATION_TASK_PATH)
            skipped(TEST_TASK_PATH)
            failure.assertHasCause("Rule violated for bundle $testDirectory.name: lines covered ratio is 1.0, but expected maximum is 0.5")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  10. pkg/keepalive/options_test.go

    	"istio.io/istio/pkg/keepalive"
    )
    
    // Test default maximum connection age is set to infinite, preserving previous
    // unbounded lifetime behavior.
    func TestAgeDefaultsToInfinite(t *testing.T) {
    	ko := keepalive.DefaultOption()
    
    	if ko.MaxServerConnectionAge != keepalive.Infinity {
    		t.Errorf("%s maximum connection age %v", t.Name(), ko.MaxServerConnectionAge)
    	}
    }
    
    // Confirm maximum connection age parameters can be set from the command line.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 29 15:00:10 UTC 2020
    - 1.6K bytes
    - Viewed (0)
Back to top