Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,170 for createFn (0.16 sec)

  1. src/main/java/org/codelibs/fess/es/log/bsbhv/BsUserInfoBhv.java

        public int selectCount(CBCall<UserInfoCB> cbLambda) {
            return facadeSelectCount(createCB(cbLambda));
        }
    
        public OptionalEntity<UserInfo> selectEntity(CBCall<UserInfoCB> cbLambda) {
            return facadeSelectEntity(createCB(cbLambda));
        }
    
        protected OptionalEntity<UserInfo> facadeSelectEntity(UserInfoCB cb) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      // Create return op for device computation region in the paralle_execute op
      Operation* after_op_r = builder.create<mlir::tf_device::ReturnOp>(
          new_device_cluster.getLoc(), device_results);
    
      builder.setInsertionPointToEnd(&parallel_execute_device_block);
    
      // Create return op for the new device cluster op
      builder.create<mlir::tf_device::ReturnOp>(device_cluster.getLoc(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/SmbResource.java

         * because workgroups, servers, and shares cannot be dynamically created
         * (although in the future it may be possible to create shares).
         *
         * @throws CIFSException
         */
        void mkdirs () throws CIFSException;
    
    
        /**
         * Creates a directory with the path specified by this
         * <code>SmbResource</code>. For this method to be successful, the target
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Dec 20 14:09:34 UTC 2020
    - 26K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/bsbhv/BsDataConfigBhv.java

        public int selectCount(CBCall<DataConfigCB> cbLambda) {
            return facadeSelectCount(createCB(cbLambda));
        }
    
        public OptionalEntity<DataConfig> selectEntity(CBCall<DataConfigCB> cbLambda) {
            return facadeSelectEntity(createCB(cbLambda));
        }
    
        protected OptionalEntity<DataConfig> facadeSelectEntity(DataConfigCB cb) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/bsbhv/BsLabelTypeBhv.java

        public int selectCount(CBCall<LabelTypeCB> cbLambda) {
            return facadeSelectCount(createCB(cbLambda));
        }
    
        public OptionalEntity<LabelType> selectEntity(CBCall<LabelTypeCB> cbLambda) {
            return facadeSelectEntity(createCB(cbLambda));
        }
    
        protected OptionalEntity<LabelType> facadeSelectEntity(LabelTypeCB cb) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskOverwritingIntegrationTest.groovy

        }
    
        def "cannot overwrite a lazy task creation with a eager task creation after the lazy task has been realized"() {
            buildFile << '''
                class MyTask extends DefaultTask {}
                def myTask = tasks.register("myTask", SomeTask).get()
    
                tasks.create(name: "myTask", type: SomeOtherTask, overwrite: true) {
                   println "Configure ${path}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 13 09:05:07 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/UnboundRulesProcessor.java

                ModelBinding subjectBinding = binder.getSubjectBinding();
                // Only report subject binding if target state is after node creation
                if (subjectBinding.getPredicate().getState().compareTo(ModelNode.State.Created) > 0) {
                    UnboundRuleInput.Builder inputBuilder = toInputBuilder(subjectBinding);
                    builder.mutableInput(inputBuilder);
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. src/internal/trace/testdata/generators/go122-go-create-without-running-g.go

    // the time of writing, one such example is goroutines created by expiring
    // timers.
    
    package main
    
    import (
    	"internal/trace"
    	"internal/trace/event/go122"
    	testgen "internal/trace/internal/testgen/go122"
    )
    
    func main() {
    	testgen.Main(gen)
    }
    
    func gen(t *testgen.Trace) {
    	g1 := t.Generation(1)
    
    	// A goroutine gets created on a running P, then starts running.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 996 bytes
    - Viewed (0)
  9. docs/fr/docs/alternatives.md

    ## Intro
    
    **FastAPI** n'existerait pas sans les précédentes contributions d'autres projets.
    
    De nombreux outils ont été créés auparavant et ont contribué à inspirer sa création.
    
    J'ai évité la création d'un nouveau framework pendant plusieurs années. J'ai d'abord essayé de combler toutes les
    fonctionnalités couvertes par **FastAPI** en utilisant de nombreux frameworks, plug-ins et outils différents.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  10. tensorflow/cc/framework/scope_internal.h

      bool single_use_scope() const { return scope_used_ != nullptr; }
    
      // The graph, status, and name maps are shared by all child scopes
      // created from a single 'root' scope. A root scope is created by calling the
      // Scope::NewRootScope function, which creates a new graph, a new status and
      // the name maps.
      std::shared_ptr<Graph> graph_ = nullptr;
      std::shared_ptr<Status> status_ = nullptr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 15:46:43 UTC 2022
    - 5.1K bytes
    - Viewed (0)
Back to top