Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 524 for unprocessed (0.16 sec)

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

     * limitations under the License.
     */
    
    // tag::verification-failure[]
    val process = tasks.register("process") {
        val outputFile = layout.buildDirectory.file("processed.log")
        outputs.files(outputFile) // <1>
    
        doLast {
            val logFile = outputFile.get().asFile
            logFile.appendText("Step 1 Complete.") // <2>
            throw VerificationException("Process failed!") // <3>
    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. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ModelBuildingListener.java

     */
    public interface ModelBuildingListener {
    
        /**
         * Notifies the listener that the model has been constructed to the extent where build extensions can be processed.
         *
         * @param event The details about the event.
         */
        default void buildExtensionsAssembled(ModelBuildingEvent event) {}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. pkg/kube/controllers/queue.go

    // when we have processed all items added to the queue prior to Run().
    type syncSignal struct{}
    
    // defaultSyncSignal is a singleton instanceof syncSignal.
    var defaultSyncSignal = syncSignal{}
    
    // HasSynced returns true if the queue has 'synced'. A synced queue has started running and has
    // processed all events that were added prior to Run() being called Warning: these items will be
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. pkg/apis/policy/types.go

    	// +optional
    	ObservedGeneration int64
    
    	// DisruptedPods contains information about pods whose eviction was
    	// processed by the API server eviction subresource handler but has not
    	// yet been observed by the PodDisruptionBudget controller.
    	// A pod will be in this map from the time when the API server processed the
    	// eviction request to the time when the pod is seen by PDB controller
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. src/cmd/gofmt/long_test.go

    	ngo     = flag.Int("n", runtime.NumCPU(), "number of goroutines used")
    	verbose = flag.Bool("verbose", false, "verbose mode")
    	nfiles  int // number of files processed
    )
    
    func gofmt(fset *token.FileSet, filename string, src *bytes.Buffer) error {
    	f, _, _, err := parse(fset, filename, src.Bytes(), false)
    	if err != nil {
    		return err
    	}
    	ast.SortImports(fset, f)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 20:27:28 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/exec/HandleCancel.java

    import org.gradle.api.logging.Logging;
    import org.gradle.launcher.daemon.server.api.DaemonCommandAction;
    import org.gradle.launcher.daemon.server.api.DaemonCommandExecution;
    
    /**
     * Install a handler for cancel request processed asynchronously while the daemon proceeds to build execution.
     */
    public class HandleCancel implements DaemonCommandAction {
        private static final Logger LOGGER = Logging.getLogger(HandleCancel.class);
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ComponentMetadataProcessor.java

        /**
         * Processes "shallow" metadata, only for selecting a version. This metadata is typically
         * provided by a custom metadata processor.
         * @param metadata the metadata to be processed
         * @return updated metadata, if any component metadata rule applies.
         */
        ComponentMetadata processMetadata(ComponentMetadata metadata);
    
        int getRulesHash();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. src/internal/bytealg/index_generic.go

    func IndexString(a, b string) int {
    	panic("unimplemented")
    }
    
    // Cutover reports the number of failures of IndexByte we should tolerate
    // before switching over to Index.
    // n is the number of bytes processed so far.
    // See the bytes.Index implementation for details.
    func Cutover(n int) int {
    	panic("unimplemented")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 901 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/failures/verificationFailure/groovy/build.gradle

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    // tag::verification-failure[]
    tasks.register("process") {
        def outputFile = layout.buildDirectory.file("processed.log")
        outputs.files(outputFile) // <1>
    
        doLast {
            def logFile = outputFile.get().asFile
            logFile << "Step 1 Complete." // <2>
            throw new VerificationException("Process failed!") // <3>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 20:19:24 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. src/go/types/gotype.go

    (in-package) _test.go files. Use -x to type check only external
    test files.
    
    Otherwise, each path must be the filename of a Go file belonging
    to the same package.
    
    Imports are processed by importing directly from the source of
    imported packages (default), or by importing from compiled and
    installed packages (by setting -c to the respective compiler).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 8.3K bytes
    - Viewed (0)
Back to top