Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 265 for redirection (0.17 sec)

  1. manifests/charts/istio-cni/values.yaml

        provider: "default"
    
        # Configure ambient settings
        ambient:
          # If enabled, ambient redirection will be enabled
          enabled: false
          # Set ambient config dir path: defaults to /etc/ambient-config
          configDir: ""
          # If enabled, and ambient is enabled, DNS redirection will be enabled
          dnsCapture: false
          # UNSTABLE: If enabled, and ambient is enabled, enables ipv6 support
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. hack/test-go.sh

    # limitations under the License.
    
    # This script runs all *_test.go files. It is equivalent to `make test`.
    # Usage: `hack/test-go.sh` or `make test`.
    # Note: This script is a vestigial redirection. Please do not add "real" logic.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    # For help output
    ARGHELP=""
    if [[ "$#" -gt 0 ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 28 00:27:40 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  3. hack/update-all.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/update.sh`.
    # We should run `hack/update-all.sh` if anything fails after
    # running `hack/verify-all.sh`. It is equivalent to `make update`.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 16 15:58:13 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/artifacts/defineRepository/groovy/build.gradle

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

    # `hack/verify-all.sh` before submit a PR. It is equivalent to `make verify`.
    # Usage: `hack/verify-all.sh` or `make verify`.
    # Note: This script is a vestigial redirection. Please do not add "real" logic.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    # For help output
    ARGHELP=""
    if [[ -n "${KUBE_VERIFY_GIT_BRANCH:-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 16 15:58:13 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  6. maven-embedder/src/main/java/org/apache/maven/cli/logging/impl/Slf4jSimpleConfiguration.java

                    break;
            }
            System.setProperty("org.slf4j.simpleLogger.defaultLogLevel", value);
        }
    
        @Override
        public void activate() {
            // property for root logger level or System.out redirection need to be taken into account
            MavenSlf4jSimpleFriend.init();
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 06:36:58 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. istioctl/pkg/kubeinject/testdata/mesh-config.yaml

      # has no effect on outbound traffic: iptables REDIRECT is always used for
      # outbound connections.
      # If "REDIRECT", use iptables REDIRECT to NAT and redirect to Envoy.
      # The "REDIRECT" mode loses source addresses during redirection.
      # If "TPROXY", use iptables TPROXY to redirect to Envoy.
      # The "TPROXY" mode preserves both the source and destination IP
      # addresses and ports, so that they can be used for advanced filtering
      # and manipulation.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/testdata/sidecar-default-selector.yaml

      labels:
        istio.io/dataplane-mode: ambient
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      name: random-pod-ambient
      namespace: ns-ambient
      labels:
        app: ambient
      annotations:
        ambient.istio.io/redirection: enabled
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: namespace-scoped
      namespace: ns-ambient
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Dec 23 13:38:38 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. hack/build-go.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.
    
    # This script runs `make all` command.
    # The command compiles all Makefile configs.
    # Args:
    #   WHAT: Directory names to build.  If any of these directories has a 'main'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 27 02:13:09 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  10. hack/e2e-node-test.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/test-e2e-node.sh`.
    
    # This script runs `make test-e2e-node` command.
    # The command builds and runs node end-to-end tests.
    # Args:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 27 02:13:09 UTC 2020
    - 1.7K bytes
    - Viewed (0)
Back to top