Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 107 for expectedly (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/authentication/request/headerrequest/requestheader_test.go

    			resp, ok, _ := auth.AuthenticateRequest(req)
    			if testcase.expectedOk != ok {
    				t.Errorf("%v: expected %v, got %v", k, testcase.expectedOk, ok)
    			}
    			if !ok {
    				return
    			}
    			if e, a := testcase.expectedUser, resp.User; !reflect.DeepEqual(e, a) {
    				t.Errorf("%v: expected %#v, got %#v", k, e, a)
    			}
    
    			want := testcase.finalHeaders
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 21 14:51:22 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  2. platforms/software/plugins-version-catalog/src/integTest/resources/org/gradle/catalog/expected2.toml

    Tom Tresansky <******@****.***> 1697219015 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 16 12:28:14 UTC 2023
    - 257 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/metadata/AbstractRepositoryMetadataSource.java

            return Joiner.on(SystemProperties.getInstance().getLineSeparator()).join(lines);
        }
    
        private void checkEquals(String label, String expected, String actual, List<String> errors) {
            if (!expected.equals(actual)) {
                errors.add("bad " + label + ": expected='" + expected + "' found='" + actual + "'");
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/proxy/util/endpoints_test.go

    	}
    
    	for _, tc := range testCases {
    		ip := IPPart(tc.endpoint)
    		if tc.expectedError == noError {
    			if ip != tc.expectedIP {
    				t.Errorf("Unexpected IP for %s: Expected: %s, Got %s", tc.endpoint, tc.expectedIP, ip)
    			}
    		} else if ip != "" {
    			t.Errorf("Error did not occur for %s, expected: '%s' error", tc.endpoint, tc.expectedError)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/constants/constants_test.go

    			manifestsDir:  "/etc/bar/",
    			expected:      "/etc/bar/foo.yaml",
    		},
    	}
    	for _, rt := range tests {
    		t.Run(rt.componentName, func(t *testing.T) {
    			actual := GetStaticPodFilepath(rt.componentName, rt.manifestsDir)
    			expected := filepath.FromSlash(rt.expected)
    			if actual != expected {
    				t.Errorf(
    					"failed GetStaticPodFilepath:\n\texpected: %s\n\t  actual: %s",
    					rt.expected,
    					actual,
    				)
    			}
    		})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 03:26:36 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top