Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for expectActions (0.15 sec)

  1. src/cmd/link/internal/ppc64/asm.go

    //
    //  2. R2 holds the TOC pointer on entry. The caller has already saved R2 to the TOC stack save slot.
    //
    //  3. R2 does not hold the TOC pointer on entry. The caller has no expectations of R2.
    //
    // Go only needs case 1 and 3 today. Go symbols which have AttrShare set could use case 2, but case 1 always
    // works in those cases too.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  2. tests/integration/ambient/baseline_test.go

    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			t.Skip("https://github.com/istio/istio/issues/42696")
    			systemNM := istio.ClaimSystemNamespaceOrFail(t, t)
    			// mtlsOnExpect defines our expectations for when mTLS is expected when its enabled
    			mtlsOnExpect := func(from echo.Instance, opts echo.CallOptions) bool {
    				if from.Config().IsNaked() || opts.To.Config().IsNaked() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  3. pilot/pkg/model/push_context_test.go

    		t.Run(tc.name, func(t *testing.T) {
    			result := pc.WasmPluginsByListenerInfo(tc.node, tc.listenerInfo, tc.pluginType)
    			if !reflect.DeepEqual(tc.expectedExtensions, result) {
    				t.Errorf("WasmPlugins did not match expectations\n\ngot: %v\n\nexpected: %v", result, tc.expectedExtensions)
    			}
    		})
    	}
    }
    
    func TestServiceIndex(t *testing.T) {
    	g := NewWithT(t)
    	env := NewEnvironment()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    			}
    			if out.SelfLink != "" {
    				t.Errorf("%s: selfLink should not be set", tt.name)
    			}
    
    			// verify that kv pair is not empty after set and that the underlying data matches expectations
    			validation(ctx, t, key)
    
    			switch tt.expectNoUpdate {
    			case true:
    				if version != out.ResourceVersion {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  5. src/os/os_test.go

    		},
    	}
    
    	for _, tt := range tests {
    		// Now change the times accordingly.
    		if err := Chtimes(fName, tt.aTime, tt.mTime); err != nil {
    			t.Error(err)
    		}
    
    		// Finally verify the expectations.
    		fs, err = Stat(fName)
    		if err != nil {
    			t.Error(err)
    		}
    		at0 = Atime(fs)
    		mt0 = fs.ModTime()
    
    		if got, want := at0, tt.wantATime; !got.Equal(want) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
Back to top