Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 655 for reflectively (0.25 sec)

  1. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/AdditionalData.java

    package org.gradle.api.problems.internal;
    
    import org.gradle.api.Action;
    import org.gradle.api.Incubating;
    
    /**
     * Marker interface for additional data that can be attached to a {@link Problem}.
     * <p>
     * This is effectively a sealed interface that is used to restrict the types of additional data that can be attached to a problem.
     * The list interfaces supported by the problems API are:
     * <ul>
     *     <li>{@link GeneralData}</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. internal/disk/fdatasync_linux.go

    // unless that metadata is needed in order to allow a subsequent data retrieval
    // to  be  correctly  handled.   For example, changes to st_atime or st_mtime
    // (respectively, time of last access and time of last modification; see inode(7))
    // do not require flushing because they are not necessary for a subsequent data
    // read to be handled correctly. On the other hand, a change to the file size
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Sep 29 23:40:28 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/application_plugin.adoc

    Applying the Application plugin also implicitly applies the <<java_plugin.adoc#java_plugin,Java plugin>>. The `main` source set is effectively the “application”.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/scopeids/id/WorkspaceScopeId.java

     * limitations under the License.
     */
    
    package org.gradle.internal.scopeids.id;
    
    import org.gradle.internal.id.UniqueId;
    
    /**
     * The persistent ID of a potential build on disk.
     *
     * It is effectively the root dir of a build.
     * That is, two builds with the same root dir share the same workspace.
     *
     * In practice, this generally maps to what users would think of as “checkout” of a project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 26 01:28:01 UTC 2017
    - 1.3K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/project/artifact/DefaultMetadataSource.java

    /**
     * This realizes the metadata source via the default hint to provide backward-compat with Maven 2.x whose Plexus version
     * registered component descriptors twice: once keyed by role+roleHint and once keyed by role only. This effectively
     * made the metadata source available with its original role hint ("maven") as well as the default hint.
     *
     */
    @Named
    @Singleton
    @Deprecated
    public class DefaultMetadataSource extends MavenMetadataSource {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/groovy/scripts/ScriptRunner.java

        /**
         * Returns the data extracted at compilation time.
         */
        M getData();
    
        /**
         * Returns true when the script will run some code when executed. Returns false for a script whose `run()` method is effectively empty.
         */
        boolean getRunDoesSomething();
    
        /**
         * Returns true when the script defines some methods.
         */
        boolean getHasMethods();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 18 00:05:45 UTC 2016
    - 1.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/maven/MavenDependencyDescriptor.java

        }
    
        /**
         * When an optional dependency declares a classifier, that classifier is effectively ignored, and the optional
         * dependency will update the version of any dependency with matching GAV.
         * (Same goes for <type> on optional dependencies: they are effectively ignored).
         *
         * Note that this doesn't really match with Maven, where an optional dependency with classifier will
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/internal/accesscontrol/AllowUsingApiForExternalUse.java

    import java.lang.annotation.ElementType;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Suppresses the checks done for {@link ForExternalUse}, effectively allowing the code point
     * marked by this annotation to use public API declarations that are meant for external use only in.
     *
     * @see ForExternalUse
     */
    @Retention(RetentionPolicy.CLASS)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Oct 22 03:06:57 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_data_optimization.cc

            batchInputDataset.getDefiningOp());
        if (!batchInputOp) return failure();
    
        // The type of the `num_parallel_calls` argument in ParallelMapDataset
        // and MapAndBatchDataset is different (int32 and int64 respectively)
        auto num_parallel_calls_op = rewriter.create<CastOp>(
            op.getLoc(), UnrankedTensorType::get(rewriter.getIntegerType(64)),
            batchInputOp.getNumParallelCalls(), rewriter.getBoolAttr(false));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 03 12:35:38 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/operations/trace/CustomOperationTraceSerialization.java

    /**
     * Can be implemented by an operation details, result or progress object
     * to provide a custom form for serializing into the trace files.
     *
     * By default, objects are serialized using Groovy's reflective JSON serializer.
     */
    public interface CustomOperationTraceSerialization {
    
        Object getCustomOperationTraceSerializableModel();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1007 bytes
    - Viewed (0)
Back to top