Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 952 for miny (0.04 sec)

  1. pkg/controller/podautoscaler/rate_limiters.go

    		interval: interval,
    	}
    }
    
    // When returns the interval of the rate limiter
    func (r *FixedItemIntervalRateLimiter) When(item string) time.Duration {
    	return r.interval
    }
    
    // NumRequeues returns back how many failures the item has had
    func (r *FixedItemIntervalRateLimiter) NumRequeues(item string) int {
    	return 1
    }
    
    // Forget indicates that an item is finished being retried.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	{121, "EDC5121I", "Invalid argument."},
    	{122, "EDC5122I", "Input/output error."},
    	{123, "EDC5123I", "Is a directory."},
    	{124, "EDC5124I", "Too many open files."},
    	{125, "EDC5125I", "Too many links."},
    	{126, "EDC5126I", "Filename too long."},
    	{127, "EDC5127I", "Too many open files in system."},
    	{128, "EDC5128I", "No such device."},
    	{129, "EDC5129I", "No such file or directory."},
    	{130, "EDC5130I", "Exec format error."},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/flags.h

      bool tf_xla_sparse_core_disable_table_stacking;
    
      // If non-zero, limits the size of the activations for a given table to
      // be below these many bytes.
      int64_t tf_xla_sparse_core_stacking_mem_limit_bytes;
    
      // If non-zero, limits the size of any table shard to be below these
      // many bytes.
      int64_t tf_xla_sparse_core_stacking_table_shard_limit_bytes;
    };
    
    // Flags associated with the XLA bridge's xla_device module.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/execution/TaskSelectorsAndOrdinalNodeIntegrationTest.groovy

         */
        @Timeout(60)
        @Issue("https://github.com/gradle/gradle/issues/20741")
        @ToBeFixedForIsolatedProjects(because = "subprojects")
        def "build is not exponentially slower when many tasks are requested"() {
            createDirs((1..30).collect({ "sub" + it }) as String[])
            settingsFile << """
                rootProject.name = "test"
                (1..30).each {
                    include "sub" + it
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. internal/config/scanner/scanner.go

    	// Delay is the sleep multiplier.
    	Delay float64 `json:"delay"`
    
    	// Sleep always or based on incoming S3 requests.
    	IdleMode int32 // 0 => on, 1 => off
    
    	// Alert upon this many excess object versions
    	ExcessVersions int64 // 100
    
    	// Alert upon this many excess sub-folders per folder in an erasure set.
    	ExcessFolders int64 // 50000
    
    	// MaxWait is maximum wait time between operations
    	MaxWait time.Duration
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. .github/PULL_REQUEST_TEMPLATE.md

    <!--- The issue this PR addresses -->
    <!-- Fixes #? -->
    
    ### Context
    <!--- Why do you believe many users will benefit from this change? -->
    <!--- Link to relevant issues or forum discussions here -->
    
    ### Contributor Checklist
    - [ ] [Review Contribution Guidelines](https://github.com/gradle/gradle/blob/master/CONTRIBUTING.md).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 13 22:36:19 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/http/HttpStatusCodes.kt

     * specific language governing permissions and limitations
     * under the License.
     * ====================================================================
     *
     * This software consists of voluntary contributions made by many
     * individuals on behalf of the Apache Software Foundation.  For more
     * information on the Apache Software Foundation, please see
     * <http://www.apache.org/>.
     */
    
    package okhttp3.internal.http
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:24:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/WithExternalRepository.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.performance
    
    import groovy.transform.CompileStatic
    import org.apache.mina.util.AvailablePortFinder
    import org.eclipse.jetty.server.Server
    import org.eclipse.jetty.util.resource.Resource
    import org.eclipse.jetty.webapp.WebAppContext
    import org.gradle.performance.fixture.CrossVersionPerformanceTestRunner
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/typeinst0.go

    // TODO(gri) better error messages
    type _ T1[] // ERROR "expected type argument list"
    type _ T1[x /* ERROR "not a type" */ ]
    type _ T1 /* ERROR "too many type arguments for type T1: have 2, want 1" */ [int, float32]
    
    var _ T2[int] = T2[int]{}
    
    var _ List[int] = []int{1, 2, 3}
    var _ List[[]int] = [][]int{{1, 2, 3}}
    var _ List[List[List[int]]]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 02:54:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/build.gradle.kts

    val flamegraph by configurations.creating
    configurations.compileOnly { extendsFrom(flamegraph) }
    
    repositories {
        googleApisJs()
    }
    
    dependencies {
        reports("jquery:jquery.min:3.5.1@js")
        reports("flot:flot:0.8.1:min@js")
    
        api(project(":base-services"))
        api(project(":core"))
        api(project(":core-api"))
        api(project(":internal-integ-testing"))
        api(project(":internal-testing"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top