Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 710 for cyclic (0.23 sec)

  1. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

            if (!originalNode.isInterface()) {
                if (parentToCompare == null) {
                    return;
                }
                if (originalNode == parentToCompare.redirect()) {
                    addError("Cyclic inheritance involving " + parentToCompare.getName() + " in class " + originalNode.getName(), originalNode);
                    return;
                }
                if (interfacesToCompare != null && interfacesToCompare.length > 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/converter_test.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // These tests are in a separate package to break cyclic dependency in tests.
    // Unstructured type depends on unstructured converter package but we want to test how the converter handles
    // the Unstructured type so we need to import both.
    
    package runtime_test
    
    import (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 16:02:13 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/lookup.go

    	if p, _ := Unalias(typ).(*Pointer); p != nil {
    		// p.base should never be nil, but be conservative
    		if p.base == nil {
    			if debug {
    				panic("pointer with nil base type (possibly due to an invalid cyclic declaration)")
    			}
    			return Typ[Invalid], true
    		}
    		return p.base, true
    	}
    	return typ, false
    }
    
    // derefStructPtr dereferences typ if it is a (named or unnamed) pointer to a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  4. src/go/types/lookup.go

    	if p, _ := Unalias(typ).(*Pointer); p != nil {
    		// p.base should never be nil, but be conservative
    		if p.base == nil {
    			if debug {
    				panic("pointer with nil base type (possibly due to an invalid cyclic declaration)")
    			}
    			return Typ[Invalid], true
    		}
    		return p.base, true
    	}
    	return typ, false
    }
    
    // derefStructPtr dereferences typ if it is a (named or unnamed) pointer to a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanTest.groovy

            Task d = task("d", dependsOn: [a, b])
    
            when:
            addToGraphAndPopulate([c, d])
    
            then:
            executes(b, a, c, d)
        }
    
        def "cyclic should run after ordering is ignored in complex task graph"() {
            given:
    
            Task e = task("e")
            Task x = task("x", dependsOn: [e])
            Task f = task("f", dependsOn: [x])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  6. src/go/types/builtins.go

    // hasVarSize reports if the size of type t is variable due to type parameters
    // or if the type is infinitely-sized due to a cycle for which the type has not
    // yet been checked.
    func hasVarSize(t Type, seen map[*Named]bool) (varSized bool) {
    	// Cycles are only possible through *Named types.
    	// The seen map is used to detect cycles and track
    	// the results of previously seen types.
    	if named := asNamed(t); named != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/export_graphdef.cc

            // If it is TF Control dialect specific op, look up custom operation
            // in the module and first convert that, then add it to function
            // definition library
            // TODO(prakalps): If two functions have cyclic dependence, this will
            // introduce an infinite loop.
            TF_RETURN_IF_ERROR(convert_called_function(op_name.value().str()));
          }
    
          if (IsLegacyCallInstruction(&inner_op)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

            // If it is TF Control dialect specific op, look up custom operation
            // in the module and first convert that, then add it to function
            // definition library
            // TODO(prakalps): If two functions have cyclic dependence, this will
            // introduce an infinite loop.
            TF_RETURN_IF_ERROR(convert_called_function(op_name.value().str()));
          }
    
          if (IsLegacyCallInstruction(&inner_op)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/builtins.go

    // hasVarSize reports if the size of type t is variable due to type parameters
    // or if the type is infinitely-sized due to a cycle for which the type has not
    // yet been checked.
    func hasVarSize(t Type, seen map[*Named]bool) (varSized bool) {
    	// Cycles are only possible through *Named types.
    	// The seen map is used to detect cycles and track
    	// the results of previously seen types.
    	if named := asNamed(t); named != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                                (CycleDetectedException) cycle.getException()));
                    }
                    throw new ProjectBuildingException(results);
                }
    
                return results;
            }
    
            List<ProjectBuildingResult> doBuild(List<File> pomFiles, boolean recursive) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
Back to top