Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 233 for desc2 (0.61 sec)

  1. operator/pkg/version/version_test.go

    func TestVersion(t *testing.T) {
    	tests := []struct {
    		desc    string
    		yamlStr string
    		want    Version
    		wantErr string
    	}{
    		{
    			desc: "nil success",
    		},
    		{
    			desc:    "major success",
    			yamlStr: "1",
    			want:    NewVersion(1, 0, 0, ""),
    		},
    		{
    			desc:    "major fail",
    			yamlStr: "1..",
    			wantErr: `Malformed version: 1..`,
    		},
    		{
    			desc:    "major fail prefix",
    			yamlStr: ".1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  2. src/testing/panic_test.go

    func TestPanic(t *testing.T) {
    	testenv.MustHaveExec(t)
    
    	testCases := []struct {
    		desc  string
    		flags []string
    		want  string
    	}{{
    		desc:  "root test panics",
    		flags: []string{"-test_panic_test=TestPanicHelper"},
    		want: `
    --- FAIL: TestPanicHelper (N.NNs)
        panic_test.go:NNN: TestPanicHelper
    `,
    	}, {
    		desc:  "subtest panics",
    		flags: []string{"-test_panic_test=TestPanicHelper/1"},
    		want: `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 16:49:24 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/filters/metrics_test.go

    	metrics := []string{
    		"authenticated_user_requests",
    		"authentication_attempts",
    	}
    
    	testCases := []struct {
    		desc        string
    		response    *authenticator.Response
    		status      bool
    		err         error
    		apiAudience authenticator.Audiences
    		want        string
    	}{
    		{
    			desc: "auth ok",
    			response: &authenticator.Response{
    				User: &user.DefaultInfo{Name: "admin"},
    			},
    			status: true,
    			want: `
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 20 13:35:55 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  4. fess-crawler/src/test/resources/sitemaps/sitemap1.txt

    http://www.example.com/
    http://www.example.com/catalog?item=12&desc=vacation_hawaii
    http://www.example.com/catalog?item=73&desc=vacation_new_zealand
    http://www.example.com/catalog?item=74&desc=vacation_newfoundland
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 273 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/audit/policy/util_test.go

    	for _, test := range []struct {
    		desc           string
    		stages         []audit.Stage
    		expectedStages []audit.Stage
    	}{
    		{
    			desc: "should remove one",
    			stages: []audit.Stage{
    				audit.StageResponseStarted,
    			},
    			expectedStages: []audit.Stage{
    				audit.StageRequestReceived,
    				audit.StageResponseComplete,
    				audit.StagePanic,
    			},
    		},
    		{
    			desc: "should remove both",
    			stages: []audit.Stage{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 09 22:38:00 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  6. fess-crawler/src/test/resources/sitemaps/sitemap1.xml.gz

    sitemap1.xml http://www.example.com/ 2005-01-01 monthly 0.8 http://www.example.com/catalog?item=12&desc=vacation_hawaii weekly http://www.example.com/catalog?item=73&desc=vacation_new_zealand 2004-12-23 weekly http://www.example.com/catalog?item=74&desc=vacation_newfoundland 2004-12-23T18:00:15+00:00 0.3 http://www.example.com/catalog?item=83&desc=vacation_usa 2004-11-23...
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 332 bytes
    - Viewed (0)
  7. pkg/controller/certificates/rootcacertpublisher/metrics_test.go

    	"k8s.io/component-base/metrics/legacyregistry"
    	"k8s.io/component-base/metrics/testutil"
    )
    
    func TestSyncCounter(t *testing.T) {
    	testCases := []struct {
    		desc    string
    		err     error
    		metrics []string
    		want    string
    	}{
    		{
    			desc: "nil error",
    			err:  nil,
    			metrics: []string{
    				"root_ca_cert_publisher_sync_total",
    			},
    			want: `
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 16 12:05:32 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  8. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/normalization/java/impl/SortingAnnotationVisitor.java

        }
    
        @Override
        public AnnotationVisitor visitAnnotation(String name, String desc) {
            AnnotationMember annotation = new AnnotationMember(desc, true);
            SortingAnnotationVisitor visitor =
                new SortingAnnotationVisitor(annotation, super.visitAnnotation(name, desc));
            visitor.parentVisitor = this;
            visitor.annotationValueName = nameOrValue(name);
            return visitor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. pkg/client/tests/listwatch_test.go

    	table := []struct {
    		desc          string
    		location      string
    		resource      string
    		namespace     string
    		fieldSelector fields.Selector
    	}{
    		{
    			desc:          "node",
    			location:      "/api/v1/nodes",
    			resource:      "nodes",
    			namespace:     metav1.NamespaceAll,
    			fieldSelector: parseSelectorOrDie(""),
    		},
    		{
    			desc: "pod with 'assigned' field selector",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 02 17:08:23 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/orig/view/searchOptions.jsp

    				<la:message key="labels.search_result_select_sort" />
    			</option>
    			<la:option value="score.desc">
    				<la:message key="labels.search_result_sort_score_desc" />
    			</la:option>
    			<la:option value="filename.asc">
    				<la:message key="labels.search_result_sort_filename_asc" />
    			</la:option>
    			<la:option value="filename.desc">
    				<la:message key="labels.search_result_sort_filename_desc" />
    			</la:option>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Jul 17 08:19:53 UTC 2019
    - 3.7K bytes
    - Viewed (0)
Back to top