Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for error_stream (0.15 sec)

  1. tensorflow/compiler/mlir/python/mlir.cc

        mlir::PassManager pm(module.getContext());
        std::string error;
        llvm::raw_string_ostream error_stream(error);
        if (failed(mlir::parsePassPipeline(pass_pipeline, pm, error_stream))) {
          TF_SetStatus(status, TF_INVALID_ARGUMENT,
                       ("Invalid pass_pipeline: " + error_stream.str()).c_str());
          return "// error";
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/services/DefaultLoggingManager.java

            loggingRouter.attachConsole(outputStream, errorStream, consoleOutput, null);
        }
    
        @Override
        public void attachConsole(OutputStream outputStream, OutputStream errorStream, ConsoleOutput consoleOutput, ConsoleMetaData consoleMetadata) {
            loggingRouter.attachConsole(outputStream, errorStream, consoleOutput, consoleMetadata);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

            }
    
            ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
            ByteArrayOutputStream errorStream = new ByteArrayOutputStream();
            BuildListenerImpl buildListener = new BuildListenerImpl();
            BuildResult result = doRun(outputStream, errorStream, buildListener);
            if (result.getFailure() != null) {
                throw new UnexpectedBuildFailure(result.getFailure());
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/LoggingOutputInternal.java

         *
         * @param outputStream Receives formatted output.
         * @param errorStream Receives formatted error output. Note that this steam may not necessarily be used, depending on the console mode requested.
         * @param consoleOutput The output format.
         */
        void attachConsole(OutputStream outputStream, OutputStream errorStream, ConsoleOutput consoleOutput);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFileHelper.groovy

            if (isWindows()) {
                return "-rwxr-xr-x"
            }
    
            def process = ["ls", "-ld", file.absolutePath].execute()
            def result = process.inputStream.text
            def error = process.errorStream.text
            def retval = process.waitFor()
            if (retval != 0) {
                throw new RuntimeException("Could not list permissions for '$file': $error")
            }
            def perms = result.split()[0]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/OutputEventRenderer.java

            }
        }
    
        @Override
        public void attachConsole(OutputStream outputStream, OutputStream errorStream, ConsoleOutput consoleOutput) {
            attachConsole(outputStream, errorStream, consoleOutput, null);
        }
    
        @Override
        public void attachConsole(OutputStream outputStream, OutputStream errorStream, ConsoleOutput consoleOutput, @Nullable ConsoleMetaData consoleMetadata) {
            synchronized (lock) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

            authProperty = null;
            authMethod = null;
            InputStream errorStream = connection.getErrorStream();
            if (errorStream != null && errorStream.available() != 0) {
                int count;
                byte[] buf = new byte[1024];
                while ((count = errorStream.read(buf, 0, 1024)) != -1);
            }
            String authHeader;
            if (response == HTTP_UNAUTHORIZED) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 20.4K bytes
    - Viewed (0)
  8. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/internal/execution/XCTestExecuter.java

                }
            }
    
            private ExecHandle executeTest(String testName, OutputStream outputStream, OutputStream errorStream) {
                execHandleBuilder.setArgs(toTestArgs(testName));
                execHandleBuilder.setStandardOutput(outputStream);
                execHandleBuilder.setErrorOutput(errorStream);
                return execHandleBuilder.build();
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/http/NtlmHttpURLConnection.java

            this.authProperty = null;
            this.authMethod = null;
            try ( InputStream errorStream = this.connection.getErrorStream() ) {
                if ( errorStream != null && errorStream.available() != 0 ) {
                    byte[] buf = new byte[1024];
                    while ( ( errorStream.read(buf, 0, 1024) ) != -1 );
                }
                String authHeader;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 25.5K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/process/internal/PathLimitationIntegrationTest.groovy

            then:
            Process process = processBuilder.start()
    
            process.waitFor() == 0
            process.exitValue() == 0
            and:
            process.errorStream.text.contains("version")
    
            where:
            absolutePathLength << [258, 259, 260]
        }
    
        TestFile generateTestWorkingDirectory(int absolutePathLength) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 11:15:22 UTC 2023
    - 5.7K bytes
    - Viewed (0)
Back to top