Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for postprocessor (0.18 sec)

  1. platforms/documentation/docs/src/snippets/failures/verificationFailure/kotlin/build.gradle.kts

            logFile.appendText("Step 1 Complete.") // <2>
            throw VerificationException("Process failed!") // <3>
            logFile.appendText("Step 2 Complete.") // <4>
        }
    }
    
    tasks.register("postProcess") {
        inputs.files(process) // <5>
    
        doLast {
            println("Results: ${inputs.files.singleFile.readText()}") // <6>
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 20:24:16 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. Makefile.overrides.mk

    BUILD_WITH_CONTAINER ?= 1
    CONTAINER_OPTIONS = --mount type=bind,source=/tmp,destination=/tmp --net=host
    
    export COMMONFILES_POSTPROCESS = tools/commonfiles-postprocess.sh
    
    ifeq ($(BUILD_WITH_CONTAINER),1)
    # create phony targets for the top-level items in the repo
    PHONYS := $(shell ls | grep -v Makefile)
    .PHONY: $(PHONYS)
    $(PHONYS):
    	@$(MAKE_DOCKER) $@
    endif
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 28 17:29:39 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/processing/IncrementalFilerTest.groovy

        AnnotationProcessingResult result = new AnnotationProcessingResult()
        Filer filer
    
        def setup() {
            filer = new IncrementalFiler(delegate, getStrategy(new AnnotationProcessorResult(result, "TestProcessor")))
        }
    
        abstract IncrementalProcessingStrategy getStrategy(AnnotationProcessorResult result)
    
        PackageElement pkg(String packageName) {
            Stub(PackageElement) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. 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)
  5. 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