Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,583 for constructors (0.76 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. platforms/core-configuration/model-core/src/main/java/org/gradle/model/Managed.java

     * A managed type can be implemented as an abstract class.
     * All property getters and setters must be declared {@code abstract} (with the exception of calculated read-only properties).
     * The class cannot contain instance variables, constructors, or any methods that are not a getter or setter.
     *
     * <h3>Creating managed model elements</h3>
     * <p>
     * Please see {@link Model} for information on creating model elements of managed types.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. pkg/kube/krt/core.go

    // These are all created by the various Filter* functions
    type FetchOption func(*dependency)
    
    // CollectionOption is a functional argument type that can be passed to Collection constructors.
    type CollectionOption func(*collectionOptions)
    
    // Transformations represent functions that derive some output types from an input type.
    type (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. pkg/proxy/conntrack/cleanup_test.go

    )
    
    func TestCleanStaleEntries(t *testing.T) {
    	// We need to construct a proxy.ServicePortMap to pass to CleanStaleEntries.
    	// ServicePortMap is just map[string]proxy.ServicePort, but there are no public
    	// constructors for any implementation of proxy.ServicePort, so we have to either
    	// provide our own implementation of that interface, or else use a
    	// proxy.ServiceChangeTracker to construct them and fill in the map for us.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 18:09:05 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/main/java/jcifs/smb1/util/MD4.java

        /**
         * 512 bits work buffer = 16 x 32-bit words
         */
        private int[] X = new int[16];
    
    
    // Constructors
    //...........................................................................
    
        public MD4 () {
            super("MD4");
            engineReset();
        }
    
        /**
         *    This constructor is here to implement cloneability of this class.
         */
        private MD4 (MD4 md) {
            this();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 9.3K bytes
    - Viewed (0)
Back to top