Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 100 for langues (0.44 sec)

  1. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/suppression/scriptUninitializedTopLevelProperty2.txt

    Diagnostics from elements:
      for PSI element of type KtStringTemplateExpression at (1,11-32)
        ERROR_SUPPRESSION      text ranges: [(10,31)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Nov 13 10:20:26 UTC 2023
    - 194 bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/unresolvedReferenceInsideSuperConstructorCallWithLocalFunction.txt

    Diagnostics from elements:
      for PSI element of type KtNameReferenceExpression at (6,17-27)
        UNRESOLVED_REFERENCE      text ranges: [(147,157)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Oct 13 17:13:14 UTC 2023
    - 197 bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/incompleteFor.txt

    Diagnostics from elements:
      for PSI element of type KtForExpression at (2,5) - (3,1)
        ITERATOR_MISSING      text ranges: [(20,30)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Nov 22 17:15:24 UTC 2023
    - 179 bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/when/sealedClassFromLibraryMissingCase.txt

    Diagnostics from elements:
      for PSI element of type KtWhenExpression at (14,12) - (16,6)
        NO_ELSE_IN_WHEN      text ranges: [(102,106)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jan 10 10:13:23 UTC 2024
    - 188 bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/unresolvedReferenceInsideSuperConstructorCallWithPrimaryConstructor.txt

    Diagnostics from elements:
      for PSI element of type KtNameReferenceExpression at (4,5-15)
        UNRESOLVED_REFERENCE      text ranges: [(92,102)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Oct 13 17:13:14 UTC 2023
    - 194 bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/NativeLanguageTools.java

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.toolchain.internal;
    
    import java.io.File;
    
    /**
     * Tools for compiling and linking native languages.
     */
    public interface NativeLanguageTools extends ExecutableTools {
        File getCompilerExecutable();
    
        File getLinkerExecutable();
    
        File getArchiverExecutable();
    
        File getAssemblerExecutable();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 981 bytes
    - Viewed (0)
  7. README.md

    and deploying software on any platform, Gradle offers a flexible model that can support the entire development lifecycle from compiling and packaging code to publishing websites. Gradle has been designed to support build automation across multiple languages and platforms, including Java, Scala, Android, Kotlin, C/C++, and Groovy, and is closely integrated with development tools and continuous integration servers, including Eclipse, IntelliJ, and Jenkins.
    
    **For more information, please visit...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 20:49:08 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_settings_files.adoc

    |===
    
    == Settings Script structure
    
    A Settings script is a series of method calls to the Gradle API that often use `{ ... }`, a special shortcut in both the Groovy and Kotlin languages.
    A `{ }` block is called a _lambda_ in Kotlin or a _closure_ in Groovy.
    
    Simply put, the `plugins{ }` block is a method invocation in which a Kotlin _lambda_ object or Groovy _closure_ object is passed as the argument.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 04:15:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. .github/workflows/build-docs.yml

          - name: Export Language Codes
            id: show-langs
            run: |
              echo "langs=$(python ./scripts/docs.py langs-json)" >> $GITHUB_OUTPUT
    
      build-docs:
        needs:
          - changes
          - langs
        if: ${{ needs.changes.outputs.docs == 'true' }}
        runs-on: ubuntu-latest
        strategy:
          matrix:
            lang: ${{ fromJson(needs.langs.outputs.langs) }}
        steps:
          - name: Dump GitHub context
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 10 00:30:25 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/tasks/Copy.java

     *         filter(ReplaceTokens, tokens: [version: '2.3.1'])
     *     }
     *     from('src/main/config') {
     *         exclude '**/*.properties', '**/*.xml'
     *     }
     *     from('src/main/languages') {
     *         rename 'EN_US_(.*)', '$1'
     *     }
     *     into 'build/target/config'
     *     exclude '**/*.bak'
     *
     *     includeEmptyDirs = false
     *
     *     with dataContent
     * }
     * </pre>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 3.4K bytes
    - Viewed (0)
Back to top