Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 134 for downstream (0.38 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/cc/pass_pipeline.h

    // Processes tensors with NCHW format (== (batch, channel, height, weight)) by
    // converting them to NHWC formats along with extra optimizations such as
    // constant folding the transpose->convolution pattern. This is useful when
    // downstream pipeline (e.g. XLA) is more optimized when accepting NHWC formats.
    void AddProcessNchwTensorPasses(OpPassManager& pm);
    
    // Registers quantization pass pipelines. This is only required when running
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 12:53:33 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. pkg/bootstrap/config.go

    		}
    
    		// At the sidecar we can limit downstream metrics collection to the inbound listener.
    		// Inbound downstream metrics are named as: http.{pod_ip}_{port}.downstream_rq_*
    		// Other outbound downstream metrics are numerous and not very interesting for a sidecar.
    		// specifying http.{pod_ip}_  as a prefix will capture these downstream metrics.
    		return substituteValues(inclusionOption, "{pod_ip}", nodeIPs)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftCachingIntegrationTest.groovy

            skipped allCompileTasks
            installation(installDir(newLocation, buildType)).exec().out == app.expectedOutput
    
            where:
            buildType << ['Debug', 'Release']
        }
    
        def "downstream compilation can use cached artifacts (#buildType)"() {
            def originalLocation = file('original-location')
            def newLocation = file('new-location')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/facts/facts.go

    // package P; the downstream analysis of Q need only load one fact set
    // per direct import of Q.
    //
    // The notion of "exportedness" that matters here is that of the
    // compiler. According to the language spec, a method pkg.T.f is
    // unexported simply because its name starts with lowercase. But the
    // compiler must nonetheless export f so that downstream compilations can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/OutputEventTransformer.java

    import java.util.Set;
    import java.util.concurrent.ConcurrentHashMap;
    
    /**
     * Transforms the stream of output events to discard progress operations that are not interesting to the logging subsystem. This reduces the amount of work that downstream consumers have to do to process the stream. For example, these discarded events don't need to be written to the daemon client.
     */
    public class OutputEventTransformer implements OutputEventListener {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/plugins.go

    // If successful, this method will set the recycler on the config.
    // If unsuccessful, an error is returned. Function is exported for reuse downstream.
    func AttemptToLoadRecycler(path string, config *volume.VolumeConfig) error {
    	if path != "" {
    		recyclerPod, err := volumeutil.LoadPodFromFile(path)
    		if err != nil {
    			return err
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:17:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/rich_versions.adoc

    
    Using `strictly`, especially for a library, must be a well thought process as it has an impact on downstream consumers.
    At the same time, used correctly, it will help consumers understand what combination of libraries do not work together in their context.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. src/cmd/internal/src/xpos.go

    // alternative behavior is to hang.
    func (p XPos) WithBogusLine() XPos {
    	if p.index == 0 {
    		// See #35652
    		panic("Assigning a bogus line to XPos with no file will cause mysterious downstream failures.")
    	}
    	p.lico = makeBogusLico()
    	return p
    }
    
    // WithXlogue returns the same location but marked with DWARF function prologue/epilogue
    func (p XPos) WithXlogue(x PosXlogue) XPos {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/scala_plugin.adoc

    property `scalaCompileOptions.incrementalOptions.publishedCode` needs to be configured to point to the classes folder or Jar archive by which the code is passed on to compile class paths of downstream `ScalaCompile` tasks. Note that if `publishedCode` is not set correctly, downstream tasks may not recompile code affected by upstream changes, leading to incorrect compilation results.
    
    Note that Zinc's Nailgun based daemon mode is not supported. Instead, we plan to enhance Gradle's own compiler...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 17K bytes
    - Viewed (0)
  10. samples/security/spire/spire-quickstart.yaml

                      .PodSpec respectively.
                    items:
                      type: string
                    type: array
                  downstream:
                    description: Downstream indicates that the entry describes a downstream SPIRE server.
                    type: boolean
                  federatesWith:
                    description: FederatesWith is a list of trust domain names that workloads
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 16:12:42 UTC 2023
    - 32.2K bytes
    - Viewed (0)
Back to top