Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 60 for TestList (0.16 sec)

  1. src/test/java/org/codelibs/core/beans/impl/FieldDescImplTest.java

            final FieldDesc aaa = beanDesc.getFieldDesc("aaa");
            aaa.setStaticFieldValue(String.class);
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testList() throws Exception {
            final BeanDesc beanDesc = new BeanDescImpl(MyBean.class);
            final FieldDesc hoge = beanDesc.getFieldDesc("list");
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorParallelIntegrationTest.groovy

                            itemName = item.toString()
                            list = testList
                        }
                    }
                }
    
                task firstTask(type: VerifyingRunnableTask) {
                    item = "task1"
                    testList = mutableList
                }
    
                task secondTask(type: MultipleWorkItemTask) {
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 31.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types_jsonschema.go

    	// Numeric index of array is not supported.
    	// For field name which contains special characters, use `['specialName']` to refer the field name.
    	// e.g. for attribute `foo.34$` appears in a list `testList`, the fieldPath could be set to `.testList['foo.34$']`
    	// +optional
    	FieldPath string
    
    	// optionalOldSelf is used to opt a transition rule into evaluation
    	// even when the object is first created, or if the old object is
    	// missing the value.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 22:23:23 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  4. pkg/registry/apps/statefulset/storage/storage_test.go

    	test := genericregistrytest.New(t, storage.StatefulSet.Store)
    	test.TestGet(validNewStatefulSet())
    }
    
    func TestList(t *testing.T) {
    	storage, server := newStorage(t)
    	defer server.Terminate(t)
    	defer storage.StatefulSet.Store.DestroyFunc()
    	test := genericregistrytest.New(t, storage.StatefulSet.Store)
    	test.TestList(validNewStatefulSet())
    }
    
    func TestDelete(t *testing.T) {
    	storage, server := newStorage(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 14K bytes
    - Viewed (0)
  5. pkg/registry/core/replicationcontroller/storage/storage_test.go

    	test := genericregistrytest.New(t, storage.Controller.Store)
    	test.TestGet(validNewController())
    }
    
    func TestList(t *testing.T) {
    	storage, server := newStorage(t)
    	defer server.Terminate(t)
    	defer storage.Controller.Store.DestroyFunc()
    	test := genericregistrytest.New(t, storage.Controller.Store)
    	test.TestList(validNewController())
    }
    
    func TestWatch(t *testing.T) {
    	storage, server := newStorage(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 06:57:01 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  6. pkg/registry/apps/replicaset/storage/storage_test.go

    	test := genericregistrytest.New(t, storage.ReplicaSet.Store)
    	test.TestGet(validNewReplicaSet())
    }
    
    func TestList(t *testing.T) {
    	storage, server := newStorage(t)
    	defer server.Terminate(t)
    	defer storage.ReplicaSet.Store.DestroyFunc()
    	test := genericregistrytest.New(t, storage.ReplicaSet.Store)
    	test.TestList(validNewReplicaSet())
    }
    
    func TestWatch(t *testing.T) {
    	storage, server := newStorage(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/core/lang/GenericsUtilTest.java

            assertThat(GenericsUtil.getGenericParameter(t2, 0), is(sameClass(String.class)));
        }
    
        /**
         * @throws Exception
         */
        public void testList() throws Exception {
            final Method m1 = ListType.class.getMethod("listOfString");
            final Type t1 = m1.getGenericReturnType();
            assertThat(GenericsUtil.isTypeOf(t1, List.class), is(true));
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. pkg/registry/apps/deployment/storage/storage_test.go

    	test := genericregistrytest.New(t, storage.Deployment.Store)
    	test.TestGet(validNewDeployment())
    }
    
    func TestList(t *testing.T) {
    	storage, server := newStorage(t)
    	defer server.Terminate(t)
    	defer storage.Deployment.Store.DestroyFunc()
    	test := genericregistrytest.New(t, storage.Deployment.Store)
    	test.TestList(validNewDeployment())
    }
    
    func TestWatch(t *testing.T) {
    	storage, server := newStorage(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:17:45 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  9. pkg/registry/core/namespace/storage/storage_test.go

    	// note that this ultimately may call validation
    	test.TestGet(validNewNamespace())
    }
    
    func TestList(t *testing.T) {
    	storage, server := newStorage(t)
    	defer server.Terminate(t)
    	defer storage.store.DestroyFunc()
    	test := genericregistrytest.New(t, storage.store).ClusterScope()
    	test.TestList(validNewNamespace())
    }
    
    func TestWatch(t *testing.T) {
    	storage, server := newStorage(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 17 05:13:34 UTC 2022
    - 19.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types_jsonschema.go

    	// Numeric index of array is not supported.
    	// For field name which contains special characters, use `['specialName']` to refer the field name.
    	// e.g. for attribute `foo.34$` appears in a list `testList`, the fieldPath could be set to `.testList['foo.34$']`
    	// +optional
    	FieldPath string `json:"fieldPath,omitempty" protobuf:"bytes,5,opt,name=fieldPath"`
    
    	// optionalOldSelf is used to opt a transition rule into evaluation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
Back to top