Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 178 for conditionMap (4.31 sec)

  1. src/cmd/compile/internal/test/testdata/flowgraph_generator1.go

    // A, B, C etc, where each block except Z has one or two
    // successors, and any block except A can be a target. Within
    // the generated code, each block with two successors includes
    // a conditional testing x & 1 != 0 (x is the input parameter
    // to the generated function) and also unconditionally shifts x
    // right by one, so that different inputs generate different
    // execution paths, including loops. Every block inverts a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 6.7K bytes
    - Viewed (0)
  2. test/stackobj3.go

    //go:noinline
    func use(p *StkObj) {
    }
    
    //go:noinline
    func f(s StkObj, b bool) {
    	var p *StkObj
    	if b {
    		p = &s
    	} else {
    		p = &null
    	}
    	// use is required here to prevent the conditional
    	// code above from being executed after the first gc() call.
    	use(p)
    	// If b==false, h should be collected here.
    	gc() // 0
    	sink = p.h
    	gc() // 1
    	sink = nil
    	// If b==true, h should be collected here.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 03 19:54:16 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/ConditionalExecutionQueue.java

     * be that a worker lease must be acquired before execution.
     */
    public interface ConditionalExecutionQueue<T> extends Stoppable {
        /**
         * Submit a new conditional execution to the queue.  The execution will occur asynchronously when the provided
         * resource lock (see {@link ConditionalExecution#getResourceLock()}) can be acquired.  On completion,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/connection/ConnectInterceptor.kt

    import okhttp3.internal.http.RealInterceptorChain
    
    /**
     * Opens a connection to the target server and proceeds to the next interceptor. The network might
     * be used for the returned response, or to validate a cached response with a conditional GET.
     */
    object ConnectInterceptor : Interceptor {
      @Throws(IOException::class)
      override fun intercept(chain: Interceptor.Chain): Response {
        val realChain = chain as RealInterceptorChain
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. src/runtime/traceback_test.go

    			},
    			abiSel(
    				"testTracebackArgs10(0xffffffff?, 0xffffffff?, 0xffffffff?, 0xffffffff?, 0xffffffff?)",
    				"testTracebackArgs10(0x1, 0x2, 0x3, 0x4, 0x5)"),
    		},
    		// Conditional spills.
    		// Spill in conditional, not executed.
    		{
    			func() int {
    				poisonStack() // poison arg area to make output deterministic
    				return testTracebackArgs11a(1, 2, 3)
    			},
    			abiSel(
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/optimize_functional_ops.cc

                    return WalkResult::advance();
                  })
                  .wasInterrupted();
    }
    
    // Folds TensorFlow If op with constant conditional operand by inlining the
    // function body based on the conditional value.
    class FoldIfOp : public OpRewritePattern<TF::IfOp> {
     public:
      explicit FoldIfOp(MLIRContext* context)
          : OpRewritePattern<TF::IfOp>(context) {}
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/decode.go

    	TypePCRel                // PC-relative address
    	TypeLabel                // absolute address
    	TypeReg                  // integer register
    	TypeCondRegBit           // conditional register bit (0-31)
    	TypeCondRegField         // conditional register field (0-7)
    	TypeFPReg                // floating point register
    	TypeVecReg               // vector register
    	TypeVecSReg              // VSX register
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/services/internal/BuildServiceRegistryInternal.java

        /**
         * Same as #register(name, implementationType, parameters, maxUsages), but conditional.
         *
         * @param name
         * @param implementationType
         * @param parameters
         * @param maxUsages
         * @return the registered or already existing provider
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/configuration/BuildFeature.java

         * Whether the feature is active in the build.
         * <p>
         * The provider is always defined and its value denotes the effective status of a feature in a build.
         * <p>
         * This method is primarily useful for conditional logic in plugins or build scripts.
         * For instance, optional features of a plugin could be disabled if they are incompatible with a given build feature.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 30 19:28:25 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/loong64/asm_test.go

    import (
    	"bytes"
    	"fmt"
    	"internal/testenv"
    	"os"
    	"path/filepath"
    	"testing"
    )
    
    const genBufSize = (1024 * 1024 * 32) // 32MB
    
    // TestLargeBranch generates a large function with a very far conditional
    // branch, in order to ensure that it assembles successfully.
    func TestLargeBranch(t *testing.T) {
    	if testing.Short() {
    		t.Skip("Skipping test in short mode")
    	}
    	testenv.MustHaveGoBuild(t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:39:37 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top