Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for testhist (0.16 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_test.go

    func TestPreconditionalDeleteWithSuggestionPass(t *testing.T) {
    	ctx, cacher, terminate := testSetup(t)
    	t.Cleanup(terminate)
    	storagetesting.RunTestPreconditionalDeleteWithOnlySuggestionPass(ctx, t, cacher)
    }
    
    func TestList(t *testing.T) {
    	featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.ConsistentListFromCache, false)
    	ctx, cacher, server, terminate := testSetupWithEtcdServer(t)
    	t.Cleanup(terminate)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 17K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_container_test.go

    			Exec: &v1.ExecAction{
    				Command: []string{"PostStartCMD"},
    			},
    		},
    	}
    
    	httpLifeCycle := &v1.Lifecycle{
    		PreStop: &v1.LifecycleHandler{
    			HTTPGet: &v1.HTTPGetAction{
    				Host: "testHost.com",
    				Path: "/GracefulExit",
    			},
    		},
    	}
    
    	cmdLifeCycle := &v1.Lifecycle{
    		PreStop: &v1.LifecycleHandler{
    			Exec: &v1.ExecAction{
    				Command: []string{"PreStopCMD"},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 28K bytes
    - Viewed (0)
  3. pkg/config/analysis/msg/messages.gen.go

    func NewVirtualServiceDestinationPortSelectorRequired(r *resource.Instance, destHost string, destPorts []int) diag.Message {
    	return diag.NewMessage(
    		VirtualServiceDestinationPortSelectorRequired,
    		r,
    		destHost,
    		destPorts,
    	)
    }
    
    // NewDeploymentAssociatedToMultipleServices returns a new diag.Message based on DeploymentAssociatedToMultipleServices.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    }
    
    func TestTransformationFailure(t *testing.T) {
    	ctx, store, _ := testSetup(t)
    	storagetesting.RunTestTransformationFailure(ctx, t, &storeWithPrefixTransformer{store})
    }
    
    func TestList(t *testing.T) {
    	ctx, store, client := testSetup(t)
    	storagetesting.RunTestList(ctx, t, store, compactStorage(client), false)
    }
    
    func TestConsistentList(t *testing.T) {
    	ctx, store, client := testSetup(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  5. pkg/config/analysis/msg/messages.yaml

        template: "This VirtualService routes to a service %q that exposes multiple ports %v. Specifying a port in the destination is required to disambiguate."
        args:
          - name: destHost
            type: string
          - name: destPorts
            type: "[]int"
    
      # IST0113 RETIRED
      # IST0114 RETIRED
      # IST0115 RETIRED
    
      - name: "DeploymentAssociatedToMultipleServices"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/math/BigIntegerMathTest.java

          BigInteger halfEven = BigIntegerMath.sqrt(x, HALF_EVEN);
          // Now figure out what rounding mode we should behave like (it depends if FLOOR was
          // odd/even).
          boolean floorWasOdd = BigIntegerMath.sqrt(x, FLOOR).testBit(0);
          assertEquals(BigIntegerMath.sqrt(x, floorWasOdd ? HALF_UP : HALF_DOWN), halfEven);
        }
      }
    
      @GwtIncompatible // TODO
      @AndroidIncompatible // slow
      public void testDivNonZero() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 17:58:33 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top