Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,598 for doOutput (0.21 sec)

  1. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

            this.doInput = doInput;
        }
    
        public boolean getDoInput() {
            return connection.getDoInput();
        }
    
        public void setDoOutput(boolean doOutput) {
            connection.setDoOutput(doOutput);
            this.doOutput = doOutput;
        }
    
        public boolean getDoOutput() {
            return connection.getDoOutput();
        }
    
        public void setAllowUserInteraction(boolean allowUserInteraction) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 20.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/http/NtlmHttpURLConnection.java

        @Override
        public boolean getDoInput () {
            return this.connection.getDoInput();
        }
    
    
        @Override
        public void setDoOutput ( boolean doOutput ) {
            this.connection.setDoOutput(doOutput);
            this.doOutput = doOutput;
        }
    
    
        @Override
        public boolean getDoOutput () {
            return this.connection.getDoOutput();
        }
    
    
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 25.5K bytes
    - Viewed (0)
  3. mockwebserver/src/test/java/mockwebserver3/MockWebServerTest.kt

            .throttleBody(3, 500, TimeUnit.MILLISECONDS)
            .build(),
        )
        val startNanos = System.nanoTime()
        val connection = server.url("/").toUrl().openConnection()
        connection.doOutput = true
        connection.getOutputStream().write("ABCDEF".toByteArray(UTF_8))
        val inputStream = connection.getInputStream()
        assertThat(inputStream.read()).isEqualTo(-1)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/test/groovy/org/gradle/test/fixtures/server/http/BlockingHttpServerTest.groovy

            server.expect(server.put("a"))
            server.start()
    
            when:
            def connection = server.uri("a").toURL().openConnection()
            connection.requestMethod = 'PUT'
            connection.doOutput = true
            connection.outputStream << "123".bytes
            connection.inputStream.text
    
            server.stop()
    
            then:
            noExceptionThrown()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  5. manifests/addons/dashboards/lib/output.json

    John Howard <******@****.***> 1717524306 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/test/resources/org/gradle/kotlin/dsl/accessors/tasks/PrintAccessors-expected-output.txt

    Paul Merlin <******@****.***> 1690890212 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  7. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/TaskUpToDateIntegrationTest.groovy

                    @OutputFile
                    File output
    
                    @TaskAction
                    void doStuff() {
                        output.text = input.list().join('\\n')
                    }
                }
    
                task myTask(type: MyTask) {
                    input = providers.gradleProperty('inputDir').map { file(it) }.get()
                    output = project.file("build/output.txt")
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. build/common.sh

    readonly KUBE_CROSS_IMAGE
    KUBE_CROSS_VERSION="${KUBE_CROSS_VERSION:-"${KUBE_BUILD_IMAGE_CROSS_TAG}"}"
    readonly KUBE_CROSS_VERSION
    
    # Here we map the output directories across both the local and remote _output
    # directories:
    #
    # *_OUTPUT_ROOT    - the base of all output in that environment.
    # *_OUTPUT_SUBPATH - location where golang stuff is built/cached.  Also
    #                    persisted across docker runs with a volume mount.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionResult.java

            if (output.contains("BUILD FAILED") || output.contains("FAILURE: Build failed with an exception.") || error.contains("BUILD FAILED") || error.contains("CONFIGURE FAILED")) {
                return new OutputScrapingExecutionFailure(output, error, true);
            }
            return new OutputScrapingExecutionResult(LogContent.of(output), LogContent.of(error), true);
        }
    
        /**
         * @param output The build stdout content.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. hack/lib/util.sh

    }
    
    # looks for $1 in well-known output locations for the platform ($2)
    # $KUBE_ROOT must be set
    kube::util::find-binary-for-platform() {
      local -r lookfor="$1"
      local -r platform="$2"
      local locations=(
        "${KUBE_ROOT}/_output/bin/${lookfor}"
        "${KUBE_ROOT}/_output/dockerized/bin/${platform}/${lookfor}"
        "${KUBE_ROOT}/_output/local/bin/${platform}/${lookfor}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
Back to top