Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,583 for constructors (0.62 sec)

  1. maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/conflict/NearestConflictResolverTest.java

    /**
     * Tests <code>NearestConflictResolver</code>.
     *
     * @see NearestConflictResolver
     */
    @Deprecated
    class NearestConflictResolverTest extends AbstractConflictResolverTest {
        // constructors -----------------------------------------------------------
    
        public NearestConflictResolverTest() throws Exception {
            super("nearest");
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/tasks/TaskContainerInternal.java

         */
        boolean addAllInternal(Collection<? extends Task> task);
    
        /**
         * Creates an instance of the given task type without invoking its constructors. This is used to recreate a task instance from the configuration cache.
         *
         * TODO:configuration-cache - review this
         */
        <T extends Task> T createWithoutConstructor(String name, Class<T> type, long uniqueId);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 08 09:35:04 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. tensorflow/cc/framework/ops.h

     public:
      /// Initializer enables constructing an Input object from various kinds of C++
      /// constants such as simple primitive constants and nested initializer lists
      /// representing a multi-dimensional array. Initializer constructors are all
      /// templates, so the aforementioned kinds of C++ constants can be used to
      /// construct an Initializer. Initializer stores the value it got constructed
      /// with in a Tensor object.
      struct Initializer {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/conflict/OldestConflictResolverTest.java

    /**
     * Tests <code>OldestConflictResolver</code>.
     *
     * @see OldestConflictResolver
     */
    @Deprecated
    class OldestConflictResolverTest extends AbstractConflictResolverTest {
        // constructors -----------------------------------------------------------
    
        public OldestConflictResolverTest() throws Exception {
            super("oldest");
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. testing/architecture-test/src/test/java/org/gradle/architecture/test/ServiceScopeAnnotationValidationTest.java

                    .anyMatch(method -> method.isAnnotatedWith(Inject.class));
            }
        };
    
        private static final DescribedPredicate<JavaClass> injected_by_constructor = new DescribedPredicate<JavaClass>("injected into constructors via @Inject") {
            @Override
            public boolean test(JavaClass javaClass) {
                return javaClass
                    .getMethodsWithParameterTypeOfSelf()
                    .stream()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/UncheckedExecutionException.java

       *     constructor that omits the cause.
       */
      @Deprecated
      protected UncheckedExecutionException() {}
    
      /**
       * Creates a new instance with the given detail message and no cause.
       *
       * @deprecated Prefer {@linkplain UncheckedExecutionException(String, Throwable)} a constructor
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 17:52:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/continuous/ContinuousIntegrationTestFixtureTest.groovy

            }
        }
    
        private GradleHandle setupStubs(AbstractContinuousIntegrationTest sampleTest) {
            sampleTest.results = [] // fields are null for some reason, perhaps Spock internally modifies constructors
            def gradleHandle = Stub(GradleHandle)
            gradleExecuter.withStdinPipe() >> gradleExecuter
            gradleExecuter.withTasks(_) >> gradleExecuter
            gradleExecuter.withForceInteractive(_) >> gradleExecuter
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/DefaultAnalysisSchema.kt

        override val name: FqName,
        override val supertypes: Set<FqName>,
        override val properties: List<DataProperty>,
        override val memberFunctions: List<SchemaMemberFunction>,
        override val constructors: List<DataConstructor>
    ) : DataClass {
    
        override fun toString(): String = name.simpleName
    
        companion object Empty : DataClass {
            override val name: FqName = FqName.Empty
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/ExecutionError.java

       *     #initCause} later, so it is not quite equivalent to using a constructor that omits the
       *     cause.
       */
      @Deprecated
      protected ExecutionError() {}
    
      /**
       * Creates a new instance with the given detail message and no cause.
       *
       * @deprecated Prefer {@linkplain ExecutionError(String, Error)} a constructor that accepts a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 17:52:19 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/metadata/HasKotlinFlagsMetadataQuery.kt

            MemberType.TYPE -> hasTypeFlags(kmClass, jvmSignature, predicate)
            MemberType.FIELD -> hasPropertyFlags(kmClass::properties, jvmSignature, predicate)
            MemberType.CONSTRUCTOR -> hasConstructorFlags(kmClass::constructors, jvmSignature, predicate)
            MemberType.METHOD -> hasFunctionFlags(kmClass::functions, jvmSignature, predicate) ||
                hasPropertyFlags(kmClass::properties, jvmSignature, predicate)
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 07 08:14:15 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top