Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 84 for downstream (0.57 sec)

  1. pilot/pkg/xds/endpoints/endpoint_builder.go

    	if !b.proxyView.IsVisible(ep) {
    		// Endpoint's network doesn't match the set of networks that the proxy wants to see.
    		return false
    	}
    	// If the downstream service is configured as cluster-local, only include endpoints that
    	// reside in the same cluster.
    	if b.clusterLocal && (b.clusterID != ep.Locality.ClusterID) {
    		return false
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/http/httpproxy/proxy.go

    	// call from salvaging an invalid IDN, when possible. As a result it may be
    	// possible to have two IDNs that appear identical to the user where the
    	// ASCII-only version causes an error downstream whereas the non-ASCII
    	// version does not.
    	// Note that for correct ASCII IDNs ToASCII will only do considerably more
    	// work, but it will not cause an allocation.
    	if isASCII(v) {
    		return v, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/interface.go

    	// PreFilter is called at the beginning of the scheduling cycle. All PreFilter
    	// plugins must return success or the pod will be rejected. PreFilter could optionally
    	// return a PreFilterResult to influence which nodes to evaluate downstream. This is useful
    	// for cases where it is possible to determine the subset of nodes to process in O(1) time.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/odml_to_stablehlo.cc

    // Tool which lowers TensorFlow Graphs to StableHLO graphs.
    //
    // This tool is used by the ODML Programmability effort to consume input TF
    // graphs, and lower them to StableHLO graphs for use by downstream tools.
    //
    // Input: TF Saved Model or TF MLIR files.
    // Output: StableHLO MLIR or TFLite Flatbuffer.
    //
    // Usage:
    // 1) convert the input model to StableHLO MLIR
    // odml_to_stablehlo /path/to/model -o=model.mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ExpectMaxNConcurrentRequests.java

            lock.lock();
            try {
                previous.assertCanWait();
                if (notReceived.isEmpty()) {
                    // Have received all requests so downstream can wait.
                    return;
                }
                if (!isAutoRelease()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  6. pkg/proxy/config/config.go

    		return
    	}
    	c.handleServiceCIDREvent(nil, nil)
    }
    
    // handleServiceCIDREvent is a helper function to handle Add, Update and Delete
    // events on ServiceCIDR objects and call downstream event handlers.
    func (c *ServiceCIDRConfig) handleServiceCIDREvent(oldObj, newObj interface{}) {
    	var oldServiceCIDR, newServiceCIDR *networkingv1alpha1.ServiceCIDR
    	var ok bool
    
    	if oldObj != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                  description: Specifies which protocol to use for tunneling
                                    the downstream connection.
                                  type: string
                                targetHost:
                                  description: Specifies a host to which the downstream
                                    connection is tunneled.
                                  type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  8. pkg/kubelet/pod_workers.go

    	// This state will not be visible to downstream components until a pod worker
    	// has begun processing it.
    	pendingUpdate *UpdatePodOptions
    	// activeUpdate is the most recent version of the pod's state that will be
    	// passed to a sync*Pod function. A pod becomes visible to downstream components
    	// once a worker decides to start a pod (startedAt is set). The pod and mirror
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  9. guava-gwt/pom.xml

        </dependency>
        <!-- We redeclare the j2objc-annotations dependency from `guava`: Our Gradle
             Module Metadata hides the dependency declared in `guava` from runtime
             configurations downstream, and GWT uses the runtime configuration for
             its builds. Thus, GWT doesn't get j2objc-annotations transitively, in
             contrast to the other deps of `guava`, which it does get transitively.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 15:00:55 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-java/src/main/java/org/gradle/api/plugins/JavaPlugin.java

         * for common usage.  In practice, running test tasks tends to take longer than building a jar; especially as a project matures. If tasks
         * in downstream projects require the jar from this project, and the jar and test tasks in this project are available to be run in either order,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 20.8K bytes
    - Viewed (0)
Back to top