Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 140 for no_oss (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. tensorflow/c/experimental/gradients/nn_grad.cc

    #include "tensorflow/c/eager/immediate_execution_tensor_handle.h"
    #include "tensorflow/c/experimental/ops/array_ops.h"
    #include "tensorflow/c/experimental/ops/math_ops.h"
    #include "tensorflow/c/experimental/ops/nn_ops.h"
    #include "tensorflow/core/lib/llvm_rtti/llvm_rtti.h"
    #include "tensorflow/core/platform/errors.h"
    
    using std::vector;
    using tensorflow::ops::BiasAddGrad;
    using tensorflow::ops::ReluGrad;
    
    namespace tensorflow {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 09 06:38:45 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DependencySubstitutionRules.java

    import org.gradle.internal.Actions;
    
    /**
     * A service that injects dependency substitution rules into the build.
     */
    public interface DependencySubstitutionRules {
        DependencySubstitutionRules NO_OP = new DependencySubstitutionRules() {
            @Override
            public Action<DependencySubstitution> getRuleAction() {
                return Actions.doNothing();
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/CleanupAction.java

     * @see CacheBuilder#withCleanupStrategy(CacheCleanupStrategy)
     */
    public interface CleanupAction {
    
        void clean(CleanableStore cleanableStore, CleanupProgressMonitor progressMonitor);
    
        CleanupAction NO_OP = new CleanupAction() {
            @Override
            public void clean(CleanableStore cleanableStore, CleanupProgressMonitor progressMonitor) {
                // no-op
            }
        };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 19 07:59:23 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/ToolingApiBuildEventListenerFactory.java

            }
            if (subscriptions.isRequested(OperationType.GENERIC)) {
                return new ClientForwardingBuildOperationListener(progressEventConsumer);
            }
            return NO_OP;
        }
    
        @Nonnull
        private ProblemsProgressEventConsumer createProblemsProgressConsumer(ProgressEventConsumer progressEventConsumer) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/model/InstantiatorBackedObjectFactory.java

        }
    
        @Override
        public <T> Property<T> property(Class<T> valueType) {
            return new DefaultProperty<>(PropertyHost.NO_OP, valueType);
        }
    
        @Override
        public <T> ListProperty<T> listProperty(Class<T> elementType) {
            return new DefaultListProperty<>(PropertyHost.NO_OP, elementType);
        }
    
        @Override
        public <T> SetProperty<T> setProperty(Class<T> elementType) {
            return broken();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 14 18:56:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/PropertyHost.java

    import org.gradle.internal.state.ModelObject;
    
    import javax.annotation.Nullable;
    
    @ServiceScope({Scope.Global.class, Scope.Project.class})
    public interface PropertyHost {
        PropertyHost NO_OP = producer -> null;
    
        /**
         * Returns null if the host allows reads of its state, or a string that explains why reads are not allowed.
         */
        @Nullable
        String beforeRead(@Nullable ModelObject producer);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. subprojects/core/src/testFixtures/groovy/org/gradle/util/TestUtil.groovy

                        def filePropertyFactory = new DefaultFilePropertyFactory(PropertyHost.NO_OP, fileResolver, fileCollectionFactory)
                        return new DefaultProjectLayout(fileResolver.resolve("."), fileResolver, DefaultTaskDependencyFactory.withNoAssociatedProject(), PatternSets.getNonCachingPatternSetFactory(), PropertyHost.NO_OP, fileCollectionFactory, filePropertyFactory, filePropertyFactory)
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 13.2K bytes
    - Viewed (0)
Back to top