Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 826 for periods (0.43 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    - If the retention period is customized for Gradle versions greater than or equal to version 8.0 to use retention periods _shorter_ than the previously fixed periods, there will also be no effect.
    +
    The versions of Gradle aware of these settings will cleanup artifacts earlier than the previously fixed retention periods, and older versions will effectively not participate in the cleanup of shared caches.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. releasenotes/notes/backpressure.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: networking
    issue:
    - https://github.com/istio/istio/issues/25685
    releaseNotes:
    - |
      **Added** support for backpressure on XDS pushes to avoid overloading Envoy during periods of high configuration
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 27 23:24:27 UTC 2020
    - 376 bytes
    - Viewed (0)
  3. src/cmd/doc/main.go

    	for start := slash + 1; start < len(arg); start = period + 1 {
    		period = strings.Index(arg[start:], ".")
    		symbol := ""
    		if period < 0 {
    			period = len(arg)
    		} else {
    			period += start
    			symbol = arg[period+1:]
    		}
    		// Have we identified a package already?
    		pkg, err := build.Import(arg[0:period], wd, build.ImportComment)
    		if err == nil {
    			return pkg, arg[0:period], symbol, false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. test/solitaire.go

    package main
    
    const N = 11 + 1 // length of a board row (+1 for newline)
    
    // The board must be surrounded by 2 illegal fields in each direction
    // so that move() doesn't need to check the board boundaries. Periods
    // represent illegal fields, ● are pegs, and ○ are holes.
    var board = []rune(
    	`...........
    ...........
    ....●●●....
    ....●●●....
    ..●●●●●●●..
    ..●●●○●●●..
    ..●●●●●●●..
    ....●●●....
    ....●●●....
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:48:19 UTC 2012
    - 2.9K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_container_test.go

    			},
    			reason:              reasonStartupProbe,
    			expectedGracePeriod: shortGracePeriod,
    		},
    		{
    			name: "startup probe overrides pod termination grace period, probe period > pod period",
    			pod: &v1.Pod{
    				Spec: v1.PodSpec{
    					Containers: []v1.Container{{
    						Name: "foo", StartupProbe: &v1.Probe{TerminationGracePeriodSeconds: &longGracePeriod},
    					}},
    					TerminationGracePeriodSeconds: &shortGracePeriod,
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 28K bytes
    - Viewed (0)
  6. pkg/log/scope.go

    )
    
    // RegisterScope registers a new logging scope. If the same name is used multiple times
    // for a single process, the same Scope struct is returned.
    //
    // Scope names cannot include colons, commas, or periods.
    func RegisterScope(name string, description string) *Scope {
    	// We only allow internal callers to set callerSkip
    	return registerScope(name, description, 0)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 16:47:01 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. src/internal/testenv/exec.go

    			}
    
    			// If time allows, increase the termination grace period to 5% of the
    			// test's remaining time.
    			testTimeout := time.Until(td)
    			if gp := testTimeout / 20; gp > gracePeriod {
    				gracePeriod = gp
    			}
    
    			// When we run commands that execute subprocesses, we want to reserve two
    			// grace periods to clean up: one for the delay between the first
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 27 17:53:23 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  8. operator/pkg/util/path_test.go

    	}{
    		{
    			desc:   "no-path",
    			in:     "",
    			expect: Path{},
    		},
    		{
    			desc:   "valid-path",
    			in:     "a.b.c",
    			expect: Path{"a", "b", "c"},
    		},
    		{
    			desc:   "surround-periods",
    			in:     ".a.",
    			expect: Path{"a"},
    		},
    	}
    
    	for _, tt := range tests {
    		t.Run(tt.desc, func(t *testing.T) {
    			if got := PathFromString(tt.in); !got.Equals(tt.expect) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Aug 29 00:15:38 UTC 2020
    - 6.7K bytes
    - Viewed (0)
  9. pkg/kubelet/eviction/eviction_manager.go

    	thresholds = thresholdsMetGracePeriod(thresholdsFirstObservedAt, now)
    	debugLogThresholdsWithObservation("thresholds - grace periods satisfied", thresholds, observations)
    
    	// update internal state
    	m.Lock()
    	m.nodeConditions = nodeConditions
    	m.thresholdsFirstObservedAt = thresholdsFirstObservedAt
    	m.nodeConditionsLastObservedAt = nodeConditionsLastObservedAt
    	m.thresholdsMet = thresholds
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 18:55:56 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  10. pkg/controller/certificates/cleaner/cleaner.go

    )
    
    const (
    	// The interval to list all CSRs and check each one against the criteria to
    	// automatically clean it up.
    	pollingInterval = 1 * time.Hour
    	// The time periods after which these different CSR statuses should be
    	// cleaned up.
    	approvedExpiration = 1 * time.Hour
    	deniedExpiration   = 1 * time.Hour
    	pendingExpiration  = 24 * time.Hour
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:26:08 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top