Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for postprocessor (0.21 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/driver.go

    	default:
    		err = report.Generate(dst, rpt, o.Obj)
    	}
    	if err != nil {
    		return err
    	}
    	src := dst
    
    	// If necessary, perform any data post-processing.
    	if c.postProcess != nil {
    		dst = new(bytes.Buffer)
    		if err := c.postProcess(src, dst, o.UI); err != nil {
    			return err
    		}
    		src = dst
    	}
    
    	// If no output is specified, use default visualizer.
    	output := cfg.Output
    	if output == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/encapsulate_util.h

    //     and create a Placeholder node as dst node's input.
    Status PreprocessEdgesBetweenOutsideCompilations(
        Graph* g, const string& outside_compilation_attr_name);
    
    // Postprocesses edges within the same XLA cluster. This function reverts what
    // `PreprocessEdgesBetweenOutsideCompilations` did. It will perform the
    // following operations in order:
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/ratcheting.go

    // each explored sub-index and sub-property during validation.
    //
    // It's main job is to keep the old/new values correlated as the traversal
    // continues, and postprocess errors according to our ratcheting policy.
    //
    // ratchetingValueValidator is not thread safe.
    type ratchetingValueValidator struct {
    	// schemaArgs provides the arguments to use in the temporary SchemaValidator
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 21:17:17 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. pkg/kube/inject/webhook.go

    	if err != nil {
    		return nil, err
    	}
    	return json.Marshal(p)
    }
    
    // postProcessPod applies additionally transformations to the pod after merging with the injected template
    // This is generally things that cannot reasonably be added to the template
    func postProcessPod(pod *corev1.Pod, injectedPod corev1.Pod, req InjectionParameters) error {
    	if pod.Annotations == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  5. guava-gwt/pom.xml

                won't.
    
                I have one idea for a better approach, but it's painful, and I haven't tested it: We
                could postprocess Collect.gwt.xml to add <skip> lines for all the files that should be
                covered by testModule.gwt.xml. Maybe I'll try it someday.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 15:00:55 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/addressingmodes.go

    // first part of the key.
    var combineFirst = map[Op]bool{}
    
    func init() {
    	for k := range combine {
    		combineFirst[k[0]] = true
    	}
    }
    
    // needSplit contains instructions that should be postprocessed by splitLoad
    // into a more-efficient two-instruction form.
    var needSplit = map[Op]bool{
    	OpAMD64CMPBloadidx1: true,
    	OpAMD64CMPWloadidx1: true,
    	OpAMD64CMPLloadidx1: true,
    	OpAMD64CMPQloadidx1: true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 26 17:19:57 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

            parser.setValidate(validate);
            parser.parse();
    
            DefaultModuleDescriptor moduleDescriptor = parser.getModuleDescriptor();
            postProcess(moduleDescriptor);
    
            return ParseResult.of(parser.getMetaData(), parser.hasGradleMetadataRedirect);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

          host_graph->get(),
          std::unordered_set<const Node*>{(*host_graph)->sink_node()});
    
      // Postprocess edges between different outside compilations.
      TF_RETURN_IF_ERROR(PostprocessEdgesBetweenOutsideCompilations(
          host_graph->get(), outside_compilation_attr_name));
    
      // Postprocess lifted arg nodes.
      TF_RETURN_IF_ERROR(PostprocessLiftedArgs(host_graph->get(), fld));
    
      if (VLOG_IS_ON(4)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  9. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.tooling.internal.provider.runner.TaskOperationMapper$PostProcessors> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (TaskOperationMapper.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top