Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for graphml (0.53 sec)

  1. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

            }
    
            ExecutorService createExecutor(int parallelism) {
                //
                // We need an executor that will not block.
                // We can't use work stealing, as we are building a graph
                // and this could lead to cycles where a thread waits for
                // a task to finish, then execute another one which waits
                // for the initial task...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

         * or even inconsistent. For example, databind 2.9.4 depends on annotations 2.9.0, but we still
         * want to upgrade annotations to the highest version of the platform seen in the graph, which
         * is 2.9.4.1, a **patch** release in this case. This patch release doesn't publish all versions
         */
        def "can align heterogeneous versions"() {
            repository {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  3. src/main/webapp/js/admin/bootstrap.min.js

    /*!
      * Bootstrap v4.4.1 (https://getbootstrap.com/)
      * Copyright 2011-2019 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
      * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
      */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 58.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/test/test.go

    			// supposed we have a top level directory with three
    			// package subdirs, "a", "b", and "c", and
    			// from the top level, a user runs "go test -coverpkg=./... ./...".
    			// This will result in (roughly) the following action graph:
    			//
    			//	build("a")       build("b")         build("c")
    			//	    |               |                   |
    			//	link("a.test")   link("b.test")     link("c.test")
    			//	    |               |                   |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. pilot/pkg/model/push_context.go

    // but in our usage we often need the opposite: for a given service, what are all the aliases?
    // resolveServiceAliases walks this 'graph' of services and updates the Alias field in-place.
    func resolveServiceAliases(allServices []*Service, configsUpdated sets.Set[ConfigKey]) {
    	// rawAlias builds a map of Service -> AliasFor. So this will be ExternalName -> Service.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/cmd/cgo/gcc.go

    func (c *typeConv) Type(dtype dwarf.Type, pos token.Pos) *Type {
    	return c.loadType(dtype, pos, "")
    }
    
    // loadType recursively loads the requested dtype and its dependency graph.
    func (c *typeConv) loadType(dtype dwarf.Type, pos token.Pos, parent string) *Type {
    	// Always recompute bad pointer typedefs, as the set of such
    	// typedefs changes as we see more types.
    	checkCache := true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top