Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 236 for emitItem (0.12 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/graph_optimization_pass.cc

                                       layout_optimization_options);
    
      // Prepare IR for exporting.
      pm.addPass(CreateBreakUpIslandsPass());
    
      // In case of failure, the `diag_handler` converts MLIR errors emitted to the
      // MLIRContext into a tensorflow::Status.
      StatusScopedDiagnosticHandler diag_handler(module.getContext());
      LogicalResult result = pm.run(module);
      (void)result;
      return diag_handler.ConsumeStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 09:56:53 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaAnnotationProcessingIntegrationTest.groovy

            operations[':compileJava'].failure.contains('Compilation failed')
        }
    
        def "empty processor path overrides processors in the compile classpath, and no deprecation warning is emitted"() {
            buildFile << """
                dependencies {
                    implementation project(":annotation")
                    implementation project(":processor")
                }
    
                compileJava {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  3. src/runtime/cgo.go

    // an unexported name). The calls serve two purposes:
    // 1) they are opaque to escape analysis, so the argument is considered to
    // escape to the heap.
    // 2) they keep the argument alive until the call site; the call is emitted after
    // the end of the (presumed) use of the argument by C.
    // cgoUse should not actually be called (see cgoAlwaysFalse).
    func cgoUse(any) { throw("cgoUse should not be called") }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_utils.h

    // Returns a NHWC shaped type from an NCHW shaped type op.
    // For example- Given a Composite op that wraps a core.aten.avg_pool2d, this
    // returns the return type of the tfl.average_pool_2d emitted. Note that the
    // aten.avg_pool2d works with the NCHW layout while tfl.average_pool_2d assumes
    // NHWC.
    ShapedType GetNhwcReturnTypeFromNchw(Operation* old_op);
    
    }  // namespace odml
    
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 18:33:05 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/processors/CaptureTestOutputTestResultProcessor.java

                } finally {
                    rootId = null;
                }
            } else {
                //when test is completed we should redirect output for the parent
                //so that log events emitted during @AfterSuite, @AfterClass are processed
                Object newOwner = parents.remove(testId);
                outputRedirector.setOutputOwner(newOwner);
            }
            processor.completed(testId, event);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/InternalProblemSpec.java

         */
        <U extends AdditionalDataSpec> InternalProblemSpec additionalData(Class<? extends U> specType, Action<? super U> config);
    
        /**
         * Declares that this problem was emitted by a task with the given path.
         *
         * @param buildTreePath the absolute path of the task within the build tree
         * @return this
         */
        InternalProblemSpec taskPathLocation(String buildTreePath);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ExpectedDeprecationWarning.java

    import com.google.common.base.Preconditions;
    
    import java.util.List;
    import java.util.regex.Pattern;
    
    /**
     * Represents a deprecation warning message that is expected to be emitted by a test.
     * <p>
     * This class exists to support the detection of deprecation warnings that span multiple lines,
     * which may include the keyword "{@code deprecated}" multiple times.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/service/scopes/BuildScopeServices.java

            return new BuildOperationFiringSettingsPreparer(
                new DefaultSettingsPreparer(
                    settingsLoaderFactory
                ),
                buildOperationRunner,
                emitter,
                buildDefinition.getFromBuild());
        }
    
        @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  9. src/main/webapp/js/clipboard.min.js

    class as a function")}(this,e),this.resolveOptions(t),this.initSelection()}return i(e,[{key:"resolveOptions",value:function(){var t=0<arguments.length&&void 0!==arguments[0]?arguments[0]:{};this.action=t.action,this.container=t.container,this.emitter=t.emitter,this.target=t.target,this.text=t.text,this.trigger=t.trigger,this.selectedText=""}},{key:"initSelection",value:function(){this.text?this.selectFake():this.target&&this.selectTarget()}},{key:"selectFake",value:function(){var t=this,e="rtl"==d...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat May 28 04:16:16 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r85/TestFailureProgressEventCrossVersionTest.groovy

    class TestFailureProgressEventCrossVersionTest extends TestFailureSpecification {
    
        def setup() {
            enableTestJvmDebugging = false
            enableStdoutProxying = true
        }
    
        def "Wrapped assertion errors are emitted as test failure events using JUnit 4"() {
            given:
            setupJUnit4()
            file('src/test/java/org/gradle/JUnitTest.java') << '''
                package org.gradle;
    
                import org.junit.Test;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 10 17:52:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
Back to top