Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for visitTar (0.37 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/visitor.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package schema
    
    // Visitor recursively walks through a structural schema.
    type Visitor struct {
    	// Structural is called on each Structural node in the schema, before recursing into
    	// the subtrees. It is allowed to mutate s. Return true if something has been changed.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/transform/CalculateArtifactsCodec.kt

            }
    
            override fun visit(visitor: ResolvedArtifactSet.Visitor) {
                visitor.visitArtifacts(this)
            }
    
            override fun startFinalization(actions: BuildOperationQueue<RunnableBuildOperation>, requireFiles: Boolean) {
            }
    
            override fun visit(visitor: ArtifactVisitor) {
                val displayName = Describables.of(ownerId)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/DefaultPayloadClassLoaderRegistry.java

                ClassLoaderSpecVisitor visitor = new ClassLoaderSpecVisitor(classLoader);
                visitor.visit(classLoader);
    
                if (visitor.spec == null) {
                    if (visitor.classPath == null) {
                        visitor.spec = SystemClassLoaderSpec.INSTANCE;
                    } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. src/go/ast/walk.go

    	"fmt"
    	"iter"
    )
    
    // A Visitor's Visit method is invoked for each node encountered by [Walk].
    // If the result visitor w is not nil, [Walk] visits each of the children
    // of node with the visitor w, followed by a call of w.Visit(nil).
    type Visitor interface {
    	Visit(node Node) (w Visitor)
    }
    
    func walkList[N Node](v Visitor, list []N) {
    	for _, node := range list {
    		Walk(v, node)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:34:10 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/Node.java

        /**
         * Traverses this node and potentially its children using the specified visitor.
         *
         * @param visitor the visitor to call back, must not be {@code null}
         * @return {@code true} to visit siblings nodes of this node as well, {@code false} to skip siblings
         */
        boolean accept(@Nonnull NodeVisitor visitor);
    
        /**
         * Returns a new tree starting at this node, filtering the children.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/NormalizedIdentityImmutableTransformExecution.java

                identityFileInputs.get(DEPENDENCIES_PROPERTY_NAME).getHash()
            );
        }
    
        @Override
        public void visitIdentityInputs(InputVisitor visitor) {
            super.visitIdentityInputs(visitor);
            visitInputArtifact(visitor);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:14:33 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/projectresult/ResolvedLocalComponentsResultGraphVisitor.java

     * used to mark those configurations as observed so that they cannot be mutated later.
     *
     * <strong>Do not build on-top of this visitor. If you want to track cross-project dependencies,
     * use {@link org.gradle.api.internal.artifacts.configurations.ProjectComponentObservationListener}</strong>
     *
     * TODO: The logic in this visitor should be integrated directly into the DefaultLocalConfigurationMetadataBuilder
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_to_string.cc

        if (i) s += ", ";
      }
    };
    
    void ToString(const std::string& serialized_model) {
      IndentedToStringVisitor visitor(/*delimiter=*/"\n", /*indent=*/"  ");
      IterateFlatBuffer(reinterpret_cast<const uint8_t*>(serialized_model.c_str()),
                        ModelTypeTable(), &visitor);
      std::cout << visitor.s << "\n\n";
    }
    
    }  // end namespace
    }  // end namespace tflite
    
    int main(int argc, char** argv) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 15:52:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DefaultResolvedDependency.java

            ArtifactCollectingVisitor visitor = new ArtifactCollectingVisitor(new TreeSet<>(new ResolvedArtifactComparator()));
            ParallelResolveArtifactSet.wrap(artifacts, buildOperationProcessor).visit(visitor);
            if (!visitor.getFailures().isEmpty()) {
                throw UncheckedException.throwAsUncheckedException(visitor.getFailures().get(0));
            }
            return visitor.getArtifacts();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/VisitableURLClassLoader.java

            return getClass().getSimpleName() + "(" + name + ")";
        }
    
        @Override
        public void visit(ClassLoaderVisitor visitor) {
            URL[] urls = getURLs();
            visitor.visitSpec(new Spec(name, Arrays.asList(urls)));
            visitor.visitClassPath(urls);
            visitor.visitParent(getParent());
        }
    
        public static class Spec extends ClassLoaderSpec {
            final String name;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top