Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,647 for conditional (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/vendor/golang.org/x/arch/x86/x86asm/inst.go

    	PrefixFS Prefix = 0x64 // FS segment override
    	PrefixGS Prefix = 0x65 // GS segment override
    
    	// Branch prediction.
    	PrefixPN Prefix = 0x12E // predict not taken (conditional branch only)
    	PrefixPT Prefix = 0x13E // predict taken (conditional branch only)
    
    	// Size attributes.
    	PrefixDataSize Prefix = 0x66 // operand size override
    	PrefixData16   Prefix = 0x166
    	PrefixData32   Prefix = 0x266
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/Cache.kt

     *  * **[Hit Count:][hitCount]** the number of those requests whose responses were served by the
     *    cache.
     *
     * Sometimes a request will result in a conditional cache hit. If the cache contains a stale copy of
     * the response, the client will issue a conditional `GET`. The server will then send either
     * the updated response if it has changed, or a short 'not modified' response if the client's copy
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  6. src/runtime/mbarrier.go

    //
    //
    //
    // Dealing with memory ordering:
    //
    // Both the Yuasa and Dijkstra barriers can be made conditional on the
    // color of the object containing the slot. We chose not to make these
    // conditional because the cost of ensuring that the object holding
    // the slot doesn't concurrently change color without the mutator
    // noticing seems prohibitive.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ResultAssertion.java

            }
        }
    
        /**
         * Removes the first matching expected deprecation warning from the list of expected deprecations stored
         * in {@link #expectedDeprecationWarnings} as a side-effect; conditional on a matching deprecation warning
         * being already present in that collection.
         * <p>
         * A match means that the first n lines starting at {@code startIdx} match the lines of the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/collect/testing/google/AbstractMultisetSetCountTester.java

    /**
     * Common superclass for {@link MultisetSetCountUnconditionallyTester} and {@link
     * MultisetSetCountConditionallyTester}. It is used by those testers to test calls to the
     * unconditional {@code setCount()} method and calls to the conditional {@code setCount()} method
     * when the expected present count is correct.
     *
     * @author Chris Povirk
     */
    @GwtCompatible(emulated = true)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/google/AbstractMultisetSetCountTester.java

    /**
     * Common superclass for {@link MultisetSetCountUnconditionallyTester} and {@link
     * MultisetSetCountConditionallyTester}. It is used by those testers to test calls to the
     * unconditional {@code setCount()} method and calls to the conditional {@code setCount()} method
     * when the expected present count is correct.
     *
     * @author Chris Povirk
     */
    @GwtCompatible(emulated = true)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/cache/CacheStrategy.kt

    /**
     * Given a request and cached response, this figures out whether to use the network, the cache, or
     * both.
     *
     * Selecting a cache strategy may add conditions to the request (like the "If-Modified-Since" header
     * for conditional GETs) or warnings to the cached response (if the cached data is potentially
     * stale).
     */
    class CacheStrategy internal constructor(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:24:48 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top