Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for visio (0.06 sec)

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

            // to be a Class, because unless there was an import for
            // for this we do not lookup these cases. This was a decision
            // made on the mailing list. To ensure we will not visit this
            // method again we set a NO_CLASS for this name
            if (type instanceof LowerCaseClass) {
                classNodeResolver.cacheClass(name, NO_CLASS);
                return false;
            }
    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. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGenerator.java

            visitor.visitEnd();
        }
    
        private void declareClass(ClassVisitor visitor, Collection<String> interfaceInternalNames, Type generatedType, Type superclassType) {
            visitor.visit(V1_6, ACC_PUBLIC, generatedType.getInternalName(), null,
                superclassType.getInternalName(), Iterables.toArray(interfaceInternalNames, String.class));
        }
    
        private void declareStateField(ClassVisitor visitor) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 55.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            cachedFilteredDependencyStates = null;
            // here, we need to check that applying the new resolution filter
            // we would actually exclude exactly the same dependencies as in
            // the previous visit. It is important that this is NOT a heuristic
            // (it used to be) because if the filters are _equivalent_, we would
            // revisit all dependencies and possibly change the classpath order!
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

            }
    
            @Override
            Visitor getAll(Class<?> serviceType, Visitor visitor) {
                parentServices.getAll(serviceType).forEach {
                    visitor.visit(serviceFor(it))
                }
                return visitor
            }
    
            @Override
            void stop() {
                throw new UnsupportedOperationException()
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    * merge them
    
    You can also traverse file trees using the link:{javadocPath}/org/gradle/api/file/FileTree.html#visit-org.gradle.api.Action-[FileTree.visit(org.gradle.api.Action)] method.
    All of these techniques are demonstrated in the following example:
    
    ====
    include::sample[dir="snippets/files/fileTrees/kotlin",files="build.gradle.kts[tags=use]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/go.sum

    cloud.google.com/go/video v1.19.0/go.mod h1:9qmqPqw/Ib2tLqaeHgtakU+l5TcJxCJbhFXM7UJjVzU=
    cloud.google.com/go/videointelligence v1.11.1/go.mod h1:76xn/8InyQHarjTWsBR058SmlPCwQjgcvoW0aZykOvo=
    cloud.google.com/go/vision/v2 v2.7.2/go.mod h1:jKa8oSYBWhYiXarHPvP4USxYANYUEdEsQrloLjrSwJU=
    cloud.google.com/go/vmmigration v1.7.1/go.mod h1:WD+5z7a/IpZ5bKK//YmT9E047AD+rjycCAvyMxGJbro=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/go.sum

    cloud.google.com/go/video v1.19.0/go.mod h1:9qmqPqw/Ib2tLqaeHgtakU+l5TcJxCJbhFXM7UJjVzU=
    cloud.google.com/go/videointelligence v1.11.1/go.mod h1:76xn/8InyQHarjTWsBR058SmlPCwQjgcvoW0aZykOvo=
    cloud.google.com/go/vision/v2 v2.7.2/go.mod h1:jKa8oSYBWhYiXarHPvP4USxYANYUEdEsQrloLjrSwJU=
    cloud.google.com/go/vmmigration v1.7.1/go.mod h1:WD+5z7a/IpZ5bKK//YmT9E047AD+rjycCAvyMxGJbro=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/prove.go

    								ft.update(parent, v, ft.zero, signed, gt|eq)
    							}
    						}
    					}
    				}
    				if ft.unsat {
    					// node.block is unreachable.
    					// Remove it and don't visit
    					// its children.
    					removeBranch(parent, branch)
    					ft.restore()
    					break
    				}
    				// Otherwise, we can now commit to
    				// taking this branch. We'll restore
    				// ft when we unwind.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  9. src/runtime/mprof.go

    		fing.goroutineProfiled.Store(goroutineProfileSatisfied)
    		if readgstatus(fing) != _Gdead && !isSystemGoroutine(fing, false) {
    			doRecordGoroutineProfile(fing, pcbuf)
    		}
    	}
    	startTheWorld(stw)
    
    	// Visit each goroutine that existed as of the startTheWorld call above.
    	//
    	// New goroutines may not be in this list, but we didn't want to know about
    	// them anyway. If they do appear in this list (via reusing a dead goroutine
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/mark_for_compilation_pass.cc

            }
    
            return TryToContractEdge(from, to);
          }).status());
    
      // Phase 2: contract any remaining edges.  After this phase we should have a
      // maximal clustering:
      //
      // A. We visit a cluster only after maximally clustering all its children.
      // B. By the time we're done with a node all of its children that could have
      //    been absorbed into the node have been absorbed.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
Back to top