Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 285 for capture1 (0.23 sec)

  1. guava/src/com/google/common/reflect/TypeResolver.java

       * {@code ArrayList<?>::set}.
       *
       * <p>Instead, {@code <?>} will be resolved to a capture in the form of a type variable {@code
       * <capture-of-? extends Object>}, effectively preventing {@code set} from accepting any type.
       */
      static TypeResolver invariantly(Type contextType) {
        Type invariantContext = WildcardCapturer.INSTANCE.capture(contextType);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 24.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/g3doc/tf_dialects.md

    *   Nesting also allows to form islands without involving inter-procedural
        analyzes: any function call may involve a callee with a graph.
    
    The `tf_executor.island` region allows implicit capture. If any value captured
    by a `tf_executor.island` is dead, the whole region does not execute and every
    produced value is marked as dead as well.
    
    An arbitrary number of `tf_executor.control` operands are accepted by a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 16K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_builder.go

    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/proto"
    	"istio.io/istio/pkg/wellknown"
    )
    
    // A stateful listener builder
    // Support the below intentions
    // 1. Use separate inbound capture listener(:15006) and outbound capture listener(:15001)
    // 2. The above listeners use bind_to_port sub listeners or filter chains.
    type ListenerBuilder struct {
    	node              *model.Proxy
    	push              *model.PushContext
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/services/DefaultLoggingManagerTest.groovy

            loggingManager.getLevel() == null
        }
    
        public void "can change standard out capture log level"() {
            when:
            loggingManager.captureStandardOutput(LogLevel.ERROR)
    
            then:
            loggingManager.getStandardOutputCaptureLevel() == LogLevel.ERROR
        }
    
        public void "can change standard error capture log level"() {
            when:
            loggingManager.captureStandardError(LogLevel.WARN)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/internal/operations/logging/LoggingBuildOperationProgressIntegTest.groovy

            }
        }
    
        def "captures output from buildSrc"() {
            given:
            configureNestedBuild('buildSrc')
            file('buildSrc/build.gradle') << "jar.dependsOn 'foo'"
            file("build.gradle") << ""
    
            when:
            succeeds "help"
    
            then:
            assertNestedTaskOutputTracked(':buildSrc')
        }
    
        def "captures output from composite builds"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. pkg/config/constants/constants.go

    	DataplaneModeLabel = "istio.io/dataplane-mode"
    	// Set by users to indicate that the (namespace|pod) should be captured for ambient
    	DataplaneModeAmbient = "ambient"
    	// Set by users to indicate that the (namespace|pod) should NOT be captured for ambient
    	DataplaneModeNone    = "none"
    	DataplaneModeInherit = "inherit" // TODO do we need this atm
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/reflect/TypeResolver.java

       * {@code ArrayList<?>::set}.
       *
       * <p>Instead, {@code <?>} will be resolved to a capture in the form of a type variable {@code
       * <capture-of-? extends Object>}, effectively preventing {@code set} from accepting any type.
       */
      static TypeResolver invariantly(Type contextType) {
        Type invariantContext = WildcardCapturer.INSTANCE.capture(contextType);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 24.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_executor_ops.td

        The `tf_executor.island` region allows implicit capture. If any value
        captured by a `tf_executor.island` is dead, the whole region does not
        execute and every produced value is marked as dead as well.
        An arbitrary number of `tf_executor.control` operands are accepted by a
        `tf_executor.island` operation.
        If any operand or implicitly captured value are dead, the region is not
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 22K bytes
    - Viewed (0)
  9. operator/pkg/validate/common.go

    	// is anchored and has capturing groups for name, tag, and digest
    	// components.
    	ReferenceRegexp = anchored(capture(NameRegexp),
    		optional(literal(":"), capture(TagRegexp)),
    		optional(literal("@"), capture(DigestRegexp)))
    
    	// ObjectNameRegexp is a legal name for a k8s object.
    	ObjectNameRegexp = match(`[a-z0-9.-]{1,254}`)
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/cc/report_test.cc

      // Test that the quantized op is captured in `results`.
      const QuantizationResult& quantized_result = results.results(0);
      EXPECT_THAT(quantized_result.quantizable_unit().name(),
                  StrEq("composite_dot_general_fn_2"));
      EXPECT_TRUE(quantized_result.method().has_static_range_ptq());
    
      // Test that the non-quantized op is captured in `results`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 10:10:34 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top