Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 147 for one_output (0.25 sec)

  1. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/SnappyDainPacker.java

            delegate.pack(inputs, new DelegatingDataTarget(output) {
                @Override
                public OutputStream openOutput() throws IOException {
                    return new SnappyFramedOutputStream(super.openOutput());
                }
            });
        }
    
        @Override
        public void unpack(DataSource input, DataTargetFactory targetFactory) throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/services/TextStreamOutputEventListener.java

        }
    
        private void onTextEvent(StyledTextOutputEvent textOutputEvent) {
            if (textOutputEvent.getLogLevel() != null) {
                listener.onOutput(textOutputEvent);
            } else {
                listener.onOutput(textOutputEvent.withLogLevel(logLevel.get()));
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. tensorflow/cc/ops/while_loop.h

    //     computations, since they're part of the gradient for a loop in the
    //     forward-pass.
    //     TODO(skyewm): revisit this. Should we create WhileContexts for all loops,
    //     even if we don't need them?
    // * cond_output: if non-null, the output of the predicate is returned. This
    //     will always be a LoopCond node.
    //
    // Returns an error if the while loop could not be fully constructed.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 24 08:24:58 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/build_xla_ops_pass.cc

                new_output,
                absl::StrCat("CheckNumerics failed for output ", oidx, "(",
                             new_output.name(), ") from cluster ", cluster_name));
            new_output = check_numerics_op;
          }
    
          ops::_XlaMerge xla_merge_op(s.WithOpName("merge_oidx_", oidx),
                                      Output(old_node, oidx), new_output);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/UserInputStandardOutputRenderer.java

        }
    
        @Override
        void startInput() {
        }
    
        @Override
        void handlePrompt(RenderableOutputEvent event) {
            delegate.onOutput(event);
        }
    
        @Override
        void finishInput(RenderableOutputEvent event) {
            delegate.onOutput(event);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/ThrottlingOutputEventListener.java

        private void scheduleUpdateNow() {
            ScheduledFuture<?> ignored = executor.scheduleAtFixedRate(new Runnable() {
                @Override
                public void run() {
                    try {
                        onOutput(new UpdateNowEvent(clock.getCurrentTime()));
                    } catch (Throwable t) {
                        // this class is used as task in a scheduled executor service, so it must not throw any throwable,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTestListenerIntegrationTest.groovy

                            useJUnitJupiter()
                        }
                    }
                }
                tasks.test {
                    onOutput(
                        KotlinClosure2<TestDescriptor, TestOutputEvent, Any>({ descriptor, event ->
                            println("onOutput:" + descriptor.displayName + ":" + event.message)
                        })
                    )
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/LogEventDispatcher.java

            this.stdoutChain = stdoutChain;
            this.stderrChain = stderrChain;
        }
    
        @Override
        public void onOutput(OutputEvent event) {
            if (event.getLogLevel() == null) {
                dispatch(event, stdoutChain);
                dispatch(event, stderrChain);
            } else if (event.getLogLevel() == LogLevel.ERROR) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/internal/operations/logging/LoggingBuildOperationProgressBroadcasterTest.groovy

            when:
            bridge.onOutput(eventWithBuildOperationId)
    
            then:
            1 * buildOperationProgressEventEmitter.emit(_, _, _) >> { OperationIdentifier operationIdentifier, long timestamp, Object details ->
                assert operationIdentifier == testOperationId
                assert details == eventWithBuildOperationId
            }
    
    
            when:
            bridge.onOutput(eventWithFallbackBuildOperationId)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/TestReportDataCollector.java

            }
    
            TestMethodResult methodResult = currentTestMethods.get(testDescriptor);
            if (methodResult == null) {
                outputWriter.onOutput(classResult.getId(), outputEvent);
            } else {
                outputWriter.onOutput(classResult.getId(), methodResult.getId(), outputEvent);
            }
        }
    
        private static String findEnclosingClassName(TestDescriptor testDescriptor) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top