Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for instructors (0.19 sec)

  1. .github/ISSUE_TEMPLATE/30_contributor_regression.yml

            You can use [the template](https://github.com/gradle/gradle-issue-reproducer) with a Gradle GitHub action set up to showcase your problem.
            In the rare cases where this is infeasible, we will also accept a detailed set of instructions.
            You can also use [Gradle Project Replicator](https://github.com/android/project-replicator) to reproduce the structure of your project.
        validations:
          required: true
      - type: input
        id: gradle-version
    Others
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Feb 16 07:49:32 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  2. 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)
        }
    }
    
    
    private
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Jun 07 08:14:15 GMT 2023
    - 4.5K 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:
    Groovy
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Dec 01 20:12:19 GMT 2023
    - 16K bytes
    - Viewed (0)
  4. .teamcity/README.md

    (we highly recommend to name this branch without prefix and hyphen (`-`) because it's used to generate build type ID) and want to
    test these changes without affecting `master`/`release` pipeline. Here are the instructions.
    
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Mar 06 23:02:25 GMT 2024
    - 4K bytes
    - Viewed (0)
  5. .github/ISSUE_TEMPLATE/10_contributor_bug_report.yml

    name: Bug Report
    description: Create a report to help us improve
    labels: [ "a:bug", "to-triage" ]
    assignees: [ ]
    body:
      - type: markdown
        attributes:
          value: |
            Please follow the instructions below.
            We receive dozens of issues every week, so to stay productive, we will close issues that don't provide enough information.
    
    Others
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Feb 16 07:49:32 GMT 2024
    - 3K bytes
    - Viewed (0)
  6. .github/ISSUE_TEMPLATE/20_contributor_feature_request.yml

    name: Feature request
    description: Suggest an idea for this project
    labels: [ "a:feature", "to-triage" ]
    assignees: [ ]
    body:
      - type: markdown
        attributes:
          value: |
            Please follow the instructions below.
            We receive dozens of issues every week, so to stay productive, we will close issues that don't provide enough information.
    
    Others
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Apr 06 11:10:39 GMT 2023
    - 1.5K bytes
    - Viewed (0)
  7. build-logic/idea/src/main/kotlin/gradlebuild.ide.gradle.kts

    See the License for the specific language governing permissions and
    limitations under the License."""
    }
    
    tasks.idea {
        doFirst { throw RuntimeException("To import in IntelliJ, please follow the instructions here: https://github.com/gradle/gradle/blob/master/CONTRIBUTING.md#intellij") }
    }
    
    if (idea.project != null) { // may be null during script compilation
        idea {
            module {
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Mon Jun 26 15:42:59 GMT 2023
    - 3.6K bytes
    - Viewed (0)
  8. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/BinaryBreakingChangesRule.java

                    return null;
                }
                if (member instanceof JApiConstructor) {
                    if (isInject((JApiConstructor) member)) {
                        // We do not consider injecting constructors public API
                        return null;
                    }
                }
                for (JApiCompatibilityChange change : member.getCompatibilityChanges()) {
                    if (IGNORED_CHANGE_TYPES.contains(change)) {
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Oct 06 19:15:15 GMT 2022
    - 3.1K bytes
    - Viewed (0)
Back to top