Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 159 for postProcess (1.6 sec)

  1. tools/commonfiles-postprocess.sh

    John Howard <******@****.***> 1680024579 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 28 17:29:39 UTC 2023
    - 822 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/validation.go

    			out.Enum[k] = v
    		}
    	}
    
    	if err := convertSliceOfJSONSchemaProps(&in.AllOf, &out.AllOf, postProcess); err != nil {
    		return err
    	}
    	if err := convertSliceOfJSONSchemaProps(&in.OneOf, &out.OneOf, postProcess); err != nil {
    		return err
    	}
    	if err := convertSliceOfJSONSchemaProps(&in.AnyOf, &out.AnyOf, postProcess); err != nil {
    		return err
    	}
    
    	if in.Not != nil {
    		in, out := &in.Not, &out.Not
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 18:23:28 UTC 2023
    - 15K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/failures/verificationFailure/tests/verificationFailure.sample.conf

    executable: gradle
    args: postprocess --continue
    expect-failure: true
    expected-output-file: verificationFailure.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 17:42:17 UTC 2023
    - 145 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/failures/verificationFailure/tests/verificationFailure.out

    > Task :process FAILED
    
    > Task :postProcess
    Results: Step 1 Complete.
    2 actionable tasks: 2 executed
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 17:42:17 UTC 2023
    - 143 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/failures/verificationFailure/groovy/build.gradle

            logFile << "Step 1 Complete." // <2>
            throw new VerificationException("Process failed!") // <3>
            logFile << "Step 2 Complete." // <4>
        }
    }
    
    tasks.register("postProcess") {
        inputs.files(tasks.named("process")) // <5>
    
        doLast {
            println("Results: ${inputs.files.singleFile.text}") // <6>
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 20:19:24 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  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