Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 152 for Boundaries (0.39 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/transforms/compute_cost.cc

    // We will ignore quant/dequant/requant costs within the Func Op as well,
    // intuition:
    //
    // The assumpution is that quant/dequant/requant will only happen at the begin
    // and the end of the FuncOp (basically the "boundaries" of the subgraph).
    // So we can imagine if multiple "same-inference-typed" graph are presented at
    // the same time, the quant/dequant ops pair can be squashed:
    //
    //         dequant         ------------
    //            |
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 24 15:10:02 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/unicode/norm/forminfo.go

    	nextMain:      nextDecomposed,
    }}
    
    // We do not distinguish between boundaries for NFC, NFD, etc. to avoid
    // unexpected behavior for the user.  For example, in NFD, there is a boundary
    // after 'a'.  However, 'a' might combine with modifiers, so from the application's
    // perspective it is not a good boundary. We will therefore always use the
    // boundaries for the combining variants.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultMutationGuardTest.groovy

            "withMutationDisabled"  | "Action"     | Actions.doNothing()
            "withMutationEnabled"   | "Action"     | Actions.doNothing()
        }
    
        def "doesn't protect across thread boundaries"() {
            given:
            def callable = new ActionCallingDisallowedMethod()
            def action = guard.withMutationDisabled(new Action<Void>() {
                @Override
                void execute(Void aVoid) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/project/CrossProjectModelAccess.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    import javax.annotation.Nullable;
    import java.util.Map;
    import java.util.Set;
    
    /**
     * Mediates access across project boundaries.
     */
    @ServiceScope(Scope.Build.class)
    public interface CrossProjectModelAccess {
        /**
         * Locates the given project relative to some project.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 04:11:36 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/python/type_casters.h

    // defined in `native_proto_caster.h` during the resolution process. This is
    // because the type casters in `native_proto_caster.h`, which allow seamlessly
    // exchanging protobuf messages across c++-python boundaries, potentially
    // without serialization, fail in the open-source environment.
    // Explicitly-specialized type casters for serialized protobufs are added on an
    // on-demand basis for quantization library.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. architecture/standards/0004-use-a-platform-architecture.md

    # ADR-0004 - Use a platform-oriented architecture for Gradle
    
    ## Date
    
    2024-02-07
    
    ## Context
    
    The Gradle code base is essentially a large monolith, without strong internal boundaries.
    This has a number of negative effects on productivity, including:
    
    - Unclear ownership of code.
    - Difficult to focus on one particular area.
    - Unintended coupling between areas of the code, including tests.
    
    ## Decision
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 22:19:29 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-java-base/src/testFixtures/groovy/org/gradle/java/compile/AbstractIncrementalCompileIntegrationTest.groovy

            then:
            def failure = fails 'classes'
            failure.assertHasDescription "Execution failed for task ':${language.compileTaskName}'."
        }
    
        def "recompiles dependent classes across project boundaries"() {
            given:
            file("lib/src/main/${language.name}/IPerson.${language.name}") << basicInterface
            file("app/src/main/${language.name}/Person.${language.name}") << classImplementingBasicInterface
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/nilcheck.go

    					}
    				}
    			}
    
    			// Next, order values in the current block w.r.t. stores.
    			b.Values = storeOrder(b.Values, sset, storeNumber)
    
    			pendingLines := f.cachedLineStarts // Holds statement boundaries that need to be moved to a new value/block
    			pendingLines.clear()
    
    			// Next, process values in the block.
    			for _, v := range b.Values {
    				switch v.Op {
    				case OpIsNonNil:
    					ptr := v.Args[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  9. pkg/ctrlz/assets/static/js/popper-1.12.9.min.js

    iers,'hide','preventOverflow'))return e;var t=e.offsets.reference,o=T(e.instance.modifiers,function(e){return'preventOverflow'===e.name}).boundaries;if(t.bottom<o.top||t.left>o.right||t.top>o.bottom||t.right<o.left){if(!0===e.hide)return e;e.hide=!0,e.attributes['x-out-of-boundaries']=''}else{if(!1===e.hide)return e;e.hide=!1,e.attributes['x-out-of-boundaries']=!1}return e}},computeStyle:{order:850,enabled:!0,fn:function(e,t){var o=t.x,i=t.y,n=e.offsets.popper,p=T(e.instance.modifiers,function(e...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/project/ProjectState.java

         * <p>This lock allows both access to the project state and the right to execute as a task. Acquiring this lock also acquires the lock returned by {@link #getAccessLock()}.
         *
         * <p>When a task reaches across project boundaries, the project state lock is released but the task execution lock is not. This prevents other tasks from the same project from starting but
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 20 08:25:03 UTC 2022
    - 5.3K bytes
    - Viewed (0)
Back to top