Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 710 for cyclic (0.44 sec)

  1. maven-core/src/test/projects/default-maven/cyclic-reference/module-a/pom.xml

      <modelVersion>4.0.0</modelVersion>
    
      <parent>
        <groupId>cyclic-reference</groupId>
        <artifactId>parent</artifactId>
        <version>1.0-SNAPSHOT</version>
      </parent>
      <artifactId>module-a</artifactId>
    
      <dependencies>
        <dependency>
          <groupId>cyclic-reference</groupId>
          <artifactId>module-b</artifactId>
          <version>1.0-SNAPSHOT</version>
        </dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 619 bytes
    - Viewed (0)
  2. maven-core/src/test/projects/default-maven/cyclic-reference/module-b/pom.xml

      <modelVersion>4.0.0</modelVersion>
    
      <parent>
        <groupId>cyclic-reference</groupId>
        <artifactId>parent</artifactId>
        <version>1.0-SNAPSHOT</version>
      </parent>
      <artifactId>module-b</artifactId>
    
      <dependencies>
        <dependency>
          <groupId>cyclic-reference</groupId>
          <artifactId>module-a</artifactId>
          <version>1.0-SNAPSHOT</version>
        </dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 619 bytes
    - Viewed (0)
  3. 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)
  4. maven-core/src/test/projects/default-maven/cyclic-reference/pom.xml

      xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>cyclic-reference</groupId>
      <artifactId>parent</artifactId>
      <version>1.0-SNAPSHOT</version>
      <packaging>pom</packaging>
    
      <modules>
        <module>module-a</module>
        <module>module-b</module>
      </modules>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 478 bytes
    - Viewed (0)
  5. test/fixedbugs/issue5125.go

    // compiledir
    
    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 5125: cyclic dependencies between types confuse
    // the hashability test during import.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 06:18:30 UTC 2013
    - 288 bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/cyclic_object_graph.py

        self.parent = parent
        # CHECK: tf_saved_model.global_tensor
        # CHECK-SAME: tf_saved_model.exported_names = ["child.my_variable"]
        self.my_variable = tf.Variable(3.)
    
    
    # Creates a cyclic object graph.
    class TestModule(tf.Module):
    
      def __init__(self):
        super(TestModule, self).__init__()
        self.child = ReferencesParent(self)
    
    
    if __name__ == '__main__':
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 1.4K bytes
    - Viewed (0)
Back to top