Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 94 for Configurable (0.17 sec)

  1. platforms/software/reporting/src/main/java/org/gradle/api/reporting/ConfigurableReport.java

     * limitations under the License.
     */
    
    package org.gradle.api.reporting;
    
    import java.io.File;
    
    /**
     * A file based report to be created with a configurable destination.
     *
     * Note this is a legacy type which offers no additional functionality.  Reports
     * should implement {@link Report} directly instead of using this interface.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/ConfigurableComponentWithLinkUsage.java

    import org.gradle.api.provider.Provider;
    import org.gradle.language.nativeplatform.ComponentWithLinkUsage;
    import org.gradle.nativeplatform.Linkage;
    
    import javax.annotation.Nullable;
    
    /**
     * A configurable view of a component that has a link usage. This should become public in some form.
     */
    public interface ConfigurableComponentWithLinkUsage extends ComponentWithLinkUsage, ComponentWithNames {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/io/TestByteSink.java

    package com.google.common.io;
    
    import com.google.common.collect.ImmutableSet;
    import java.io.ByteArrayOutputStream;
    import java.io.IOException;
    import java.io.OutputStream;
    
    /**
     * A byte sink for testing that has configurable behavior.
     *
     * @author Colin Decker
     */
    public class TestByteSink extends ByteSink implements TestStreamSupplier {
    
      private final ByteArrayOutputStream bytes = new ByteArrayOutputStream();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Sep 15 13:47:32 UTC 2016
    - 1.8K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/ConfigurableComponentWithStaticLibrary.java

    import org.gradle.nativeplatform.platform.NativePlatform;
    import org.gradle.nativeplatform.tasks.CreateStaticLibrary;
    import org.gradle.nativeplatform.toolchain.internal.PlatformToolProvider;
    
    /**
     * A configurable view of a component that produces a static library. This should become public in some form.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/io/TestByteSink.java

    package com.google.common.io;
    
    import com.google.common.collect.ImmutableSet;
    import java.io.ByteArrayOutputStream;
    import java.io.IOException;
    import java.io.OutputStream;
    
    /**
     * A byte sink for testing that has configurable behavior.
     *
     * @author Colin Decker
     */
    public class TestByteSink extends ByteSink implements TestStreamSupplier {
    
      private final ByteArrayOutputStream bytes = new ByteArrayOutputStream();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 1.8K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/file/RegularFileProperty.java

     */
    
    package org.gradle.api.file;
    
    import org.gradle.api.model.ObjectFactory;
    import org.gradle.api.provider.Provider;
    
    import javax.annotation.Nullable;
    import java.io.File;
    
    /**
     * Represents some configurable regular file location, whose value is mutable.
     *
     * <p>
     * You can create a {@link RegularFileProperty} using {@link ObjectFactory#fileProperty()}.
     * </p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 10 18:00:11 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/io/TestByteSource.java

    import com.google.common.collect.ImmutableSet;
    import java.io.ByteArrayInputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.util.Random;
    
    /**
     * A byte source for testing that has configurable behavior.
     *
     * @author Colin Decker
     */
    public final class TestByteSource extends ByteSource implements TestStreamSupplier {
    
      private final byte[] bytes;
      private final ImmutableSet<TestOption> options;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 1.9K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/io/TestByteSource.java

    import com.google.common.collect.ImmutableSet;
    import java.io.ByteArrayInputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.util.Random;
    
    /**
     * A byte source for testing that has configurable behavior.
     *
     * @author Colin Decker
     */
    public final class TestByteSource extends ByteSource implements TestStreamSupplier {
    
      private final byte[] bytes;
      private final ImmutableSet<TestOption> options;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Sep 15 13:47:32 UTC 2016
    - 1.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/FileCollectionConventionMappingIntegrationTest.groovy

    package org.gradle.api.provider
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    class FileCollectionConventionMappingIntegrationTest extends AbstractIntegrationSpec {
        def "convention mapping can be used with Configurable File Collection and an actual value"() {
            buildFile << """
                abstract class MyTask extends DefaultTask {
                    @Internal abstract ConfigurableFileCollection getFoo()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 20:10:55 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/NamedDomainObjectContainer.java

     * limitations under the License.
     */
    package org.gradle.api;
    
    import groovy.lang.Closure;
    import org.gradle.api.provider.Provider;
    import org.gradle.util.Configurable;
    
    /**
     * <p>A named domain object container is a specialization of {@link NamedDomainObjectSet} that adds the ability to create
     * instances of the element type.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 27 15:00:20 UTC 2022
    - 5.7K bytes
    - Viewed (0)
Back to top