Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,726 for createFn (0.13 sec)

  1. src/main/java/org/codelibs/fess/es/user/bsbhv/BsRoleBhv.java

            return facadeSelectList(createCB(cbLambda));
        }
    
        public PagingResultBean<Role> selectPage(CBCall<RoleCB> cbLambda) {
            // #pending same?
            return (PagingResultBean<Role>) facadeSelectList(createCB(cbLambda));
        }
    
        public void selectCursor(CBCall<RoleCB> cbLambda, EntityRowHandler<Role> entityLambda) {
            facadeSelectCursor(createCB(cbLambda), entityLambda);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskCreationIntegrationTest.groovy

            outputContains("Create :task2")
            outputContains("Configure :task2")
    
            when:
            run("task2")
    
            then:
            outputContains("Create :task1")
            outputContains("Configure :task1")
            outputContains("Create :task2")
            outputContains("Configure :task2")
        }
    
        def "task is created and configured when referenced during configuration"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 13 09:05:07 UTC 2021
    - 9.8K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/core/revived_types/flat_tensor_function.h

     public:
      // Factory for creating a FlatTensorFunction.
      //
      // Params:
      //  function_def - The function_def associated with the created
      //                 FlatTensorFunction. FlatTensorFunction will register this
      //                 function_def with `ctx` on creation, and de-register it on
      //                 destruction. function_def must be non-null, but
      //                 otherwise has no lifetime requirements.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 22 21:03:41 UTC 2020
    - 3.8K bytes
    - Viewed (0)
  4. pkg/volume/util/nested_volumes.go

    	"fmt"
    	"os"
    	"path/filepath"
    	"sort"
    	"strings"
    
    	v1 "k8s.io/api/core/v1"
    	podutil "k8s.io/kubernetes/pkg/api/v1/pod"
    )
    
    // getNestedMountpoints returns a list of mountpoint directories that should be created
    // for the volume indicated by name.
    // note: the returned list is relative to baseDir
    func getNestedMountpoints(name, baseDir string, pod v1.Pod) ([]string, error) {
    	var retval []string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 18 12:19:17 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/TaskContainerExtensions.kt

         * Locates a task by name and type, without triggering its creation or configuration, failing if there is no such task.
         *
         * @see [TaskContainer.named]
         */
        operator fun <U : Task> String.invoke(type: KClass<U>): TaskProvider<U> =
            container.named(this, type)
    }
    
    
    /**
     * Locates a task by name and type, without triggering its creation or configuration, failing if there is no such task.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 22:09:44 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. pkg/registry/core/namespace/strategy.go

    		),
    	}
    }
    
    // PrepareForCreate clears fields that are not allowed to be set by end users on creation.
    func (namespaceStrategy) PrepareForCreate(ctx context.Context, obj runtime.Object) {
    	// on create, status is active
    	namespace := obj.(*api.Namespace)
    	namespace.Status = api.NamespaceStatus{
    		Phase: api.NamespaceActive,
    	}
    	// on create, we require the kubernetes value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 07 08:51:17 UTC 2021
    - 8.3K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/collect/testing/testers/SetCreationTester.java

      public void testCreateWithDuplicates_nullDuplicatesRejected() {
        E[] array = createArrayWithNullElement();
        array[0] = null;
        try {
          collection = getSubjectGenerator().create(array);
          fail("Should reject duplicate null elements at creation");
        } catch (IllegalArgumentException expected) {
        }
      }
    
      @CollectionFeature.Require(REJECTS_DUPLICATES_AT_CREATION)
      @CollectionSize.Require(absent = {ZERO, ONE})
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 09 20:10:38 UTC 2018
    - 3.5K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/collect/testing/testers/SetCreationTester.java

      public void testCreateWithDuplicates_nullDuplicatesRejected() {
        E[] array = createArrayWithNullElement();
        array[0] = null;
        try {
          collection = getSubjectGenerator().create(array);
          fail("Should reject duplicate null elements at creation");
        } catch (IllegalArgumentException expected) {
        }
      }
    
      @CollectionFeature.Require(REJECTS_DUPLICATES_AT_CREATION)
      @CollectionSize.Require(absent = {ZERO, ONE})
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 09 20:10:38 UTC 2018
    - 3.5K bytes
    - Viewed (0)
  9. src/internal/trace/testdata/tests/go122-create-syscall-reuse-thread-id.test

    Carlos Amedee <******@****.***> 1715265901 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 652 bytes
    - Viewed (0)
  10. src/internal/trace/testdata/tests/go122-go-create-without-running-g.test

    Carlos Amedee <******@****.***> 1715265901 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 446 bytes
    - Viewed (0)
Back to top