Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 68 of 68 for capturing (0.27 sec)

  1. build-logic/publishing/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-bundle.gradle.kts

    val localRepository = layout.buildDirectory.dir("repository")
    
    val publishPluginsToTestRepository by tasks.registering {
        dependsOn("publishPluginMavenPublicationToTestRepository")
        val repoDir = localRepository // Prevent capturing the Gradle script instance for configuration cache compatibility
        // This should be unified with publish-public-libraries if possible
        doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/results/StateTrackingTestResultProcessor.java

            //and we need to have a matching descriptor to inform the user which test this output belongs to
            //we will use the current parent
    
            //(SF) This approach should generally work because at the moment we reset capturing output per suite
            //(see CaptureTestOutputTestResultProcessor) and that reset happens earlier in the chain.
            //So in theory when suite is completed, the output redirector has been already stopped
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  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. 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)
  7. src/cmd/compile/internal/test/testdata/pgo/devirtualize/devirt.go

    		// correct callee.
    		val += int(ops.m(42, int64(ops.a(1, 2))))
    	}
    	return val
    }
    
    //go:noinline
    func AddClosure() AddFunc {
    	// Implicit closure by capturing the receiver.
    	var a Add
    	return a.Add
    }
    
    //go:noinline
    func SubClosure() AddFunc {
    	var s Sub
    	return s.Add
    }
    
    // ExerciseFuncClosure calls mostly a1 and m1.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 13 18:17:57 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. 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