Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 165 for constructorsOf (0.29 sec)

  1. maven-model/src/main/java/org/apache/maven/model/InputSource.java

        /**
         *
         *
         *             The path/URL of the POM or {@code null} if
         * unknown.
         *
         *
         */
        private String location;
    
        // ----------------/
        // - Constructors -/
        // ----------------/
    
        public InputSource() {}
    
        public InputSource(org.apache.maven.api.model.InputSource source) {
            this.modelId = source.getModelId();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  2. 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)
  3. src/go/doc/testdata/generics.go

    // Go.
    package generics
    
    // Variables with an instantiated type should be shown.
    var X Type[int]
    
    // Parameterized types should be shown.
    type Type[P any] struct {
    	Field P
    }
    
    // Constructors for parameterized types should be shown.
    func Constructor[lowerCase any]() Type[lowerCase] {
    	return Type[lowerCase]{}
    }
    
    // MethodA uses a different name for its receiver type parameter.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 10 18:06:32 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/seat_seconds_test.go

    limitations under the License.
    */
    
    package request
    
    import (
    	"math"
    	"testing"
    	"time"
    )
    
    // TestSeatSecondsString exercises the SeatSeconds constructor and de-constructors (String, ToFloat).
    func TestSeatSecondsString(t *testing.T) {
    	testCases := []struct {
    		ss          SeatSeconds
    		expectFloat float64
    		expectStr   string
    	}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 29 20:20:16 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top