Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 771 for visitPod (0.12 sec)

  1. src/cmd/internal/cov/readcovdata.go

    		fmt.Fprintf(os.Stderr, "%s", errstr)
    		panic("fatal error")
    	}
    	r.err = fmt.Errorf("%s", errstr)
    	return r.err
    }
    
    // visitPod examines a coverage data 'pod', that is, a meta-data file and
    // zero or more counter data files that refer to that meta-data file.
    func (r *CovDataReader) visitPod(p pods.Pod) error {
    	r.verb(1, "visiting pod: metafile %s with %d counter files",
    		p.MetaFile, len(p.CounterDataFiles))
    	r.vis.BeginPod(p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/pkg/resource/visitor.go

    }
    
    // DecoratedVisitor will invoke the decorators in order prior to invoking the visitor function
    // passed to Visit. An error will terminate the visit.
    type DecoratedVisitor struct {
    	visitor    Visitor
    	decorators []VisitorFunc
    }
    
    // NewDecoratedVisitor will create a visitor that invokes the provided visitor functions before
    // the user supplied visitor function is invoked, giving them the opportunity to mutate the Info
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 10:17:56 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/visitor.cc

        SymbolTableCollection* symbol_table) {
      llvm::SmallDenseSet<Operation*> visited;
    
      llvm::SmallVector<func::FuncOp> stack;
      stack.push_back(func);
    
      while (!stack.empty()) {
        func::FuncOp f = stack.back();
        stack.pop_back();
    
        if (!visited.insert(f).second) {
          continue;
        }
    
        WalkResult result = callback(f);
        if (result.wasInterrupted()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 03:46:51 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/DependencyLockingGraphVisitorTest.groovy

        }
    
        private void addVisitedChangingNode(ModuleComponentIdentifier module) {
            DependencyGraphNode node = Mock()
            DependencyGraphComponent component = Mock()
            ComponentGraphResolveMetadata metadata = Mock()
            node.owner >> component
            component.metadataOrNull >> metadata
            metadata.isChanging() >> true
            component.componentId >> module
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/check/visitor.go

    			return err
    		}
    		return o(r)
    	}
    }
    
    // Or returns a Visitor that performs a logical OR of this Visitor and the one provided.
    func (v Visitor) Or(o Visitor) Visitor {
    	return func(r echoClient.Response) error {
    		if err := v(r); err != nil {
    			return err
    		}
    		return o(r)
    	}
    }
    
    // Checker returns an echo.Checker based on this Visitor.
    func (v Visitor) Checker() echo.Checker {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 28 23:06:21 UTC 2022
    - 2K bytes
    - Viewed (0)
  6. 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)
  7. subprojects/core/src/main/java/org/gradle/internal/classpath/CallInterceptionClosureInstrumentingClassVisitor.java

                        MethodVisitor visitor = visitMethod(Opcodes.ACC_PUBLIC, methodInstrumentationStrategy.methodName, methodInstrumentationStrategy.descriptor, null, null);
                        visitor.visitCode();
                        visitor.visitInsn(Opcodes.RETURN);
                        visitor.visitMaxs(4, 4);
                        visitor.visitEnd();
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 01:16:36 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/utils/visitor.h

    namespace mlir {
    namespace TF {
    
    // Walks the function by following function call chains and calling the callback
    // for each reachable function (including `func`). Each function is visited only
    // once even if it's called from multiple places and/or recursively.
    //
    // The current implementation follows direct calls to `mlir::func::FuncOp` only
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 03:46:51 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedCollectionProxyClassGenerator.java

            ClassWriter visitor = classGenerator.getVisitor();
    
            Type generatedType = classGenerator.getGeneratedType();
    
            Type superclassType = Type.getType(implClass);
            Type publicType = Type.getType(publicContractType);
    
            generateClass(visitor, generatedType, superclassType, publicType);
            generateConstructors(visitor, implClass, superclassType);
            visitor.visitEnd();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. 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)
Back to top