Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 361 for constructors (1 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCall.kt

    }
    
    /**
     * A delegated call to constructors. For example
     * ```
     * open class SuperClass(i: Int)
     * class SubClass1: SuperClass(1) // a call to constructor of `SuperClass` with single argument `1`
     * class SubClass2 : SuperClass {
     *   constructor(i: Int): super(i) {} // a call to constructor of `SuperClass` with single argument `i`
     *   constructor(): this(2) {} // a call to constructor of `SubClass2` with single argument `2`.
     * }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/StandardJavadocDocletOptions.java

         * constructors and fields use any API of the given class or package. Given class C,
         * things that use class C would include subclasses of C, fields declared as C, methods that return C,
         * and methods and constructors with parameters of type C.
         * For example, let's look at what might appear on the "Use" page for String.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/test/groovy/gradlebuild/binarycompatibility/PublicAPIRulesTest.groovy

            def violation = rule.maybeViolation(jApiMethod)
    
            then:
            violation.severity == Severity.info
            violation.humanExplanation == 'New public API in 11.38 (@Incubating)'
        }
    
        def "constructors with @Inject annotation are not considered public API"() {
            given:
            def rule = withContext(ruleElem)
            def annotations = []
            jApiConstructor.annotations >> annotations
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:12:19 UTC 2023
    - 16K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirMetadataCalculator.kt

            )
    }
    
    private fun getAsmMethodSignatureWithCorrection(method: PsiMethod): String = buildString {
        append("(")
        if (method.containingClass?.isEnum == true && method.isConstructor) {
            // Enum constructors are represented without name/ordinal in light classes, which seems fine because they don't have name/ordinal
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. maven-model/src/main/java/org/apache/maven/model/InputLocation.java

         * Field locations.
         */
        private java.util.Map<Object, InputLocation> locations;
    
        /**
         * Field location.
         */
        private InputLocation location;
    
        // ----------------/
        // - Constructors -/
        // ----------------/
    
        public InputLocation(org.apache.maven.api.model.InputLocation location) {
            this.lineNumber = location.getLineNumber();
            this.columnNumber = location.getColumnNumber();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Oct 19 07:06:15 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  6. tensorflow/cc/framework/scope.h

    /// Graph object to which operations are added when the new scope or its
    /// children are used by an Op constructor. The new scope also has a Status
    /// object which will be used to indicate errors by Op-constructor functions
    /// called on any child scope. The Op-constructor functions have to check the
    /// scope's status by calling the ok() method before proceeding to construct the
    /// op.
    ///
    /// Thread safety:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/io/CharSourceTest.java

     *
     * @author Colin Decker
     */
    public class CharSourceTest extends IoTestCase {
    
      @AndroidIncompatible // Android doesn't understand suites whose tests lack default constructors.
      public static TestSuite suite() {
        TestSuite suite = new TestSuite();
        for (boolean asByteSource : new boolean[] {false, true}) {
          suite.addTest(
              CharSourceTester.tests(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/project/taskfactory/AnnotationProcessingTaskFactoryTest.groovy

                        assert type.constructors.size() == 1
                        return type.cast(type.constructors[0].newInstance(params))
                    } else {
                        return TestUtil.newInstance(type)
                    }
                }
            })
            return expectTaskCreated(name, type, task)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  9. src/crypto/internal/boring/goboringcrypto.h

    #include <stdint.h> // uint8_t
    
    // This symbol is hidden in BoringCrypto and marked as a constructor,
    // but cmd/link's internal linking mode doesn't handle constructors.
    // Until it does, we've exported the symbol and can call it explicitly.
    // (If using external linking mode, it will therefore be called twice,
    // once explicitly and once as a constructor, but that's OK.)
    /*unchecked*/ void _goboringcrypto_BORINGSSL_bcm_power_on_self_test(void);
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/TestsForMapsInJavaUtil.java

      private static Map<String, String> toHashMap(Entry<String, String>[] entries) {
        return populate(new HashMap<String, String>(), entries);
      }
    
      // TODO: call conversion constructors or factory methods instead of using
      // populate() on an empty map
      private static <T, M extends Map<T, String>> M populate(M map, Entry<T, String>[] entries) {
        for (Entry<T, String> entry : entries) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top