Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 591 for visio (0.14 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/DataSchemaBuilder.kt

        fun createPreIndex(types: Iterable<KClass<*>>): PreIndex {
            val allTypesToVisit = buildSet {
                fun visit(type: KClass<*>) {
                    if (add(type)) {
                        typeDiscovery.getClassesToVisitFrom(type).forEach(::visit)
                    }
                }
                types.forEach(::visit)
            }
    
            return PreIndex().apply {
                allTypesToVisit.forEach { type ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:02 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/ClassLoaderVisitor.java

            this.stopAt = stopAt;
        }
    
        public void visit(ClassLoader classLoader) {
            if (classLoader == stopAt) {
                visitSpec(SystemClassLoaderSpec.INSTANCE);
                return;
            }
    
            if (classLoader instanceof ClassLoaderHierarchy) {
                ((ClassLoaderHierarchy) classLoader).visit(this);
            } else {
                if (isPreJava9LauncherAppClassloader(classLoader)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/client-services/src/main/java/org/gradle/internal/daemon/client/serialization/ClientSidePayloadClassLoaderFactory.java

                }
    
                @Override
                public void visit(int version, int access, String name, String signature, String superName, String[] interfaces) {
                    Set<String> allInterfaces = new LinkedHashSet<String>(Arrays.asList(interfaces));
                    allInterfaces.add(mixInInterface.replace('.', '/'));
                    super.visit(version, access, name, signature, superName, allInterfaces.toArray(new String[0]));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. subprojects/core/src/testFixtures/groovy/org/gradle/api/file/FileVisitorUtil.groovy

                        assertTrue(details.file.directory)
                    }
            ] as FileVisitor
    
            tree.visit(visitor)
    
            assertThat(files, equalTo(expectedFiles as Set))
            assertThat(dirs, equalTo(expectedDirs as Set))
    
            files = [] as Set
            tree.visit {FileVisitDetails details ->
                assertTrue(files.add(details.relativePath.pathString))
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 22 14:26:33 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/NormalizingCopyActionDecoratorTest.groovy

            when:
            visit(decorator, dir)
    
            then:
            1 * delegateAction.processFile(dir)
        }
    
        def doesNotVisitAnEmptyDirectoryIfCorrespondingOptionIsOff() {
            final FileCopyDetailsInternal dir = file("dir", true, false)
    
            when:
            visit(decorator, dir)
    
            then:
            0 * delegateAction._
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 22 14:38:33 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/plan/ExecutionNodeAccessHierarchy.java

            @Override
            public void visitExact(NodeAccess value) {
                visit(value);
            }
    
            @Override
            public void visitAncestor(NodeAccess value, VfsRelativePath pathToVisitedLocation) {
                if (value.accessesChild(pathToVisitedLocation)) {
                    visit(value);
                }
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 12 20:10:34 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  7. tensorflow/cc/experimental/libtf/tests/visit_test.cc

        return "else";
      }
    };
    
    TEST(VisitTest, Test1) {
      TaggedValue a(Int64(1)), b(Float32(1.1f));
      TaggedValue c = TaggedValue::None();
    
      ASSERT_EQ(a.visit<const char*>(Visitor()), "int64");
      ASSERT_EQ(b.visit<const char*>(Visitor()), "float32");
      ASSERT_EQ(c.visit<const char*>(Visitor()), "else");
    }
    
    }  // namespace impl
    }  // namespace libtf
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 15 16:58:38 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  8. src/go/ast/walk.go

    // Walk traverses an AST in depth-first order: It starts by calling
    // v.Visit(node); node must not be nil. If the visitor w returned by
    // v.Visit(node) is not nil, Walk is invoked recursively with visitor
    // w for each of the non-nil children of node, followed by a call of
    // w.Visit(nil).
    func Walk(v Visitor, node Node) {
    	if v = v.Visit(node); v == nil {
    		return
    	}
    
    	// walk children
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:34:10 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/skeleton.go

    				changed = true
    			}
    			return changed
    		},
    	}
    	v.Visit(s)
    	return s
    }
    
    // StripNullable returns a copy without nullable.
    func (s *Structural) StripNullable() *Structural {
    	s = s.DeepCopy()
    	v := Visitor{
    		Structural: func(s *Structural) bool {
    			changed := s.Nullable
    			s.Nullable = false
    			return changed
    		},
    	}
    	v.Visit(s)
    	return s
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 14 01:06:36 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  10. pkg/apis/core/v1/defaults_test.go

    				toVisit = append(toVisit, testPath{path: visit.path + "[*]", value: item})
    			} else if !isPrimitive(visit.value.Type().Elem().Kind()) {
    				t.Logf("unhandled non-primitive map type %s: %s", visit.path, visit.value.Type().Elem())
    			}
    
    		case visit.value.Kind() == reflect.Pointer:
    			if visit.value.IsNil() {
    				if visit.value.Type().Elem().Kind() == reflect.Struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
Back to top