Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for postprocessor (0.17 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java

                interpolator.addValueSource(vs);
            }
            for (InterpolationPostProcessor postProcessor : postProcessors) {
                interpolator.addPostProcessor(postProcessor);
            }
            final RecursionInterceptor recursionInterceptor = createRecursionInterceptor(config);
            return value -> {
                if (value != null && value.contains("${")) {
                    String c = cache.get(value);
                    if (c == null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    // the command expects a regexp parameter (typically a function name).
    type command struct {
    	format      int           // report format to generate
    	postProcess PostProcessor // postprocessing to run on report
    	visualizer  PostProcessor // display output using some callback
    	hasParam    bool          // collect a parameter from the CLI
    	description string        // single-line description text saying what the command does
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/AbstractInstrumentationProcessor.java

            for (RequestPostProcessorExtension postProcessor : getExtensionsByType(RequestPostProcessorExtension.class)) {
                requests = requests.stream().flatMap(request -> postProcessor.postProcessRequest(request).stream()).collect(Collectors.toList());
            }
            return requests;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelInterpolator.java

                interpolator.addValueSource(vs);
            }
            for (InterpolationPostProcessor postProcessor : postProcessors) {
                interpolator.addPostProcessor(postProcessor);
            }
            RecursionInterceptor recursionInterceptor = createRecursionInterceptor(request);
            return value -> {
                if (value != null && value.contains("${")) {
                    String c = cache.get(value);
                    if (c == null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 20K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/TaskOperationMapper.java

                }
            }
        }
    
        private static class PostProcessors implements BuildOperationTracker {
            private final List<OperationResultPostProcessor> processors;
    
            public PostProcessors(List<OperationResultPostProcessor> processors) {
                this.processors = processors;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 16:16:16 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/ToolingApiBuildEventListenerFactory.java

            operationDependenciesResolver.addLookup(transformOperationMapper);
    
            List<OperationResultPostProcessor> postProcessors = createPostProcessors(subscriptions, consumer);
    
            TaskOperationMapper taskOperationMapper = new TaskOperationMapper(postProcessors, taskOriginTracker, operationDependenciesResolver);
            operationDependenciesResolver.addLookup(taskOperationMapper);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/custom_tasks.adoc

    <5> *Consume Output*: The `postProcess` task depends on the output of the `process` task due to using that task's outputs as its own inputs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 15:21:05 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top