Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 250 for NOOP (0.04 sec)

  1. platforms/core-configuration/stdlib-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/stdlib/UnitCodec.kt

    import org.gradle.internal.serialize.graph.ReadContext
    import org.gradle.internal.serialize.graph.WriteContext
    
    
    object UnitCodec : Codec<Unit> {
    
        override suspend fun WriteContext.encode(value: Unit) {
            // noop
        }
    
        override suspend fun ReadContext.decode() {
            // returns Unit instance under the hood
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 20:43:52 UTC 2024
    - 1K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/tests/keras_imagenet_main_graph_mode.golden_summary

    Clustered nodes: 2178
    Unclustered nodes: 446
    Number of clusters: 1
    
    unclustered size 446
     AssignAddVariableOp 2
     Const 2
     DivNoNan 1
     Identity 1
     NoOp 1
     ReadVariableOp 2
     VarHandleOp 435
     _Retval 2
    cluster 0 size 2178
     Add 17
     AddN 72
     ArgMax 1
     AssignAddVariableOp 1
     AssignSubVariableOp 106
     BiasAdd 1
     BiasAddGrad 1
     Cast 3
     Const 357
     Conv2D 53
     Conv2DBackpropFilter 53
     Conv2DBackpropInput 52
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 06 10:38:14 UTC 2023
    - 740 bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/versions/types_go121.go

    	// this tool can support.
    	//
    	// There are no features currently in x/tools that need to tell fine grained
    	// differences for versions <1.22.
    	return toolchain
    }
    
    // InitFileVersions is a noop when compiled with this Go version.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 938 bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/CollectionCallbackActionDecorator.java

    @ServiceScope(Scope.CrossBuildSession.class)
    public interface CollectionCallbackActionDecorator {
        <T> Action<T> decorate(@Nullable Action<T> action);
    
        <T> Spec<T> decorateSpec(Spec<T> spec);
    
        CollectionCallbackActionDecorator NOOP = new CollectionCallbackActionDecorator() {
            @Override
            public <T> Action<T> decorate(@Nullable Action<T> action) {
                return action;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/collections/DefaultDomainObjectCollectionFactoryTest.groovy

    class DefaultDomainObjectCollectionFactoryTest extends Specification {
        def factory = new DefaultDomainObjectCollectionFactory(TestUtil.instantiatorFactory(), TestUtil.services(), CollectionCallbackActionDecorator.NOOP, Stub(MutationGuard))
    
        def "creates container with decorated elements"() {
            given:
            def container = factory.newNamedDomainObjectContainer(ElementBean)
            def element = container.create("one")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 12 02:49:30 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/TestContainer.java

        public TestContainer(org.gradle.internal.reflect.Instantiator instantiator) {
            super(TestObject.class, instantiator, new DynamicPropertyNamer(), CollectionCallbackActionDecorator.NOOP);
        }
    
        protected TestObject doCreate(String name) {
            Instantiator instantiator = getInstantiator();
            TestObject testObject = new TestObject(instantiator);
            testObject.setName(name);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/util/ThreadDumpUtil.java

    import org.codelibs.fess.Constants;
    
    public class ThreadDumpUtil {
        private static final Logger logger = LogManager.getLogger(ThreadDumpUtil.class);
    
        protected ThreadDumpUtil() {
            // noop
        }
    
        public static void printThreadDump() {
            processThreadDump(logger::info);
        }
    
        public static void printThreadDumpAsWarn() {
            processThreadDump(logger::warn);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/split_into_island_per_op.mlir

    func.func @multiple_func_body_ops() {
      tf_executor.graph {
        tf_executor.island {
          "tf.NoOp"() : () -> ()
          tf_executor.yield
        }
        tf_executor.fetch
      }
      tf_executor.graph {
        tf_executor.island {
          "tf.NoOp"() : () -> ()
          tf_executor.yield
        }
        tf_executor.fetch
      }
      func.return
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/validation/TypeValidationContext.java

         *
         * @param problemSpec the problem builder
         */
        void visitPropertyProblem(Action<? super TypeAwareProblemBuilder> problemSpec);
    
        TypeValidationContext NOOP = new TypeValidationContext() {
            @Override
            public void visitPropertyProblem(Action<? super TypeAwareProblemBuilder> problemSpec) {}
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/internal/NoopPluginResolver.java

    import org.gradle.plugin.use.internal.DefaultPluginId;
    
    // Used for testing the plugins DSL
    public class NoopPluginResolver implements PluginResolver {
    
        public static final PluginId NOOP_PLUGIN_ID = DefaultPluginId.of("noop");
        private final PluginRegistry pluginRegistry;
    
        public NoopPluginResolver(PluginRegistry pluginRegistry) {
            this.pluginRegistry = pluginRegistry;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:30:55 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top