Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for absorbed (0.18 sec)

  1. src/cmd/asm/internal/lex/input.go

    	}
    	in.Push(NewSlice(in.Base(), in.Line(), tokens))
    }
    
    // argsFor returns a map from formal name to actual value for this argumented macro invocation.
    // The opening parenthesis has been absorbed.
    func (in *Input) argsFor(macro *Macro) map[string][]Token {
    	var args [][]Token
    	// One macro argument per iteration. Collect them all and check counts afterwards.
    	for argNum := 0; ; argNum++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

      // targeting the SparseCore. Note that we need to include some non-TPU ops
      // that flow out of the forward pass function. Otherwise, they would get
      // absorbed into the non_tpu function which breaks the pipelining
      // decomposition strategy.
      //
      // Find all the outputs of the forward pass that aren't fed into the backward
      // pass.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/parse.go

    next:
    	// Skip newlines.
    	var tok lex.ScanToken
    	for {
    		tok = p.nextToken()
    		// We save the line number here so error messages from this instruction
    		// are labeled with this line. Otherwise we complain after we've absorbed
    		// the terminating newline and the line numbers are off by one in errors.
    		p.lineNum = p.lex.Line()
    		switch tok {
    		case '\n', ';':
    			continue
    		case scanner.EOF:
    			return "", "", nil, false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/odml_to_stablehlo.cc

        return tensorflow::errors::Aborted(
            "Failed to apply MLIR pass manager CL options.");
      }
    
      auto error_handler = [&](const Twine& msg) {
        emitError(UnknownLoc::get(pm.getContext())) << msg;
        return failure();
      };
      if (failed(pass_pipeline.addToPipeline(pm, error_handler))) {
        return tensorflow::errors::Aborted("Failed to add passes to pipeline.");
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/process/internal/DefaultExecHandleSpec.groovy

        }
    
        void "can abort after process has been aborted"() {
            given:
            def execHandle = handle().args(args(SlowApp.class)).build()
            execHandle.start()
            execHandle.abort()
    
            when:
            execHandle.abort()
    
            then:
            execHandle.state == ExecHandleState.ABORTED
    
            and:
            execHandle.waitForFinish().exitValue != 0
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 23 03:44:52 UTC 2021
    - 14.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/mlir_graph_optimization_pass_test.cc

              flib_.get(), &control_ret_node_names_, &control_rets_updated_),
          Status(absl::StatusCode::kAborted, "aborted"));
      verifyGraph(original_graph_def);
      verifyCounters();
    }
    
    TEST_F(MlirGraphOptimizationPassTest, OptimizationPassFailsDisabledFallback) {
      Init(Status(absl::StatusCode::kAborted, "aborted"),
           {MlirOptimizationPassState::Disabled,
            MlirOptimizationPassState::FallbackEnabled});
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 08:25:30 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/process/internal/DefaultExecHandle.java

    /**
     * Default implementation for the ExecHandle interface.
     *
     * <h3>State flows</h3>
     *
     * <ul>
     *   <li>INIT -&gt; STARTED -&gt; [SUCCEEDED|FAILED|ABORTED|DETACHED]</li>
     *   <li>INIT -&gt; FAILED</li>
     *   <li>INIT -&gt; STARTED -&gt; DETACHED -&gt; ABORTED</li>
     * </ul>
     *
     * State is controlled on all control methods:
     * <ul>
     * <li>{@link #start()} allowed when state is INIT</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_saver_op_test.cc

                      .Attr("output_file_path", "/tmp/statistics.pbtxt")
                      .Finalize(node_def()));
      ASSERT_THAT(InitOp(),
                  StatusIs(tsl::error::ABORTED,
                           HasSubstr("The number of inputs must be  three times "
                                     "the size of the `ids` list.")));
    }
    
    TEST_F(CalibrationStatisticsSaverTest, WrongInputTypes) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 01:31:23 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. platforms/jvm/testing-junit-platform/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformTestExecutionListener.java

    import java.util.concurrent.ConcurrentHashMap;
    import java.util.concurrent.ConcurrentMap;
    
    import static org.gradle.api.tasks.testing.TestResult.ResultType.SKIPPED;
    import static org.junit.platform.engine.TestExecutionResult.Status.ABORTED;
    import static org.junit.platform.engine.TestExecutionResult.Status.FAILED;
    
    /**
     * A {@link TestExecutionListener} that maps JUnit5 events to Gradle test events.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:58:25 UTC 2024
    - 15K bytes
    - Viewed (1)
  10. src/net/http/fcgi/child.go

    var emptyBody = io.NopCloser(strings.NewReader(""))
    
    // ErrRequestAborted is returned by Read when a handler attempts to read the
    // body of a request that has been aborted by the web server.
    var ErrRequestAborted = errors.New("fcgi: request aborted by web server")
    
    // ErrConnClosed is returned by Read when a handler attempts to read the body of
    // a request after the connection to the web server has been closed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top