Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 124 for Boundaries (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pilot/pkg/xds/monitoring.go

    	configSizeBytes = monitoring.NewDistribution(
    		"pilot_xds_config_size_bytes",
    		"Distribution of configuration sizes pushed to clients",
    		// Important boundaries: 10K, 1M, 4M, 10M, 40M
    		// 4M default limit for gRPC, 10M config will start to strain system,
    		// 40M is likely upper-bound on config sizes supported.
    		[]float64{1, 10000, 1000000, 4000000, 10000000, 40000000},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/framer/framer.go

    	r         io.ReadCloser
    	decoder   *json.Decoder
    	remaining []byte
    }
    
    // NewJSONFramedReader returns an io.Reader that will decode individual JSON objects off
    // of a wire.
    //
    // The boundaries between each frame are valid JSON objects. A JSON parsing error will terminate
    // the read.
    func NewJSONFramedReader(r io.ReadCloser) io.ReadCloser {
    	return &jsonFrameReader{
    		r:       r,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 13:33:12 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/isolated_projects.adoc

    For example:
    
    ----
    $ gradle build -Dorg.gradle.unsafe.isolated-projects=true
    ----
    
    When enabled, Gradle will fail the build whenever build logic attempts to cross project boundaries and access the model of another project.
    Gradle collects all of these access problems in the configuration cache report, in the same way as other problems.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 13:53:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top