Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of about 10,000 for conditional (1.15 sec)

  1. 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)
  2. docs/features/calls.md

    If a conditional GET was successful, responses from the network and cache are merged as directed by the spec.
    
    ## Follow-up Requests
    
    When your requested URL has moved, the webserver will return a response code like `302` to indicate the document’s new URL. OkHttp will follow the redirect to retrieve a final response.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/collect/testing/google/MultisetSetCountConditionallyTester.java

    import com.google.common.collect.testing.features.CollectionSize;
    import com.google.errorprone.annotations.CanIgnoreReturnValue;
    import org.junit.Ignore;
    
    /**
     * A generic JUnit test which tests conditional {@code setCount()} operations on a multiset. Can't
     * be invoked directly; please see {@link MultisetTestSuiteBuilder}.
     *
     * @author Chris Povirk
     */
    @GwtCompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 21 15:08:35 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtDataFlowInfoProvider.kt

        /**
         * `true` if there are any control-flow statements that jump outside given statements.
         * Jumps include both loop jumps (`break` and `continue`) and `return`s.
         * Conditional blocks (`if`) and `throw`s are not considered as jumps.
         */
        public val hasJumps: Boolean,
    
        /**
         * `true` if next-executed instructions for the potential default expression and jump expressions are different.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ComponentSelectionRulesProcessorTest.groovy

            def e = thrown(InvalidUserCodeException)
            e.message == "There was an error while evaluating a component selection rule for group:module:version."
            e.cause == failure
        }
    
        // Conditional rules execution tests will need to be removed once feature is removed
        def "rule expecting IvyModuleDescriptor does not get called when not an ivy component"() {
            def metadataProvider = Stub(DefaultMetadataProvider) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/asm_test.go

    	defer os.RemoveAll(dir)
    
    	// A few interesting test cases for long conditional branch fixups
    	tests := []struct {
    		jmpinsn     string
    		backpattern []string
    		fwdpattern  []string
    	}{
    		// Test the interesting cases of conditional branch rewrites for too-far targets. Simple conditional
    		// branches can be made to reach with one JMP insertion, compound conditionals require two.
    		//
    		// beq <-> bne conversion (insert one jump)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 22:14:57 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/collect/testing/google/MultisetSetCountConditionallyTester.java

    import com.google.common.collect.testing.features.CollectionSize;
    import com.google.errorprone.annotations.CanIgnoreReturnValue;
    import org.junit.Ignore;
    
    /**
     * A generic JUnit test which tests conditional {@code setCount()} operations on a multiset. Can't
     * be invoked directly; please see {@link MultisetTestSuiteBuilder}.
     *
     * @author Chris Povirk
     */
    @GwtCompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 21 15:08:35 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  8. android/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)
  9. src/cmd/compile/internal/ssa/sccp.go

    package ssa
    
    import (
    	"fmt"
    )
    
    // ----------------------------------------------------------------------------
    // Sparse Conditional Constant Propagation
    //
    // Described in
    // Mark N. Wegman, F. Kenneth Zadeck: Constant Propagation with Conditional Branches.
    // TOPLAS 1991.
    //
    // This algorithm uses three level lattice for SSA value
    //
    //      Top        undefined
    //     / | \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/injection/injection-image.go

    	var m injectionConfigMap
    	if err := json.Unmarshal([]byte(cm.Data[util.InjectionConfigMapValue]), &m); err != nil {
    		return ""
    	}
    	// The injector template has a similar '{ contains "/" ... }' conditional
    	if strings.Contains(m.Global.Proxy.Image, "/") {
    		return m.Global.Proxy.Image
    	}
    	return fmt.Sprintf("%s/%s:%s", m.Global.Hub, m.Global.Proxy.Image, m.Global.Tag)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top