Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 88 for downstream (0.24 sec)

  1. tensorflow/compiler/mlir/lite/tf_tfl_translate_cl.cc

        "reduce-type-precision",
        llvm::cl::desc("Convert tensors to a lower precision if all values are "
                       "within the reduced precision range. This could have side "
                       "effects triggered by downstream packing algorithms."),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 20:53:17 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/accesslog.go

    	// This cluster is created in bootstrap.
    	EnvoyAccessLogCluster = "envoy_accesslog_service"
    )
    
    var (
    	// State logged by the metadata exchange filter about the upstream and downstream service instances
    	// We need to propagate these as part of access log service stream
    	// Logging them by default on the console may be an issue as the base64 encoded string is bound to be a big one.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/coverage/cover.go

    // register coverage-related variables with the runtime.
    //
    // It also reclassifies selected variables (for example, tagging
    // coverage counter variables with flags so that they can be handled
    // properly downstream).
    func Fixup() {
    	if base.Flag.Cfg.CoverageInfo == nil {
    		return // not using coverage
    	}
    
    	metaVarName := base.Flag.Cfg.CoverageInfo.MetaVar
    	pkgIdVarName := base.Flag.Cfg.CoverageInfo.PkgIdVar
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:46 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/filterchain_options.go

    			TransportProtocol: xdsfilters.RawBufferTransportProtocol,
    		},
    		{
    			// client side traffic could not be identified by the outbound listener, sent over one-way
    			// TLS (HTTPS for example) by the downstream application.
    			// or it could be that the client has no sidecar, and it is directly making a HTTPS connection to
    			// this sidecar. In this case, this filter chain is receiving plaintext one-way TLS traffic. The TLS
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. pkg/envoy/agent.go

    					log.Warnf("Retrying (%d attempt) to obtain active connections...", retryCount)
    					continue graceful_loop
    				}
    				if ac == -1 {
    					log.Info("downstream_cx_active are not available. This either means there are no downstream connection established yet" +
    						" or the stats are not enabled. Skipping active connections check...")
    					a.abortCh <- errAbort
    					break graceful_loop
    				}
    				if ac == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 16:04:22 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/generic/webhook.go

    	admission.Attributes
    	resource schema.GroupVersionResource
    }
    
    func (a *attrWithResourceOverride) GetResource() schema.GroupVersionResource { return a.resource }
    
    // Dispatch is called by the downstream Validate or Admit methods.
    func (a *Webhook) Dispatch(ctx context.Context, attr admission.Attributes, o admission.ObjectInterfaces) error {
    	if rules.IsExemptAdmissionConfigurationResource(attr) {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/common/attrs_and_constraints.h

    // width)) tensor format to HWIO. This is commonly used to transpose convolution
    // weights represented as OIHW format to HWIO, which is more desirable for
    // certain downstream optimization passes (e.g. XLA).
    inline constexpr std::array<int64_t, 4> kOihwToHwioPermutation = {2, 3, 1, 0};
    
    // Returns true if the value has static shape.
    bool HasStaticShape(Value value);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. hack/lib/version.sh

          # compatible semantic version that looks something like this:
          #   v1.1.0-alpha.0.6+84c76d1142ea4d
          #
          # TODO: We continue calling this "git version" because so many
          # downstream consumers are expecting it there.
          #
          # These regexes are painful enough in sed...
          # We don't want to do them in pure shell, so disable SC2001
          # shellcheck disable=SC2001
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:09 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/http/RetryAndFollowUpInterceptor.kt

                throw e.withSuppressed(recoveredFailures)
              } else {
                recoveredFailures += e
              }
              newRoutePlanner = false
              continue
            }
    
            // Clear out downstream interceptor's additional request headers, cookies, etc.
            response =
              response.newBuilder()
                .request(request)
                .priorResponse(priorResponse?.stripBody())
                .build()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:24:48 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractCrossTaskIncrementalCompilationIntegrationTest.groovy

            source(
                api: ["class Base {}"],
                // Dependant relies on specifics that only exist in the Base within impl
                impl: ["class Base { String reference; }", "class Dependant { String downstream = new Base().reference;}"]
            )
    
            when:
            run("${language.compileTaskName}")
            impl.recompiledClasses("Base", "Dependant")
    
            impl.snapshot()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top