Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 902 for Serializable (0.14 sec)

  1. platforms/core-configuration/declarative-dsl-tooling-models/src/main/kotlin/org/gradle/declarative/dsl/schema/DataParameter.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.declarative.dsl.schema
    
    import java.io.Serializable
    
    
    interface DataParameter : Serializable {
    
        val name: String?
    
        val type: DataTypeRef
    
        val isDefault: Boolean
    
        val semantics: ParameterSemantics
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 850 bytes
    - Viewed (0)
  2. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationRef.java

     * limitations under the License.
     */
    
    package org.gradle.internal.operations;
    
    import javax.annotation.Nullable;
    import java.io.Serializable;
    
    public interface BuildOperationRef extends Serializable {
    
        @Nullable
        OperationIdentifier getId();
    
        @Nullable
        OperationIdentifier getParentId();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 885 bytes
    - Viewed (0)
  3. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/PlaceholderExceptionSupport.java

     * limitations under the License.
     */
    package org.gradle.internal.serialize;
    
    import org.gradle.internal.scan.UsedByScanPlugin;
    
    import java.io.Serializable;
    
    @UsedByScanPlugin
    public interface PlaceholderExceptionSupport extends Serializable {
    
        StackTraceElement[] getStackTrace();
    
        String getExceptionClassName();
    
        String getMessage();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 930 bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r86/CustomModel.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.tooling.r86;
    
    import java.io.Serializable;
    
    class CustomModel implements Serializable {
        public int value;
    
        public CustomModel(int value) {
            this.value = value;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 13 23:23:41 UTC 2023
    - 830 bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/LoadEclipseModel.java

    import org.gradle.tooling.model.eclipse.EclipseProject;
    import org.gradle.tooling.model.eclipse.EclipseRuntime;
    import org.gradle.tooling.model.eclipse.EclipseWorkspace;
    
    import java.io.Serializable;
    
    public class LoadEclipseModel implements BuildAction<EclipseProject>, Serializable {
    
        private final EclipseWorkspace workspace;
    
        public LoadEclipseModel(EclipseWorkspace workspace) {
    
            this.workspace = workspace;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/TellGradleToRunBuildDependencyTask.java

    import org.gradle.tooling.model.eclipse.EclipseWorkspace;
    import org.gradle.tooling.model.eclipse.RunClosedProjectBuildDependencies;
    
    import java.io.Serializable;
    
    public class TellGradleToRunBuildDependencyTask implements BuildAction<Void>, Serializable {
    
        private final EclipseWorkspace workspace;
    
        public TellGradleToRunBuildDependencyTask(EclipseWorkspace workspace) {
    
            this.workspace = workspace;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. platforms/core-runtime/client-services/src/test/groovy/org/gradle/internal/daemon/client/serialization/CustomModel.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.daemon.client.serialization;
    
    import java.io.Serializable;
    
    public class CustomModel implements Serializable {
        public CustomModel(CustomAction customAction) {
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 816 bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r48/CustomBuildFinishedModel.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.tooling.r48;
    
    import java.io.Serializable;
    
    public interface CustomBuildFinishedModel extends Serializable {
        String getValue();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 781 bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r48/CustomProjectsLoadedModel.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.tooling.r48;
    
    import java.io.Serializable;
    
    public interface CustomProjectsLoadedModel extends Serializable {
        String getValue();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 782 bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Ordering.java

      @GwtCompatible(serializable = true)
      public <S extends T> Ordering<S> reverse() {
        return new ReverseOrdering<>(this);
      }
    
      /**
       * Returns an ordering that treats {@code null} as less than all other values and uses {@code
       * this} to compare non-null values.
       *
       * <p>The returned object is serializable if this object is serializable.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
Back to top