Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 7,321 for expect64 (0.31 sec)

  1. tests/integration/pilot/revisions/uninstall_test.go

    	// for purge case we expect all resources removed
    	if purge {
    		if len(reStrList) != 0 {
    			msg := fmt.Sprintf("resources expected to be pruned but still exist in the cluster: %s",
    				strings.Join(reStrList, " "))
    			scopes.Framework.Warnf(msg)
    			return fmt.Errorf(msg)
    		}
    		return nil
    	}
    	// for other cases, we expect base component resources to be kept.
    	if len(reStrList) != 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_proto_test.go

    	}
    	for _, testCase := range table {
    		var inputQ Quantity
    		expectQ := MustParse(testCase.expect)
    		inputByteArray, _ := testCase.input.Marshal()
    		inputQ.Unmarshal(inputByteArray)
    		if inputQ.Cmp(expectQ) != 0 {
    			t.Errorf("Expected: %v, Actual: %v", inputQ, expectQ)
    		}
    	}
    	// Test when i is {0,0}
    	table2 := []struct {
    		input  Quantity
    		expect *inf.Dec
    	}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 25 07:12:11 UTC 2017
    - 3.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/filterlatency/filterlatency_test.go

    	wrapped.ServeHTTP(w, testRequest)
    
    	if callCount != 1 {
    		t.Errorf("expected the given handler to be invoked once, but was actually invoked %d times", callCount)
    	}
    	if filterRecord == nil {
    		t.Fatal("expected a filter record in the request context, but got nil")
    	}
    	if filterName != filterRecord.name {
    		t.Errorf("expected filter name=%s but got=%s", filterName, filterRecord.name)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. src/compress/flate/testdata/huffman-rand-limit.wb.expect

    Klaus Post <******@****.***> 1457448890 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 186 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/watch/watch_test.go

    	consumer := func(w Interface) {
    		for _, expect := range table {
    			got, ok := <-w.ResultChan()
    			if !ok {
    				t.Fatalf("closed early")
    			}
    			if e, a := expect.t, got.Type; e != a {
    				t.Fatalf("Expected %v, got %v", e, a)
    			}
    			if a, ok := got.Object.(testType); !ok || a != expect.s {
    				t.Fatalf("Expected %v, got %v", expect.s, a)
    			}
    		}
    		_, stillOpen := <-w.ResultChan()
    		if stillOpen {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 15 11:34:31 UTC 2018
    - 3.7K bytes
    - Viewed (0)
  6. src/compress/flate/testdata/huffman-rand-1k.dyn.expect

    Klaus Post <******@****.***> 1460282413 +0200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 18 02:30:46 UTC 2016
    - 1005 bytes
    - Viewed (0)
  7. src/compress/flate/testdata/huffman-text.dyn.expect-noinput

    Klaus Post <******@****.***> 1457448890 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 238 bytes
    - Viewed (0)
  8. src/compress/flate/testdata/huffman-null-max.dyn.expect

    Klaus Post <******@****.***> 1457448890 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 78 bytes
    - Viewed (0)
  9. pkg/volume/util/volumeattributesclass_test.go

    						AlphaIsDefaultVolumeAttributesClassAnnotation: "true",
    					},
    				},
    			},
    			expect: true,
    		},
    	}
    
    	for _, tc := range testCases {
    		t.Run(tc.name, func(t *testing.T) {
    			actual := IsDefaultVolumeAttributesClassAnnotation(tc.class.ObjectMeta)
    			if tc.expect != actual {
    				t.Errorf("Expected %v, got %v", tc.expect, actual)
    			}
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:18:56 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. maven-model-builder/src/test/resources/poms/inheritance/module-path-not-artifactId-expected.xml

      <artifactId>child-artifact-id</artifactId>
      <version>11-SNAPSHOT</version>
      <name>Model inheritance test parent: module directory != artifactId</name>
      <description>
        artifactId == "child-artifact-id"
        but expect path on SCM and site == "child"
        feature: support "project.directory" property, ressembling future model addition of "directory" element along "artifactId"
      </description>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:09:10 UTC 2020
    - 2.1K bytes
    - Viewed (0)
Back to top