Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 262 for no_aop (0.4 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/connection/CancellationExceptionTransformer.java

        private static final CancellationExceptionTransformer NO_OP = new CancellationExceptionTransformer() {
            @Override
            public RuntimeException transform(RuntimeException e) {
                return e;
            }
        };
    
        static CancellationExceptionTransformer transformerFor(VersionDetails versionDetails) {
            if (versionDetails.honorsContractOnCancel()) {
                return NO_OP;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. subprojects/core/src/testFixtures/groovy/org/gradle/api/internal/file/TestFiles.java

        }
    
        public static FilePropertyFactory filePropertyFactory() {
            return new DefaultFilePropertyFactory(PropertyHost.NO_OP, resolver(), fileCollectionFactory());
        }
    
        public static FilePropertyFactory filePropertyFactory(File baseDir) {
            return new DefaultFilePropertyFactory(PropertyHost.NO_OP, resolver(baseDir), fileCollectionFactory(baseDir));
        }
    
        public static FileFactory fileFactory() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:55 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DistributionInstaller.java

        private static final InternalBuildProgressListener NO_OP = new NoOpListener();
        private final ProgressLoggerFactory progressLoggerFactory;
        private final InternalBuildProgressListener buildProgressListener;
        private final Clock clock;
        private final AtomicReference<InternalBuildProgressListener> currentListener = new AtomicReference<InternalBuildProgressListener>(NO_OP);
        // Protects the following state
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/events/OutputEventListener.java

     * limitations under the License.
     */
    
    package org.gradle.internal.logging.events;
    
    public interface OutputEventListener {
        void onOutput(OutputEvent event);
    
        OutputEventListener NO_OP = new OutputEventListener() {
            @Override
            public void onOutput(OutputEvent event) {
            }
        };
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 887 bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/WorkValidationContext.java

        InternalProblems getProblemsService();
    
        List<Problem> getProblems();
    
        ImmutableSet<Class<?>> getValidatedTypes();
    
        interface TypeOriginInspector {
            TypeOriginInspector NO_OP = type -> Optional.empty();
    
            Optional<PluginId> findPluginDefining(Class<?> type);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:26:04 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/hlo_matchers.h

    #include "mlir/IR/Value.h"  // from @llvm-project
    
    namespace mlir {
    namespace odml {
    // The following 5 different forms of mhlo::iota will be matched:
    // 1. IotaOp.
    // 2. IotaOp + BroadCastInDim.
    // 3. IotaOp + Reshape.
    // 4. Constant (folded Iota) + BroadCastInDim.
    // 5. Constant (folded result).
    // Moreover, the dimensions has to match the iota_dimension.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 20:53:17 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/BytecodeFragment.java

     * limitations under the License.
     */
    
    package org.gradle.model.internal.asm;
    
    import org.objectweb.asm.MethodVisitor;
    
    public interface BytecodeFragment {
    
        BytecodeFragment NO_OP = visitor -> {};
    
        void emit(MethodVisitor visitor);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:25 UTC 2024
    - 820 bytes
    - Viewed (0)
  8. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/versionmapping/DefaultVersionMappingStrategy.java

                Set<ImmutableAttributes> candidates = attributeBasedMappings.keySet();
                List<ImmutableAttributes> matches = matcher.matches(candidates, variantAttributes, AttributeMatchingExplanationBuilder.NO_OP);
                if (matches.size() == 1) {
                    Collection<Action<? super VariantVersionMappingStrategy>> actions = attributeBasedMappings.get(matches.get(0));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/hlo_matchers.cc

    //
    // where $dimensions must have size 1 and iota can have rank>=1.
    // It usually used for matching rank 1 iota since the iotaOp will be folded to
    // IotaOp + BroadCastInDimOp except for the case when result shape is rank 1.
    bool MatchSingleIota(DenseIntElementsAttr dimensions, Value iota) {
      auto iota_op = dyn_cast_or_null<mhlo::IotaOp>(iota.getDefiningOp());
      if (!iota_op || dimensions.getNumElements() != 1) return false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/CleanupProgressMonitor.java

    package org.gradle.cache;
    
    public interface CleanupProgressMonitor {
    
        void incrementDeleted();
    
        void incrementSkipped();
    
        void incrementSkipped(long amount);
    
        CleanupProgressMonitor NO_OP = new CleanupProgressMonitor() {
            @Override
            public void incrementDeleted() {
            }
    
            @Override
            public void incrementSkipped() {
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top