Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,009 for expected_ (0.28 sec)

  1. platforms/software/plugins-version-catalog/src/integTest/resources/org/gradle/catalog/expected6.toml

    Tom Tresansky <******@****.***> 1697219015 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 16 12:28:14 UTC 2023
    - 242 bytes
    - Viewed (0)
  2. platforms/software/plugins-version-catalog/src/integTest/resources/org/gradle/catalog/expected7.toml

    Tom Tresansky <******@****.***> 1697219015 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 16 12:28:14 UTC 2023
    - 244 bytes
    - Viewed (0)
  3. platforms/software/plugins-version-catalog/src/integTest/resources/org/gradle/catalog/expected3.toml

    Tom Tresansky <******@****.***> 1697219015 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 16 12:28:14 UTC 2023
    - 288 bytes
    - Viewed (0)
  4. platforms/software/plugins-version-catalog/src/integTest/resources/org/gradle/catalog/expected8.toml

    Tom Tresansky <******@****.***> 1697219015 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 16 12:28:14 UTC 2023
    - 367 bytes
    - Viewed (0)
  5. platforms/software/plugins-version-catalog/src/integTest/resources/org/gradle/catalog/expected9.toml

    Tom Tresansky <******@****.***> 1697219015 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 16 12:28:14 UTC 2023
    - 266 bytes
    - Viewed (0)
  6. cni/test/testdata/expected/minikube_cni.conflist.expected

    Ben Leggett <******@****.***> 1716316321 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 875 bytes
    - Viewed (0)
  7. src/crypto/elliptic/p256_test.go

    		y, _ := new(big.Int).SetString(e.yIn, 16)
    		k, _ := new(big.Int).SetString(e.k, 16)
    		expectedX, _ := new(big.Int).SetString(e.xOut, 16)
    		expectedY, _ := new(big.Int).SetString(e.yOut, 16)
    
    		xx, yy := p256.ScalarMult(x, y, k.Bytes())
    		if xx.Cmp(expectedX) != 0 || yy.Cmp(expectedY) != 0 {
    			t.Errorf("#%d: got (%x, %x), want (%x, %x)", i, xx, yy, expectedX, expectedY)
    		}
    	}
    }
    
    type synthCombinedMult struct {
    	Curve
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 16:58:48 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  8. security/pkg/server/ca/authenticate/oidc_test.go

    	tests := map[string]struct {
    		token      string
    		expectErr  bool
    		expectedID string
    	}{
    		"No bearer token": {
    			expectErr: true,
    		},
    		"Valid token": {
    			token:      token,
    			expectErr:  false,
    			expectedID: spiffe.MustGenSpiffeURIForTrustDomain("baz.svc.id.goog", "bar", "foo"),
    		},
    		"Expired token": {
    			token:     expiredToken,
    			expectErr: true,
    		},
    		"Token with wrong audience": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. pkg/kubeapiserver/options/authorization_test.go

    			errs := options.Validate()
    			if len(errs) > 0 && !testcase.expectErr {
    				t.Errorf("got unexpected err %v", errs)
    			}
    			if testcase.expectErr && len(errs) == 0 {
    				t.Errorf("should return an error")
    			}
    			if len(errs) > 0 && testcase.expectErr {
    				if !strings.Contains(utilerrors.NewAggregate(errs).Error(), testcase.expectErrorSubString) {
    					t.Errorf("exepected to found error: %s, but no error found", testcase.expectErrorSubString)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 06:28:47 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/conversion/converter.go

    	if list, ok := in.(*unstructured.UnstructuredList); ok {
    		for i := range list.Items {
    			expectedGV := list.Items[i].GroupVersionKind().GroupVersion()
    			if !c.validVersions[expectedGV] {
    				return nil, fmt.Errorf("request to convert CR list failed, list index %d has invalid group/version: %s", i, expectedGV.String())
    			}
    		}
    	}
    	return c.converter.Convert(in, toGVK.GroupVersion())
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top