Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 507 for cyclic (0.14 sec)

  1. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/adapter/TypeInspectorTest.groovy

            types2.is(types)
        }
    
        def "inspects cyclic types"() {
            expect:
            def types = inspector.getReachableTypes(Parent)
            types == [Parent, Child] as Set
    
            def types2 = inspector.getReachableTypes(Child)
            types2 == types
        }
    
        def "inspects cyclic generic types"() {
            expect:
            def types = inspector.getReachableTypes(GenericChild)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/MaybeNConcurrentRequests.java

     * limitations under the License.
     */
    
    package org.gradle.test.fixtures.server.http;
    
    import java.time.Duration;
    import java.util.Collection;
    import java.util.concurrent.locks.Lock;
    
    /**
     * A cyclic barrier for {@link BlockingHttpServer} where expectations are optional.
     */
    class MaybeNConcurrentRequests extends ExpectMaxNConcurrentRequests {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. src/reflect/deepequal.go

    	// For any possible reference cycle that might be encountered,
    	// hard(v1, v2) needs to return true for at least one of the types in the cycle,
    	// and it's safe and valid to get Value's internal pointer.
    	hard := func(v1, v2 Value) bool {
    		switch v1.Kind() {
    		case Pointer:
    			if !v1.typ().Pointers() {
    				// not-in-heap pointers can't be cyclic.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:30 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. test/gc2.go

    // Test that buffered channels are garbage collected properly.
    // An interesting case because they have finalizers and used to
    // have self loops that kept them from being collected.
    // (Cyclic data with finalizers is never finalized, nor collected.)
    
    package main
    
    import (
    	"fmt"
    	"os"
    	"runtime"
    )
    
    func main() {
    	const N = 10000
    	st := new(runtime.MemStats)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 977 bytes
    - Viewed (0)
  5. maven-di/src/main/java/org/apache/maven/di/impl/DIException.java

     * under the License.
     */
    package org.apache.maven.di.impl;
    
    import org.apache.maven.di.Injector;
    
    /**
     * A runtime exception that is thrown on startup when some static conditions fail
     * (missing or cyclic dependencies, incorrect annotations etc.) or in runtime when
     * you ask an {@link Injector} for an instance it does not have a {@link Binding binding} for.
     */
    public final class DIException extends RuntimeException {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 05 09:45:47 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/annotations.kt

     *
     * When caching a service inside another service, the property should also be [lazy] to avoid issues with cyclic service initialization and
     * excessive class loading on startup.
     *
     * The [KaCachedService] annotation itself is currently not enforced by any checkers or inspections, but it serves as an anchor for
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/EclipseModelCompositeBuildIncludeCycleCrossVersionSpec.groovy

            """
            file('module-b/settings.gradle') << """
                includeBuild('../module-a')
            """
        }
    
        def "can find a build for of included build project despite cyclic include"() {
            when:
    
            List<String> result = withConnection { connection ->
                def builder = connection.action(new AccessIncludedBuildProjectBuildAction())
                collectOutputs(builder)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. hack/verify-no-vendor-cycles.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script checks whether packages under `vendor` directory have cyclic
    # dependencies on `main` or `staging` repositories.
    # Usage: `hack/verify-no-vendor-cycles.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultResolutionErrorHandler.java

            if (result.hasMetadataResolutionExceptions()) {
                throw result.getMetadataResolutionException(0);
            }
    
            // Metadata cannot be retrieved
    
            // Cyclic Dependency Error
    
            if (result.hasCircularDependencyExceptions()) {
                throw result.getCircularDependencyException(0);
            }
    
            // Version Range Violation
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/shape_inference.h

    // Infer shapes for all Tensors in a graph, and save them in a map.  The vector
    // for a Node contains the information about each of its outputs.
    // TODO(phawkins): this code does not infer accurate shapes for cyclic graphs.
    // `arg_shapes`: user given map from the `index` to shapes of this
    // node, where `index` is the `index` attribute of `_Arg` op or `_index`
    // attribute of `Placeholder` op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top