Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for redirection (0.17 sec)

  1. operator/pkg/apis/istio/v1alpha1/values_types.proto

      string provider = 3;
    }
    
    message CNIAmbientConfig {
      // Controls whether ambient redirection is enabled
      google.protobuf.BoolValue enabled = 1;
    
      // The directory path containing the configuration files for Ambient. Defaults to /etc/ambient-config.
      string configDir = 3;
    
      // If enabled, and ambient is enabled, DNS redirection will be enabled.
      google.protobuf.BoolValue dnsCapture = 5;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    # endif  // GTEST_OS_LINUX && !defined(__ia64__)
    
    #endif  // GTEST_HAS_CLONE
    
    // Determines whether to support stream redirection. This is used to test
    // output correctness and to implement death tests.
    #ifndef GTEST_HAS_STREAM_REDIRECTION
    // By default, we assume that stream redirection is supported on all
    // platforms except known mobile ones.
    # if GTEST_OS_WINDOWS_MOBILE || GTEST_OS_SYMBIAN
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    # endif  // GTEST_OS_LINUX && !defined(__ia64__)
    
    #endif  // GTEST_HAS_CLONE
    
    // Determines whether to support stream redirection. This is used to test
    // output correctness and to implement death tests.
    #ifndef GTEST_HAS_STREAM_REDIRECTION
    // By default, we assume that stream redirection is supported on all
    // platforms except known mobile ones.
    # if GTEST_OS_WINDOWS_MOBILE || GTEST_OS_SYMBIAN
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  4. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

            outputContains "Ivy publication 'java' isn't attached to a component. Gradle metadata only supports publications with software components (e.g. from component.java)"
        }
    
        def "publishes Gradle metadata redirection marker when Gradle metadata task is enabled (enabled=#enabled)"() {
            given:
            createBuildScripts("""
                publishing {
                    publications {
                        ivy(IvyPublication) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/output/sidecar_template.golden.yaml

                      (strdict "istio.io/rev" (.Revision | default "default"))
                      (strdict
                        "ambient.istio.io/redirection" "disabled"
                        "prometheus.io/path" "/stats/prometheus"
                        "prometheus.io/port" "15020"
                        "prometheus.io/scrape" "true"
                      ) | nindent 8 }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 86.9K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

                if (typeof options.locale.separator ===...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/css/manual.css

    	#content h3[id],
    	#content h4[id],
    	#content h5[id] {
    		margin-top: -60px;
    	}
    
    	.site-header__navigation {
    		flex-direction: row;
    	}
    
    	.site-header__navigation-button {
    		display: none;
    	}
    
    	.site-header__navigation-items {
    		flex-direction: row;
    		align-items: center;
    		float: right;
    		width: auto;
    		padding-top: 0;
    	}
    
    	.site-header__navigation-item {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types/type.go

    	case TARRAY:
    		if t.NumElem() != 1 {
    			return nil
    		}
    		return t.Elem().SoleComponent()
    	}
    	return t
    }
    
    // ChanDir returns the direction of a channel type t.
    // The direction will be one of Crecv, Csend, or Cboth.
    func (t *Type) ChanDir() ChanDir {
    	t.wantEtype(TCHAN)
    	return t.extra.(*Chan).Dir
    }
    
    func (t *Type) IsMemory() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    		args        []string
    		subresource string
    		errFn       func(error) bool
    	}{
    		"valid": {
    			args:  []string{"pods/foo"},
    			errFn: expectNoErr,
    		},
    		"valid multiple with name indirection": {
    			args:  []string{"pods/foo", "pod/bar"},
    			errFn: expectNoErr,
    		},
    		"valid multiple with namespaced and non-namespaced types": {
    			args:  []string{"nodes/foo", "pod/bar"},
    			errFn: expectNoErr,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        quantized_input = rewriter.create<MulOp>(op.getLoc(), input_ty,
                                                 quantized_input, float_to_quant);
    
        // Round the quantized input always to the positive direction.
        auto half_val = rewriter.create<ConstOp>(
            op.getLoc(),
            DenseElementsAttr::get(scalar_ty, ConvertToAPFloat(0.5, element_ty)));
    
        quantized_input = rewriter.create<AddV2Op>(op.getLoc(), input_ty,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
Back to top