Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 115 for finalizada (0.23 sec)

  1. docs/pt/docs/async.md

    Então você vai no balcão, para a tarefa inicial que agora está finalizada, pega os hambúrgueres, e leva para a mesa. Isso finaliza esse passo / tarefa da interação com o balcão. Agora é criada uma nova tarefa, "comer hambúrgueres", mas a tarefa anterior, "pegar os hambúrgueres" já está finalizada.
    
    ### Hambúrgueres paralelos
    
    Você vai com seu _crush_ :heart_eyes: em uma lanchonete paralela.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  2. docs/es/docs/async.md

    Se llama "asíncrono" porque el sistema / programa no tiene que estar "sincronizado" con la tarea lenta, esperando el momento exacto en que finaliza la tarea, sin hacer nada, para poder recoger el resultado de la tarea y continuar el trabajo.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanTest.groovy

            Task f2 = task("f2", dependsOn: [dep])
    
            //2 finalized tasks
            Task finalized1 = task("finalized1", finalizedBy: [f1, f2])
            Task finalized2 = task("finalized2", finalizedBy: [f1, f2])
    
            //tasks that depends on finalized, we will execute them
            Task df1 = task("df1", dependsOn: [finalized1])
            Task df2 = task("df2", dependsOn: [finalized2])
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/FinalizerTaskIntegrationTest.groovy

            }
            2.times {
                fails 'entryPoint', '-PentryPoint.broken'
                result.assertTaskOrder ':entryPoint', any(':finalized1', ':finalized2'), ':finalizer'
            }
            2.times {
                fails 'entryPoint', '-Pfinalized1.broken', '--continue' // add --continue so that finalized2 always runs
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            TaskInternal finalizerA = createTask("finalizerA", project, Async)
            TaskInternal finalizerB = createTask("finalizerB", project, Async)
            TaskInternal finalizerDepDep = task("finalizerDepDep", type: Async, finalizedBy: [finalizerA, finalizerB])
            TaskInternal finalizerDep = task("finalizerDep", type: Async, dependsOn: [finalizerDepDep])
            relationships(finalizerA, dependsOn: [finalizerDep])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  6. test/tinyfin.go

    	if runtime.Compiler == "gccgo" {
    		return
    	}
    	const N = 100
    	finalized := make(chan int32, N)
    	for i := 0; i < N; i++ {
    		x := new(int32) // subject to tiny alloc
    		*x = int32(i)
    		// the closure must be big enough to be combined
    		runtime.SetFinalizer(x, func(p *int32) {
    			finalized <- *p
    		})
    	}
    	runtime.GC()
    	count := 0
    	done := make([]bool, N)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 03 18:57:18 UTC 2015
    - 1.6K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/execution/plan/FinalizerGroup.java

                    if (!finalizedNodesToBlockOn.isEmpty()) {
                        // This member is finalized and there are some finalized nodes that are not members. Wait for those nodes
                        blockingNodesBuilder.put(member, waitForFinalizers);
                    } else {
                        // All finalized nodes are also members. Block until some other finalized node is started
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jul 01 16:25:48 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/RuleBindingsTest.groovy

            def rule1 = rule("path", ModelNode.State.Finalized)
            def rule2 = rule(Long, ModelNode.State.Finalized)
            def rule3 = rule("path", ModelNode.State.Finalized)
            def rule4 = rule(Long, ModelNode.State.Finalized)
            def rule5 = rule(Long, ModelNode.State.Finalized)
            def rule6 = rule("path", ModelNode.State.Finalized)
    
            given:
            bindings.add(rule1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/main/java/org/gradle/language/BinaryCollection.java

         *
         * @param action The action to execute for each element when finalized.
         */
        void whenElementFinalized(Action<? super T> action);
    
        /**
         * Registers an action to execute when an element of the given type is finalized. The action is only executed for those elements that are required. Fails if any matching element has already been finalized.
         *
         * @param type The type of element to select.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/test/groovy/org/gradle/language/internal/DefaultBinaryCollectionTest.groovy

            0 * configure._
            0 * finalized._
    
            then:
            1 * finalized.execute(binary1)
            1 * finalized.execute(binary2)
            0 * known._
            0 * configure._
            0 * finalized._
        }
    
        def "runs actions on element of given type when collection is realized"() {
            def known = Mock(Action)
            def configure = Mock(Action)
            def finalized = Mock(Action)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 18.4K bytes
    - Viewed (0)
Back to top