Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 38 for 2h0m0s (0.08 sec)

  1. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishJavaRetriesIntegTest.groovy

            ExecutionResult result = run "publish", '--info'
    
            then:
            verifyPublications()
            outputContains("Waiting 1000ms before next retry, 2 retries left")
            outputContains("Waiting 2000ms before next retry, 1 retries left")
            outputContains("after 2 retries")
        }
    
    
        def expectPublication() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. internal/config/heal/heal.go

    }
    
    // DefaultKVS - default KV config for heal settings
    var DefaultKVS = config.KVS{
    	config.KV{
    		Key:   Bitrot,
    		Value: config.EnableOff,
    	},
    	config.KV{
    		Key:   Sleep,
    		Value: "250ms",
    	},
    	config.KV{
    		Key:   IOCount,
    		Value: "100",
    	},
    	config.KV{
    		Key:   DriveWorkers,
    		Value: "",
    	},
    }
    
    const minimumBitrotCycleInMonths = 1
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. samples/addons/loki.yaml

          http_server_read_timeout: 600s
          http_server_write_timeout: 600s
        storage_config:
          boltdb_shipper:
            index_gateway_client:
              server_address: ""
          hedging:
            at: 250ms
            max_per_second: 20
            up_to: 3
          tsdb_shipper:
            index_gateway_client:
              server_address: ""
        tracing:
          enabled: false
    ---
    # Source: loki/templates/runtime-configmap.yaml
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. tests/integration/pilot/locality_test.go

    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: external-service-locality
    spec:
      host: {{.Host}}
      trafficPolicy:
        connectionPool:
          tcp:
            connectTimeout: 250ms
        loadBalancer:
          simple: ROUND_ROBIN
          localityLbSetting:
    {{.LocalitySetting | indent 8 }}
        outlierDetection:
          interval: 1s
          baseEjectionTime: 10m
          maxEjectionPercent: 100`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. internal/config/cache/cache.go

    		return nil, nil
    	}
    
    	buf, err := r.MarshalMsg(nil)
    	if err != nil {
    		return nil, err
    	}
    
    	// We do not want Gets to take so much time, anything
    	// beyond 250ms we should cut it, remote cache is too
    	// busy already.
    	ctx, cancel := context.WithTimeout(context.Background(), 250*time.Millisecond)
    	defer cancel()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. pkg/scheduler/metrics/metrics.go

    			Subsystem: SchedulerSubsystem,
    			Name:      "framework_extension_point_duration_seconds",
    			Help:      "Latency for running all plugins of a specific extension point.",
    			// Start with 0.1ms with the last bucket being [~200ms, Inf)
    			Buckets:        metrics.ExponentialBuckets(0.0001, 2, 12),
    			StabilityLevel: metrics.STABLE,
    		},
    		[]string{"extension_point", "status", "profile"})
    
    	PluginExecutionDuration = metrics.NewHistogramVec(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 08:22:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ContinuousBuildChangeReportingIntegrationTest.groovy

            when:
            succeeds("theTask", "-D${StartParameterBuildOptions.ContinuousBuildQuietPeriodOption.PROPERTY_NAME}=5000")
            inputFile1.createFile()
            // The regular 250ms quiet period would pick up two changes.
            Thread.sleep(1000)
            inputFile2.createFile()
    
            then:
            buildTriggeredAndSucceeded()
            sendEOT()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  8. security/pkg/nodeagent/cache/secretcache_test.go

    	if err != nil {
    		t.Fatalf("failed to get secrets: %v", err)
    	}
    
    	// First update will trigger root cert immediately, then workload cert once it expires in 200ms
    	u.Expect(map[string]int{security.WorkloadKeyCertResourceName: 1, security.RootCertReqResourceName: 1})
    
    	_, err = sc.GenerateSecret(security.WorkloadKeyCertResourceName)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/helpers_linux.go

    func MilliCPUToQuota(milliCPU int64, period int64) (quota int64) {
    	// CFS quota is measured in two values:
    	//  - cfs_period_us=100ms (the amount of time to measure usage across given by period)
    	//  - cfs_quota=20ms (the amount of cpu time allowed to be used across a period)
    	// so in the above example, you are limited to 20% of a single CPU
    	// for multi-cpu environments, you just scale equivalent amounts
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 11:52:28 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        val startNanos = System.nanoTime()
        assertFailsWith<InterruptedIOException> {
          stream.takeHeaders()
        }
        val elapsedNanos = System.nanoTime() - startNanos
        awaitWatchdogIdle()
        // 200ms delta
        assertThat(TimeUnit.NANOSECONDS.toMillis(elapsedNanos).toDouble())
          .isCloseTo(500.0, 200.0)
        assertThat(connection.openStreamCount()).isEqualTo(0)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
Back to top