Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for conditional (0.19 sec)

  1. 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)
  2. 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)
  3. guava-tests/benchmark/com/google/common/base/ToStringHelperBenchmark.java

                .addValue(10L)
                .add(SHORT_NAME, 3.14f)
                .addValue(3.14d)
                .add(LONG_NAME, false)
                .add(LONG_NAME, LONG_NAME);
          }
        },
        CONDITIONAL {
          @Override
          void addEntries(MoreObjects.ToStringHelper helper) {
            helper
                .add(SHORT_NAME, "x")
                .add(LONG_NAME, "y")
                .add(SHORT_NAME, null)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. test/opt_branchlikely.go

    // errorcheck -0 -d=ssa/likelyadjust/debug=1,ssa/insert_resched_checks/off
    // rescheduling check insertion is turned off because the inserted conditional branches perturb the errorcheck
    
    //go:build amd64
    
    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that branches have some prediction properties.
    package foo
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/internal/obj/arm64/asm_arm64_test.go

    			}
    		}
    	}
    }
    
    // TestLarge generates a very large file to verify that large
    // program builds successfully, in particular, too-far
    // conditional branches are fixed, and also verify that the
    // instruction's pc can be correctly aligned even when branches
    // need to be fixed.
    func TestLarge(t *testing.T) {
    	if testing.Short() {
    		t.Skip("Skip in short mode")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:46:11 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/cfg/cfg.go

    //	    succs: 4
    //	4:			IfDone
    //
    // The CFG does contain Return statements; even implicit returns are
    // materialized (at the position of the function's closing brace).
    //
    // The CFG does not record conditions associated with conditional branch
    // edges, nor the short-circuit semantics of the && and || operators,
    // nor abnormal control flow caused by panic.  If you need this
    // information, use golang.org/x/tools/go/ssa instead.
    package cfg
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/common_caching_problems.adoc

    include::sample[dir="snippets/buildCache/conditional-action/groovy",files="build.gradle[tags=conditionalAction]"]
    ====
    
    You should always add the action unconditionally:
    
    ====
    include::sample[dir="snippets/buildCache/conditional-action/kotlin",files="build.gradle.kts[tags=unconditionalAction]"]
    include::sample[dir="snippets/buildCache/conditional-action/groovy",files="build.gradle[tags=unconditionalAction]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 19.2K 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