Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 144 for Libraries (0.23 sec)

  1. build-logic/publishing/src/main/kotlin/gradlebuild.publish-public-libraries.gradle.kts

    Stefan Wolf <******@****.***> 1679558512 +0100
    Plain Text
    - Registered: 2023-11-15 11:36
    - Last Modified: 2023-03-23 08:01
    - 8.7K bytes
    - Viewed (0)
  2. .idea/encodings.xml

        <file url="file://$PROJECT_DIR$/libraries/examples/browser-example/src/main/kotlin" charset="UTF-8" />
        <file url="file://$PROJECT_DIR$/libraries/examples/browser-example/src/main/resources" charset="UTF-8" />
        <file url="file://$PROJECT_DIR$/libraries/examples/js-example" charset="UTF-8" />
    XML
    - Registered: 2023-12-01 08:18
    - Last Modified: 2022-08-22 14:23
    - 5.9K bytes
    - Viewed (0)
  3. .gitignore

    !**/test/**/build
    *.iml
    !**/testData/**/*.iml
    .idea/artifacts
    .idea/remote-targets.xml
    .idea/libraries/Gradle*.xml
    .idea/libraries/Maven*.xml
    .idea/modules
    .idea/runConfigurations/JPS_*.xml
    .idea/runConfigurations/_JPS_*.xml
    .idea/runConfigurations/PILL_*.xml
    .idea/runConfigurations/_FP_*.xml
    .idea/runConfigurations/_MT_*.xml
    .idea/libraries
    .idea/modules.xml
    .idea/gradle.xml
    .idea/compiler.xml
    Plain Text
    - Registered: 2023-12-01 08:18
    - Last Modified: 2023-11-20 09:00
    - 1.2K bytes
    - Viewed (0)
  4. .space/CODEOWNERS

    /libraries/tools/binary-compatibility-validator/ "Kotlin Libraries"
    /libraries/tools/dukat/ "Kotlin JS"
    /libraries/tools/ide-plugin-dependencies-validator "Kotlin IDE Analysis Core"
    /libraries/kotlin-dom-api-compat/ "Kotlin JS"
    /libraries/tools/kotlin-build-tools-enum-compat/ "Kotlin Build Tools"
    /libraries/tools/gradle/ "Kotlin Build Tools"
    /libraries/tools/jdk-api-validator/ "Kotlin Libraries"
    Plain Text
    - Registered: 2023-12-01 08:18
    - Last Modified: 2023-11-30 12:25
    - 21.9K bytes
    - Viewed (0)
  5. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/NativeProjectWithDepsGeneratorTask.groovy

            allLibraries.eachWithIndex { List<String> libraries, int libraryGroupIdx ->
                libraries.eachWithIndex { String subprojectName, int idx ->
                    List<String> dependentProjects = []
                    if (generateDeepHierarchy) {
                        // Each "layer" of libraries depends on the layer before it.
                        // This should generate a deep and wide dependency tree
    Groovy
    - Registered: 2023-11-15 11:36
    - Last Modified: 2021-07-07 13:12
    - 11.2K bytes
    - Viewed (0)
  6. README.md

    * [Building Java Libraries](https://docs.gradle.org/current/samples/sample_building_java_libraries.html)
    * [Building Groovy Applications](https://docs.gradle.org/current/samples/sample_building_groovy_applications.html)
    * [Building Groovy Libraries](https://docs.gradle.org/current/samples/sample_building_groovy_libraries.html)
    Plain Text
    - Registered: 2023-11-29 11:36
    - Last Modified: 2023-11-01 13:29
    - 3.9K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/toolchain/java/JavaToolchain.java

        //     * runtime environment. The Bootstrap libraries include libraries in JRE's
        //     * extension directory, if there are any.
        //     *
        //     * @return List
        //     */
        //    List getBootstrapLibraries();
        //
        //    /**
        //     * Returns a list of {@link java.io.File}s which represent the libraries recognized by
    Java
    - Registered: 2023-12-03 03:35
    - Last Modified: 2023-09-06 08:39
    - 2.3K bytes
    - Viewed (0)
  8. docs/en/docs/how-to/graphql.md

        It has **advantages** and **disadvantages** when compared to common **web APIs**.
    
        Make sure you evaluate if the **benefits** for your use case compensate the **drawbacks**. 🤓
    
    ## GraphQL Libraries
    
    Here are some of the **GraphQL** libraries that have **ASGI** support. You could use them with **FastAPI**:
    
    * <a href="https://strawberry.rocks/" class="external-link" target="_blank">Strawberry</a> 🍓
    Plain Text
    - Registered: 2023-12-03 07:19
    - Last Modified: 2023-08-19 19:54
    - 3.4K bytes
    - Viewed (0)
  9. apache-maven/src/assembly/maven/lib/jansi-native/README.txt

    This directory contains Jansi native libraries extracted from Jansi JAR.
    
    You can add your own build for platforms not natively supported by Jansi.
    See here [1] on how to compile for your platform and here [2] how libraries
    follow Jansi's directory and filename conventions.
    
    [1] https://github.com/fusesource/jansi/tree/master/src/main/native
    Plain Text
    - Registered: 2023-12-03 03:35
    - Last Modified: 2022-07-18 17:22
    - 486 bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/io/CharSink.java

        checkNotNull(charSequence);
    
        Closer closer = Closer.create();
        try {
          Writer out = closer.register(openStream());
          out.append(charSequence);
          out.flush(); // https://code.google.com/p/guava-libraries/issues/detail?id=1330
        } catch (Throwable e) {
          throw closer.rethrow(e);
        } finally {
          closer.close();
        }
      }
    
      /**
    Java
    - Registered: 2023-12-01 12:43
    - Last Modified: 2023-02-28 20:13
    - 6.1K bytes
    - Viewed (0)
Back to top