Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 791 for redirection (0.18 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/StandardOutputCapture.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.internal.logging;
    
    public interface StandardOutputCapture {
        /**
         * Starts redirection of System.out and System.err to the Gradle logging system.
         *
         * @return this
         */
        StandardOutputCapture start();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/redirector/JULRedirectorTest.groovy

            System.err == outputs.stdErrPrintStream
        }
    
        def "start and stop output with redirection and default logging"() {
            when:
            redirector.redirectStandardOutputTo(stdOutListener)
            redirector.redirectStandardErrorTo(stdErrListener)
    
            redirector.start()
            [Level.SEVERE, Level.WARNING, Level.INFO, Level.CONFIG, Level.FINE, Level.FINER, Level.FINEST].each {
                logger1.log(it, "Test");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/MavenArtifactRepository.java

             * If the POM file contains a marker telling that Gradle metadata exists
             * for this component, Gradle will <i>also</i> look for the Gradle metadata
             * file. Gradle module metadata redirection will not happen if {@code ignoreGradleMetadataRedirection()} has been used.
             */
            void mavenPom();
    
            /**
             * Indicates that this repository may not contain metadata files,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 6.2K bytes
    - Viewed (0)
  4. tools/istio-iptables/pkg/constants/constants.go

    A group can be specified either by name or by a numeric GID.
    The wildcard character "*" can be used to configure redirection of traffic from all groups.`)
    
    	OwnerGroupsExclude = env.Register("ISTIO_OUTBOUND_OWNER_GROUPS_EXCLUDE", "",
    		`Comma separated list of groups whose outgoing traffic is to be excluded from redirection to Envoy.
    A group can be specified either by name or by a numeric GID.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 01:42:30 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. releasenotes/notes/50132.yaml

        These changes allow configuring a standard `istio` gateway as a Waypoint.
        For this to work, it must be configured as a `ClusterIP` Service with
        redirection enabled. This is colloquially referred to as a "gateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:09 UTC 2024
    - 659 bytes
    - Viewed (0)
  6. hack/build-cross.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script is a vestigial redirection.  Please do not add "real" logic.
    # The "true" target of this makerule is `hack/make-rules/cross.sh`.
    
    # This script runs `make cross` command.
    # The command sets up a go workspace locally and builds all for all appropriate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 27 02:13:09 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  7. hack/test-integration.sh

    # limitations under the License.
    
    # This script has been replaced by `make test-integration`.
    # `make test-integration` runs all integration tests.
    # Usage: `make test-integration`.
    # Note: This script is a vestigial redirection. Please do not add "real" logic.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    echo "$0 has been replaced by 'make test-integration'"
    echo
    echo "The following invocation will run all integration tests: "
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 28 00:27:40 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  8. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/redirector/StandardOutputRedirector.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.testing.redirector;
    
    public interface StandardOutputRedirector {
    
        /**
         * Starts redirection of System.out and System.err to the listener attached to
         * {@link #redirectStandardErrorTo(OutputListener)} and
         * {@link #redirectStandardOutputTo(OutputListener)
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. pkg/config/constants/constants.go

    	// AmbientRedirection specifies whether a pod has ambient redirection (to ztunnel) configured.
    	AmbientRedirection = "ambient.istio.io/redirection"
    	// AmbientRedirectionEnabled indicates redirection is configured. This is set by the CNI on pods
    	// when it actually has successfully set up pod redirection, rather than by the user.
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/artifacts/defineRepository/kotlin/build.gradle.kts

    // tag::maven-repo-with-ignore-gradle-metadata-redirection[]
    repositories {
        maven {
            url = uri("http://repo.mycompany.com/repo")
            metadataSources {
                mavenPom()
                artifact()
                ignoreGradleMetadataRedirection()
            }
        }
    }
    // end::maven-repo-with-ignore-gradle-metadata-redirection[]
    
    // tag::authenticated-ivy-repo[]
    repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
Back to top