Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 902 for Serializable (0.19 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/Models.java

     * limitations under the License.
     */
    
    package org.gradle.integtests.tooling.r68;
    
    import java.io.Serializable;
    import java.util.ArrayList;
    import java.util.Collection;
    import java.util.List;
    
    public class Models implements Serializable {
        private final boolean runsInParallel;
        private final List<CustomModel> projects;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/ZincScalaCompilerFacade.java

    import org.gradle.cache.scopes.GlobalScopedCacheBuilderFactory;
    import org.gradle.language.base.internal.compile.Compiler;
    
    import javax.inject.Inject;
    import java.io.Serializable;
    
    public class ZincScalaCompilerFacade implements Compiler<ScalaJavaJointCompileSpec>, Serializable {
        private final GlobalScopedCacheBuilderFactory globalScopedCacheBuilderFactory;
    
        private final HashedClasspath scalaClasspath;
    
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:30 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/process/internal/LoggingProcess.java

    package org.gradle.process.internal;
    
    import org.gradle.api.Action;
    import org.gradle.process.internal.worker.WorkerProcessContext;
    
    import java.io.Serializable;
    import java.util.Arrays;
    import java.util.List;
    
    public class LoggingProcess implements Action<WorkerProcessContext>, Serializable {
    
        private final List<SerializableLogAction> actions;
    
        public LoggingProcess(SerializableLogAction... actions){
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 06 17:14:50 UTC 2016
    - 1.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/Functions.java

    import java.io.Serializable;
    import java.util.Map;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Static utility methods pertaining to {@code com.google.common.base.Function} instances; see that
     * class for information about migrating to {@code java.util.function}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/Suppliers.java

    import com.google.common.annotations.VisibleForTesting;
    import java.io.Serializable;
    import java.time.Duration;
    import java.util.concurrent.TimeUnit;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Useful suppliers.
     *
     * <p>All methods return serializable suppliers as long as they're given serializable parameters.
     *
     * @author Laurence Gonsalves
     * @author Harry Heymann
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/CompoundOrdering.java

    package com.google.common.collect;
    
    import com.google.common.annotations.GwtCompatible;
    import java.io.Serializable;
    import java.util.Arrays;
    import java.util.Comparator;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /** An ordering that tries several comparators in order. */
    @GwtCompatible(serializable = true)
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/ProjectSchemaProvider.kt

        val target: T,
        val name: String,
        val type: T
    ) : Serializable {
    
        fun <U> map(f: (T) -> U) =
            ProjectSchemaEntry(f(target), name, f(type))
    }
    
    
    data class ConfigurationEntry<T>(
        val target: T,
        val dependencyDeclarationAlternatives: List<String> = listOf()
    ) : Serializable {
    
        fun hasDeclarationDeprecations() = dependencyDeclarationAlternatives.isNotEmpty()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/model/IsolatedGradleProjectInternal.java

    import javax.annotation.Nullable;
    import java.io.File;
    import java.io.Serializable;
    import java.util.Collection;
    import java.util.List;
    
    /**
     * Represents a Gradle project, isolated from the project hierarchy.
     * <p>
     * <b>This model is internal, and is NOT part of the public Tooling API.</b>
     */
    @NonNullApi
    public class IsolatedGradleProjectInternal implements Serializable {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/DiscreteDomain.java

       * results in the same object too.
       *
       * @since 14.0 (since 10.0 as {@code DiscreteDomains.integers()})
       */
      public static DiscreteDomain<Integer> integers() {
        return IntegerDomain.INSTANCE;
      }
    
      private static final class IntegerDomain extends DiscreteDomain<Integer> implements Serializable {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-tooling-models/src/main/kotlin/org/gradle/declarative/dsl/evaluation/InterpretationSequence.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.declarative.dsl.evaluation
    
    import java.io.Serializable
    
    
    interface InterpretationSequence : Serializable {
        val steps: Iterable<InterpretationSequenceStep>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 798 bytes
    - Viewed (0)
Back to top