Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 56 for Hour (0.89 sec)

  1. cmd/bucket-replication.go

    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/horizontal_test.go

    	}
    	tc.runTest(t)
    }
    
    func TestAvoidUnnecessaryUpdates(t *testing.T) {
    	now := metav1.Time{Time: time.Now().Add(-time.Hour)}
    	tc := testCase{
    		minReplicas:             2,
    		maxReplicas:             6,
    		specReplicas:            2,
    		statusReplicas:          2,
    		expectedDesiredReplicas: 2,
    		CPUTarget:               30,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  3. src/database/sql/sql_test.go

    			int64(usedConns - reusedConns),
    			10 * time.Millisecond,
    			// Add second offset because otherwise connections are expired via max lifetime in Close.
    			100 * time.Nanosecond,
    		},
    		{
    			time.Hour,
    			0,
    			time.Second,
    			0,
    			0,
    			10 * time.Millisecond,
    			0},
    	}
    	baseTime := time.Unix(0, 0)
    	defer func() {
    		nowFunc = time.Now
    	}()
    	for _, item := range list {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  4. pkg/config/validation/validation_test.go

    				c.name, got == nil, c.valid, got)
    		}
    	}
    }
    
    func TestValidateLoadBalancer(t *testing.T) {
    	duration := durationpb.Duration{Seconds: int64(time.Hour / time.Second)}
    	cases := []struct {
    		name  string
    		in    *networking.LoadBalancerSettings
    		valid bool
    	}{
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Maps.java

          throw new UnsupportedOperationException();
        }
    
        /*
         * TODO(cpovirk): Uncomment the @NonNull annotations below once our JDK stubs and J2KT
         * emulations include them.
         */
        @Override
        @CheckForNull
        /*
         * Our checker arguably should produce a nullness error here until we see @NonNull in JDK APIs.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

         * href="https://github.com/google/guava#adding-guava-to-your-build">Adding Guava to your
         * build</a>.)
         *
         * <p>Be careful when targeting an older SDK than you are building against (most commonly when
         * building for Android): Ensure that any object you pass implements the interface not just in
         * your current SDK version but also at the oldest version you support. For example, <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Maps.java

       *
       * ImmutableMap<String, Color> colorForName =
       *     uniqueIndex(allColors, c -> c.toString());
       * assertThat(colorForName).containsEntry("red", red);
       * }</pre>
       *
       * <p>If your index may associate multiple values with each key, use {@link
       * Multimaps#index(Iterable, Function) Multimaps.index}.
       *
       * <p><b>Note:</b> on Java 8+, it is usually better to use streams. For example:
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  8. pkg/kubelet/eviction/eviction_manager_test.go

    	}
    
    	// we should not have memory pressure
    	if manager.IsUnderMemoryPressure() {
    		t.Errorf("Manager should not report memory pressure")
    	}
    
    	// try to admit our pods (they should succeed)
    	expected := []bool{true, true}
    	for i, pod := range []*v1.Pod{bestEffortPodToAdmit, burstablePodToAdmit} {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  9. fastapi/applications.py

                ),
            ] = "",
            version: Annotated[
                str,
                Doc(
                    """
                    The version of the API.
    
                    **Note** This is the version of your application, not the version of
                    the OpenAPI specification nor the version of FastAPI being used.
    
                    It will be added to the generated OpenAPI (e.g. visible at `/docs`).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  10. src/runtime/proc.go

    	case _Gwaiting:
    		if !gp.waitreason.isMutexWait() {
    			// Not blocking on a lock.
    			break
    		}
    		// Blocking on a lock, measure it. Note that because we're
    		// sampling, we have to multiply by our sampling period to get
    		// a more representative estimate of the absolute value.
    		// gTrackingPeriod also represents an accurate sampling period
    		// because we can only enter this state from _Grunning.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top