Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 40 for fnest (0.03 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/concurrent/TestExecutor.groovy

        TestExecutor(TestLogger logger) {
            this.logger = logger
        }
    
        void start() {
            lock.lock()
            try {
                if (owner != null) {
                    throw new IllegalStateException("Cannot nest async { } blocks.")
                }
                owner = Thread.currentThread()
            } finally {
                lock.unlock()
            }
        }
    
        void execute(Runnable runnable) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/riscv/anames.go

    	"BSETI",
    	"WORD",
    	"BEQZ",
    	"BGEZ",
    	"BGT",
    	"BGTU",
    	"BGTZ",
    	"BLE",
    	"BLEU",
    	"BLEZ",
    	"BLTZ",
    	"BNEZ",
    	"FABSD",
    	"FABSS",
    	"FNEGD",
    	"FNEGS",
    	"FNED",
    	"FNES",
    	"MOV",
    	"MOVB",
    	"MOVBU",
    	"MOVF",
    	"MOVD",
    	"MOVH",
    	"MOVHU",
    	"MOVW",
    	"MOVWU",
    	"NEG",
    	"NEGW",
    	"NOT",
    	"SEQZ",
    	"SNEZ",
    	"LAST",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/NestedConfigureAutoCreateNamedDomainObjectContainerSpec.groovy

                this.parentName = parentName
                this.name = name
            }
        }
    
        def "can nest auto creation configure closures"() {
            given:
            def parent = instantiator.newInstance(Container, "top", "parent", { name1 ->
                instantiator.newInstance(Container, "parent", name1, { name2 ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 26 05:36:10 UTC 2018
    - 3.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/graph_optimization_pass.cc

      // Assign optimal data layout to layout sensitive operations and delete
      // redundant transposes from the IR.
      LayoutOptimizationPipelineOptions layout_optimization_options;
      CreateLayoutOptimizationPipeline(pm.nest<func::FuncOp>(),
                                       layout_optimization_options);
    
      // Prepare IR for exporting.
      pm.addPass(CreateBreakUpIslandsPass());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 09:56:53 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/riscv64error.s

    	SRLI	$1, X5, F1			// ERROR "expected integer register in rd position but got non-integer register F1"
    	SRLI	$1, F1, X5			// ERROR "expected integer register in rs1 position but got non-integer register F1"
    	FNES	F1, (X5)			// ERROR "needs an integer register output"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildNestingIntegrationTest.groovy

     */
    
    package org.gradle.integtests.composite
    
    import org.gradle.api.Plugin
    import org.gradle.api.Project
    
    class CompositeBuildNestingIntegrationTest extends AbstractCompositeBuildIntegrationTest {
        def "can nest included builds"() {
            given:
            dependency(buildA, "org.test:buildB:1.2")
    
            def buildC = singleProjectBuild("buildC") {
                buildFile << """
                    apply plugin: 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/structured_input.py

          tf.TensorSpec([], tf.float32),
          tf.TensorSpec([], tf.float32),
      ]])
      def f0001_list_2_elements(self, l):
        return
    
      # Check index paths for dicts.
      # Keys are linearized in sorted order, matching `tf.nest.flatten`.
      #
      # CHECK:      func {{@[a-zA-Z_0-9]+}}(
      # CHECK-SAME:   %arg0: tensor<1xf32> {tf._user_specified_name = "d", tf_saved_model.index_path = [0, "x"]},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/structured_output.py

      def f0004_list_2_elements(self):
        return [[tf.constant(1.0, shape=[1]), tf.constant(1.0, shape=[2])]]
    
      # Check index paths for dicts.
      # Keys are linearized in sorted order, matching `tf.nest.flatten`.
      # More thorough testing of this is in structured_input.py. The underlying code
      # path for linearization is shared, so no need to replicate that testing here.
      #
      # CHECK:      func {{@[a-zA-Z_0-9]+}}() -> (
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultAntBuilderTest.groovy

            task2.target.name == 'target2'
    
            and:
            def task3 = project.tasks.target3
            task3 instanceof AntTarget
            task3.target.name == 'target3'
        }
    
        def "can nest elements"() {
            when:
            ant.otherProp = 'true'
            ant.condition(property: 'prop', value: 'someValue') {
                or {
                    and {
                        isSet(property: 'otherProp')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 11 16:17:40 UTC 2022
    - 7.7K bytes
    - Viewed (0)
  10. src/cmd/internal/pkgpattern/pkgpattern.go

    	return matchPatternInternal(pattern, false)
    }
    
    func matchPatternInternal(pattern string, vendorExclude bool) func(name string) bool {
    	// Convert pattern to regular expression.
    	// The strategy for the trailing /... is to nest it in an explicit ? expression.
    	// The strategy for the vendor exclusion is to change the unmatchable
    	// vendor strings to a disallowed code point (vendorChar) and to use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 16:43:40 UTC 2022
    - 4.8K bytes
    - Viewed (0)
Back to top