Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 466 for composed (0.35 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CppAppWithLibrary.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.fixtures.app
    
    /**
     * A C++ app composed of 2 modules: an executable and a library.
     */
    class CppAppWithLibrary implements AppElement {
        final greeter = new CppGreeter().asLib()
        final main = new CppMainUsesGreeter(greeter)
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 971 bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/SwiftAppWithLibrary.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.fixtures.app
    
    /**
     * A Swift app composed of 2 modules: an application and a library.
     */
    class SwiftAppWithLibrary implements AppElement {
        final library = new SwiftLib()
        final executable = new SwiftAppWithDep(library, library)
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 984 bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/SwiftAppWithLibraryAndOptionalFeature.groovy

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.fixtures.app
    
    import org.gradle.integtests.fixtures.SourceFile
    
    /**
     * A Swift app composed of 2 modules, an application and a library, and an optional compile time feature.
     */
    class SwiftAppWithLibraryAndOptionalFeature {
        final library = new SwiftGreeterWithOptionalFeature()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AbstractOpaqueFileCollection.java

    import org.gradle.internal.Factory;
    
    import java.io.File;
    import java.util.Iterator;
    import java.util.Set;
    
    /**
     * A base class for {@link org.gradle.api.file.FileCollection} implementations that are not composed from other file collections.
     */
    public abstract class AbstractOpaqueFileCollection extends AbstractFileCollection {
        public AbstractOpaqueFileCollection() {
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/SwiftAppWithLibraries.groovy

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.fixtures.app
    
    import org.gradle.integtests.fixtures.SourceFile
    
    /**
     * A Swift app composed of 3 modules: an application and 2 libraries. The application depends on one library only, so that the other library is a transitive dependency of the application.
     */
    class SwiftAppWithLibraries implements AppElement {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. src/internal/pkgbits/doc.go

    // abstractions.
    //
    // Elements may cross-reference each other with "relocations." For
    // example, an element representing a pointer type has a relocation
    // referring to the element type.
    //
    // Go constructs may be composed as a constellation of multiple
    // elements. For example, a declared function may have one element to
    // describe the object (e.g., its name, type, position), and a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 20 19:01:40 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/swift/SwiftComponent.java

    /**
     * Configuration for a Swift component, such as a library or executable, defining the source files that make up the component plus other settings.
     *
     * <p>Swift component is composed of some Swift source files that are compiled and then linked into some binary.</p>
     *
     * <p>An instance of this type is added as a project extension by the Swift plugins.</p>
     *
     * @since 4.2
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/DerHeader.kt

       * ```
       */
      var tagClass: Int,
      /** Identifies which member in the ASN.1 schema the field holds. */
      var tag: Long,
      /**
       * If the constructed bit is set it indicates that the value is composed of other values that have
       * their own headers.
       *
       * This value is encoded in bit 6 of the first byte of each value.
       *
       * ```
       * 0bxx0xxxxx Primitive
       * 0bxx1xxxxx Constructed
       * ```
       */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. maven-plugin-api/src/site/apt/index.apt

    ~~ under the License.
    
     -----
     Introduction
     -----
     Hervé Boutemy
     -----
     2012-06-02
     -----
    
    Maven 3 Plugin API
    
     The API for Maven 3 plugins - composed of goals implemented by Mojos - development:
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 24 16:01:00 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/ide/problems-api-usage/README.adoc

    ## Running the sample
    
    To run the sample, execute the `./gradlew :sample-ide:importBuild` command.
    
    ## Project structure
    
    The sample consists of multiple, individual builds composed into a composite build with the following layout
    
    * `sample-project`: A Gradle build with plugins that report problems
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 08:50:13 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top