Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 60 for capturing (0.13 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/NestedValidationUtil.java

         * supports the given bean type.
         * <p>
         * Nested types are expected to either declare some annotated properties,
         * which themselves are checked for annotations, or some conditional
         * behaviour where capturing the type itself as input is important.
         * <p>
         * Types of the Java SE API, types of the Kotlin stdlib, and Groovy's
         * GString type are not supported because they meet neither of those
         * requirements.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 09:10:37 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //   FlushInfoLog() - flushes informational log messages.
    //
    // Stdout and stderr capturing:
    //   CaptureStdout()     - starts capturing stdout.
    //   GetCapturedStdout() - stops capturing stdout and returns the captured
    //                         string.
    //   CaptureStderr()     - starts capturing stderr.
    //   GetCapturedStderr() - stops capturing stderr and returns the captured
    //                         string.
    //
    // Integer types:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/readonly_references_to_resources.cc

    //
    // For the background, this pass is a part of hoisting VariableV2 ops by
    // re-using the pipeline for hoisting (VarHandle -> ReadVariable) cases, which
    //  can be done by the following passes:
    //  - Capturing resource values into global tensors (importing saved model).
    //  - Promoting VarHandle ops to function input/outputs.
    //  - Freezing global tensor pass.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    		{"AddonComponents.istiocoredns.Enabled", "the in-proxy DNS capturing (ISTIO_META_DNS_CAPTURE)", false},
    		{"Values.istiocoredns.enabled", "the in-proxy DNS capturing (ISTIO_META_DNS_CAPTURE)", false},
    		// nolint: lll
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/fuse_convolution_pass.cc

     public:
      using OpRewritePattern<mhlo::MulOp>::OpRewritePattern;
    
      LogicalResult matchAndRewrite(mhlo::MulOp mul_op,
                                    PatternRewriter &rewriter) const override {
        // Variables for capturing values and attributes used while creating ops.
        mhlo::ConvolutionOp conv_op;
        Operation *bcast_or_const_op;
        shape::ShapeOfOp shape_of_op;
        mhlo::ConstantOp filter;
        mhlo::ConstantOp multiplier;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 22:21:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinBuildScriptIntegrationTest.kt

                        val coroutine = sequence {
                            // Unsigned integer types
                            yield(42UL)
                        }
    
                        // Capturing when
                        when (val value = coroutine.first()) {
                            42UL -> print("42!")
                            else -> throw IllegalStateException()
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/cmd/root.go

    	// Allow binding to a different var, for consistency with other components
    	flag.AdditionalEnv(fs, constants.DualStack, "ISTIO_DUAL_STACK")
    
    	flag.BindEnv(fs, constants.CaptureAllDNS, "",
    		"Instead of only capturing DNS traffic to DNS server IP, capture all DNS traffic at port 53. This setting is only effective when redirect dns is enabled.",
    		&cfg.CaptureAllDNS)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 17:36:41 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/Ear.java

                        throw new InvalidUserDataException("Deployment descriptor file name must be a simple name but was " + descriptorFileName);
                    }
    
                    // TODO: Consider capturing the `descriptor` as a spec
                    //  so any captured manifest attribute providers are re-evaluated
                    //  on each run.
                    //  See https://github.com/gradle/configuration-cache/issues/168
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/c/c_api_unified_experimental_mlir.cc

      for (auto* output : outputs->outputs) {
        auto* operand = dyn_cast<MlirTensor>(output);
        if (!operand)
          return InvalidArgument("Capturing eager tensors is not supported yet.");
        if (operand->getValue().getContext() != context_.get())
          return InvalidArgument(
              "Capturing tensors from other context is not supported.");
        ret_operands.push_back(operand->getValue());
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  10. src/regexp/syntax/prog.go

    	Rune []rune
    }
    
    func (p *Prog) String() string {
    	var b strings.Builder
    	dumpProg(&b, p)
    	return b.String()
    }
    
    // skipNop follows any no-op or capturing instructions.
    func (p *Prog) skipNop(pc uint32) *Inst {
    	i := &p.Inst[pc]
    	for i.Op == InstNop || i.Op == InstCapture {
    		i = &p.Inst[i.Out]
    	}
    	return i
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top