Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 59 for factory (0.4 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         *
         * <p>All objects <b>MUST</b> expose their name as a bean property named "name". The name must be constant for the life of the object.</p>
         *
         * @param type The type of objects for the container to contain.
         * @param factory The factory to use to create object instances.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  2. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

        } else if (typeof...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

            private final Property<String> prop2;
            private final Property<String> aProp;
    
            public BeanWithProperty(ObjectFactory factory) {
                this.prop = factory.property(String.class);
                this.prop2 = factory.property(String.class);
                this.aProp = factory.property(String.class);
            }
    
            public Property<String> getProp() {
                return prop;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    	factory := informers.NewSharedInformerFactory(clientset, 0)
    	controller := utilflowcontrol.New(factory, clientset.FlowcontrolV1(), serverConcurrency)
    
    	factory.Start(stopCh)
    
    	// wait for the informer cache to sync.
    	timeout, cancel := context.WithTimeout(context.TODO(), 5*time.Second)
    	defer cancel()
    	cacheSyncDone := factory.WaitForCacheSync(timeout.Done())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/runtime/framework.go

    	f.pluginsMap = make(map[string]framework.Plugin)
    	for name, factory := range r {
    		// initialize only needed plugins.
    		if !pg.Has(name) {
    			continue
    		}
    
    		args := pluginConfig[name]
    		if args != nil {
    			outputProfile.PluginConfig = append(outputProfile.PluginConfig, config.PluginConfig{
    				Name: name,
    				Args: args,
    			})
    		}
    		p, err := factory(ctx, args, f)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/CharMatcher.java

       *     NMM.:7O           777777778
       *                       7777777MN
       *                       M NO .7:
       *                       M   :   M
       *                            8
       */
    
      // Constant matcher factory methods
    
      /**
       * Matches any character.
       *
       * @since 19.0 (since 1.0 as constant {@code ANY})
       */
      public static CharMatcher any() {
        return Any.INSTANCE;
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/base/CharMatcher.java

       *     NMM.:7O           777777778
       *                       7777777MN
       *                       M NO .7:
       *                       M   :   M
       *                            8
       */
    
      // Constant matcher factory methods
    
      /**
       * Matches any character.
       *
       * @since 19.0 (since 1.0 as constant {@code ANY})
       */
      public static CharMatcher any() {
        return Any.INSTANCE;
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    [[rel5.0:changes_to_default_task]]
    === [5.0] Changes to property factory methods on `DefaultTask`
    
    ==== Property factory methods on `DefaultTask` are now final
    The property factory methods such as `newInputFile()` are intended to be called from the constructor of a type that extends `DefaultTask`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

          internal::TypeId fixture_class_id,
          Test::SetUpTestCaseFunc set_up_tc,
          Test::TearDownTestCaseFunc tear_down_tc,
          internal::TestFactoryBase* factory);
    
      // Constructs a TestInfo object. The newly constructed instance assumes
      // ownership of the factory object.
      TestInfo(const std::string& test_case_name,
               const std::string& name,
               const char* a_type_param,   // NULL if not a type-parameterized test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

          internal::TypeId fixture_class_id,
          Test::SetUpTestCaseFunc set_up_tc,
          Test::TearDownTestCaseFunc tear_down_tc,
          internal::TestFactoryBase* factory);
    
      // Constructs a TestInfo object. The newly constructed instance assumes
      // ownership of the factory object.
      TestInfo(const std::string& test_case_name,
               const std::string& name,
               const char* a_type_param,   // NULL if not a type-parameterized test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
Back to top