Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 92 for downstream (0.45 sec)

  1. 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)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    Before Gradle 3.4, projects declared dependencies using the `compile` configuration.
    This exposed all of those dependencies to downstream projects. In Gradle 3.4 and above,
    you can separate downstream-facing `api` dependencies from internal-only `implementation` details.
    Implementation dependencies don't leak into the compile classpath of downstream projects.
    When implementation details change, Gradle only recompiles `api` dependencies.
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/EvaluationContext.java

            if (getContext().isInScope(owner)) {
                return fallbackValue;
            }
            // It is possible that the downstream chain itself forms a cycle.
            // However, it should be its responsibility to be defined in terms of safe evaluation rather than us intercepting the failure here.
            return evaluate(owner, evaluation);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 16:54:51 UTC 2024
    - 12.2K 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. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top