Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 45 for 2h0m0s (0.23 sec)

  1. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaRetriesIntegTest.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
    - 3.8K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/report/TestResultModelTest.groovy

            test(7).formattedDuration == '0.007s'
            test(1200).formattedDuration == '1.200s'
        }
    
        def formatsLongDuration() {
            expect:
            test(60000).formattedDuration == '1m0.00s'
            test(72301).formattedDuration == '1m12.30s'
            test(72305).formattedDuration == '1m12.31s'
            test(60 * 60 * 1000).formattedDuration == '1h0m0.00s'
            test(24 * 60 * 60 * 1000).formattedDuration == '1d0h0m0.00s'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. 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)
  4. pkg/util/async/bounded_frequency_runner_test.go

    	// Advance and do the deferred run
    	timer.advance(1 * time.Millisecond) // abs=2000ms, rel=1000ms
    	waitForRun("fourth run", t, timer, obj)
    
    	// Run again, once burst has fully replenished.
    	timer.advance(2 * time.Second) // abs=4000ms, rel=2000ms
    	runner.Run()
    	waitForRun("fifth run", t, timer, obj)
    	runner.Run()
    	waitForRun("sixth run", t, timer, obj)
    	runner.Run()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 15 09:36:26 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.css

    }
    .downArrow {
      border-top: .36em solid #ccc;
      border-left: .36em solid transparent;
      border-right: .36em solid transparent;
      margin-bottom: .05em;
      margin-left: .5em;
      transition: border-top-color 200ms;
    }
    .menu-item {
      height: 100%;
      text-transform: uppercase;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top