Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 66 for cyclic (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

      func.return
    }
    
    // -----
    
    func.func @cyclic_control_dependency_no_replication() {
      "tf.opA"() {_xla_compile_device_type = "TPU", _replication_info = "replicate"} : () -> ()
      // expected-warning-re@+1 {{Op has cyclic dependency with a compilation cluster{{.*}}}}
      "tf.opB"() : () -> ()
      "tf.opC"() {_xla_compile_device_type = "TPU", _replication_info = "replicate"} : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            while (src != null) {
                if (!sources.add(src)) {
                    String cycle = sources.stream().map(Configuration::getName).collect(Collectors.joining(" -> ")) + " -> " + getName();
                    throw new InvalidUserDataException("Cycle detected in consistent resolution sources: " + cycle);
                }
                src = src.getConsistentResolutionSource();
            }
        }
    
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    void ReportFailureInUnknownLocation(TestPartResult::Type result_type,
                                        const std::string& message);
    
    }  // namespace internal
    
    // The friend relationship of some of these classes is cyclic.
    // If we don't forward declare them the compiler might confuse the classes
    // in friendship clauses with same named classes on the scope.
    class Test;
    class TestCase;
    class TestInfo;
    class UnitTest;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    void ReportFailureInUnknownLocation(TestPartResult::Type result_type,
                                        const std::string& message);
    
    }  // namespace internal
    
    // The friend relationship of some of these classes is cyclic.
    // If we don't forward declare them the compiler might confuse the classes
    // in friendship clauses with same named classes on the scope.
    class Test;
    class TestCase;
    class TestInfo;
    class UnitTest;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  7. src/runtime/mprof.go

    	if blocksampled(cycles, rate) {
    		saveblockevent(cycles, rate, skip+1, blockProfile)
    	}
    }
    
    // blocksampled returns true for all events where cycles >= rate. Shorter
    // events have a cycles/rate random chance of returning true.
    func blocksampled(cycles, rate int64) bool {
    	if rate <= 0 || (rate > cycles && cheaprand64()%rate > cycles) {
    		return false
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. src/runtime/mgc.go

    	sweepWaiters struct {
    		lock mutex
    		list gList
    	}
    
    	// cycles is the number of completed GC cycles, where a GC
    	// cycle is sweep termination, mark, mark termination, and
    	// sweep. This differs from memstats.numgc, which is
    	// incremented at mark termination.
    	cycles atomic.Uint32
    
    	// Timing/utilization stats for this cycle.
    	stwprocs, maxprocs                 int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  9. src/runtime/mgcpacer.go

    	// heapScanWork is the total heap scan work performed this cycle.
    	// stackScanWork is the total stack scan work performed this cycle.
    	// globalsScanWork is the total globals scan work performed this cycle.
    	//
    	// These are updated atomically during the cycle. Updates occur in
    	// bounded batches, since they are both written and read
    	// throughout the cycle. At the end of the cycle, heapScanWork is how
    	// much of the retained heap is scannable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

            ConfigurationCycleException e = thrown()
            e.message == TextUtil.toPlatformLineSeparators("""A cycle has been detected in model rule dependencies. References forming the cycle:
    foo
    \\- foo mutator
       \\- foo""")
        }
    
        def "only the elements actually forming the cycle are reported when configuration cycles are detected"() {
            given:
            registry.register("foo") { it.unmanaged(Long, "bar") { 12 } }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
Back to top