Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 250 for NOOP (0.07 sec)

  1. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinBuildScriptIntegrationTest.kt

                }
            """)
            withFile("buildSrc/src/main/kotlin/my-plugin.gradle.kts", """
                extensions.create<MyExtension>("my")
                tasks.register("noop")
            """)
            withBuildScript("""
                plugins { id("my-plugin") }
    
                extensions.getByType(MyExtension::class).some("api.get")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/BiActions.java

    public abstract class BiActions {
    
        private static final BiAction<Object, Object> NOOP = new BiAction<Object, Object>() {
            @Override
            public void execute(Object o, Object o2) {
    
            }
        };
    
        private BiActions() {
        }
    
        public static BiAction<Object, Object> doNothing() {
            return NOOP;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/util/internal/NameValidatorTest.groovy

            ["configurations", new DefaultConfigurationContainer(TestUtil.instantiatorFactory().decorateLenient(), CollectionCallbackActionDecorator.NOOP, rootComponentMetaDataBuilderFactory, Mock(DefaultConfigurationFactory), Mock(ResolutionStrategyFactory))],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 13 22:27:15 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/pin-ops-with-side-effects.mlir

      func.return %arg0 : tensor<1xf32>
    }
    
    func.func @noop()->() {
      func.return
    }
    
    // CHECK-LABEL: @tf_if_gets_control_node
    func.func @tf_if_gets_control_node(%arg0: tensor<1xi1>)->() {
     "tf.If"(%arg0) {_lower_using_switch_merge = true, _read_only_resource_inputs = [], device = "", else_branch = @noop, is_stateless = false, output_shapes = [#tf_type.shape<>], then_branch = @noop} : (tensor<1xi1>) -> ()
     func.return
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 17 10:45:19 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/FactoryNamedDomainObjectContainerSpec.groovy

        def usesFactoryToCreateContainerElements() {
            def container = new FactoryNamedDomainObjectContainer<String>(String.class, instantiator, namer, factory, MutationGuards.identity(), CollectionCallbackActionDecorator.NOOP)
    
            when:
            def result = container.create('a')
    
            then:
            result == 'element a'
            1 * factory.create('a') >> 'element a'
            0 * _._
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 26 05:36:10 UTC 2018
    - 3.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/utils/dump_graph_test.cc

      }
    
     private:
      string& str_;
    };
    
    TEST(Dump, TextualIrToFileSuccess) {
      Graph graph(OpRegistry::Global());
      Node* node;
      TF_CHECK_OK(NodeBuilder("A", "NoOp").Finalize(&graph, &node));
    
      setenv("TF_DUMP_GRAPH_PREFIX", testing::TmpDir().c_str(), 1);
      UseMlirForGraphDump(MlirDumpConfig());
      string ret = DumpGraphToFile("tir", graph);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:47:51 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/func_attr.mlir

    module attributes {tf.versions = {bad_consumers = [], min_consumer = 12 : i32, producer = 458 : i32}} {
      func.func @main() {
        tf_executor.graph {
          %control = tf_executor.island wraps "tf.NoOp"() {_f = #tf_type.func<@callee, {attr2 = true, attr3 = 8.0 : f32}>} : () -> ()
          %control_1 = tf_executor.island(%control) wraps "tf.LegacyCall"() {f = @callee} : () -> ()
          tf_executor.fetch
        }
        func.return
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 11 16:41:06 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_initializer_function_ops_to_main.cc

    // This pass moves all ops from initializer functions to the main function. A
    // new `tf.NoOp` that has control dependency to the initializer function for
    // non-variable resources will be created. The control output of the new
    // `tf.NoOp` will be merged into the main function's `FetchOp`.
    class MergeInitializerFunctionOpsToMainPass
        : public PassWrapper<MergeInitializerFunctionOpsToMainPass,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:54:52 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/internal/NativeSpecVisualStudioTargetBinaryTest.groovy

            exeBinary.libs >> [deps1, deps2]
    
            then:
            targetBinary.includePaths == [file1, file2, file3] as Set
        }
    
        def "reflects source files of binary"() {
            def sourceSets = new DefaultDomainObjectSet<LanguageSourceSet>(LanguageSourceSet, CollectionCallbackActionDecorator.NOOP)
            def sourcefile1 = new File('file1')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinInitScriptIntegrationTest.kt

                the<MyExtension>().some("kotlin.get")
                configure<MyExtension> { some("kotlin.configure") }
            """)
            withBuildScript("""tasks.register("noop")""")
    
            assertThat(
                build("noop", "-q", "-I", initScript.absolutePath).output.trim(),
                equalTo(
                    """
                    api.get
                    api.configure
                    kotlin.get
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Sep 24 17:45:43 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top