Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 56 for _Graph (0.3 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            given:
            buildFile("""
                class SneakyListener extends TaskExecutionAdapter implements TaskExecutionGraphListener {
                    @Override void graphPopulated(TaskExecutionGraph graph) {}
                }
    
                gradle.$registrationPoint(new SneakyListener())
            """)
    
            expect:
            executer.noDeprecationChecks()
            configurationCacheFails 'help'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  2. hack/local-up-cluster.sh

      update_packages
    
      # configure shared mounts to prevent failure in DIND scenarios
      mount --make-rshared /
    
      # kubekins has a special directory for docker root
      DOCKER_ROOT="/docker-graph"
    
      # to use docker installed containerd as kubelet container runtime
      # we need to enable cri and install cni
      # install cni for docker in docker
      install_cni 
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

            e.message == "No model node at 'thing'"
    
            where:
            state << ModelNode.State.values()
        }
    
        def "getting self closed collection defines all links but does not realise them until graph closed"() {
            given:
            def events = []
            def mmType = ModelTypes.modelMap(Bean)
    
            registry
                .registerModelMap("things", Bean) { it.registerFactory(Bean) { new Bean(name: it) } }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    In previous Gradle versions, `mustRunAfter` constraints between regular tasks and finalizer task dependencies would not be honored.
    
    For a concrete example, consider the following task graph definition:
    
    [source,kotlin]
    ----
    tasks {
        register("dockerTest") {
            dependsOn("dockerUp")     // dependsOn createContainer mustRunAfter removeContainer
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    [[mutate_configuration_after_locking]]
    ==== Deprecate mutating configuration after observation
    
    To ensure the accuracy of dependency resolution, Gradle checks that Configurations are not mutated after they have been used as part of a dependency graph.
    
    * Resolvable configurations should not have their resolution strategy, dependencies, hierarchy, etc. modified after they have been resolved.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      if (is_map_oc) {
        if (op_is_map_oc != *is_map_oc) {
          return op.emitOpError()
                 << "Cannot mix map_outside_compilation with ordinary "
                    "outside_compilation in the same graph.";
        }
      } else {
        is_map_oc = op_is_map_oc;
      }
      if (control_above && op_is_map_oc) {
        return op.emitOpError() << "map_outside_compilation inside control flow "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/Futures.java

     * article on <a href="https://github.com/google/guava/wiki/ListenableFutureExplained">{@code
     * ListenableFuture}</a>.
     *
     * <p>The main purpose of {@code ListenableFuture} is to help you chain together a graph of
     * asynchronous operations. You can chain them together manually with calls to methods like {@link
     * Futures#transform(ListenableFuture, Function, Executor) Futures.transform}, but you will often
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    ----
    
    
    
    [[sec:dependents_report]]
    === Dependent components report
    
    Gradle provides a report that you can run from the command-line that shows a graph of components in your project and components that depend upon them. The following is an example of running `gradle dependentComponents` on the sample project:
    
    === Example: Dependent components report
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/prove.go

    		state: descend,
    	})
    
    	idom := f.Idom()
    	sdom := f.Sdom()
    
    	// DFS on the dominator tree.
    	//
    	// For efficiency, we consider only the dominator tree rather
    	// than the entire flow graph. On the way down, we consider
    	// incoming branches and accumulate conditions that uniquely
    	// dominate the current block. If we discover a contradiction,
    	// we can eliminate the entire block and all of its children.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    Verifying this ensures the maximum level of security: metadata files typically tell what transitive dependencies will be included, so a compromised metadata file may cause the introduction of undesired dependencies in the graph.
    However, because all artifacts are verified, such artifacts would in general easily be discovered by you, because they would cause a checksum verification failure (checksums would be _missing_ from verification metadata).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
Back to top