Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 334 for processJob (0.62 sec)

  1. pkg/controller/ttlafterfinished/ttlafterfinished_controller.go

    	defer tc.queue.Done(key)
    
    	err := tc.processJob(ctx, key)
    	tc.handleErr(err, key)
    
    	return true
    }
    
    func (tc *Controller) handleErr(err error, key string) {
    	if err == nil {
    		tc.queue.Forget(key)
    		return
    	}
    
    	utilruntime.HandleError(fmt.Errorf("error cleaning up Job %v, will retry: %v", key, err))
    	tc.queue.AddRateLimited(key)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 23:59:28 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. tools/bug-report/pkg/processlog/processlog.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package processlog
    
    import (
    	"encoding/json"
    	"regexp"
    	"strings"
    	"time"
    
    	"istio.io/istio/tools/bug-report/pkg/config"
    	"istio.io/istio/tools/bug-report/pkg/util/match"
    )
    
    const (
    	levelFatal = "fatal"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 19 21:44:33 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/internal-instrumentation-processor/src/main/resources/META-INF/services/javax.annotation.processing.Processor

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    #
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 690 bytes
    - Viewed (0)
  4. docs/pt/docs/deployment/docker.md

    Um contêiner está rodando enquanto o **processo principal** (comando ou programa) estiver rodando.
    
    Um contêiner normalmente tem um **único processo**, mas também é possível iniciar sub-processos a partir do processo principal, e dessa forma você terá **vários processos** no mesmo contêiner.
    
    Mas não é possível ter um contêiner rodando sem **pelo menos um processo rodando**. Se o processo principal parar, o contêiner também para.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 37.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/java/incrementalAnnotationProcessing/groovy/processor/src/main/resources/META-INF/services/javax.annotation.processing.Processor

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 62 bytes
    - Viewed (0)
  6. docs/pt/docs/tutorial/background-tasks.md

    Para ver um exemplo, verifique os [Geradores de projeto](../project-generation.md){.internal-link target=\_blank}, todos incluem celery já configurado.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 09 23:44:32 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessorTest.groovy

            1 * processor.started({ it.id == 3 && it.name == "ok" && it.className == ATestClassWithRunner.name }, { it.parentId == 1 })
            1 * processor.failure(2, CustomRunner.failure)
            1 * processor.completed(3, { it.resultType == null })
            1 * processor.completed(2, { it.resultType == null })
            1 * processor.completed(1, { it.resultType == null })
            0 * processor._
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  8. fess-crawler/src/test/java/org/codelibs/fess/crawler/processor/impl/DefaultResponseProcessorTest.java

            processor.setNotModifiedHttpCodes(new int[] { 304 });
    
            ResponseData responseData = new ResponseData();
            responseData.setHttpStatusCode(200);
            assertTrue(processor.isSuccessful(responseData));
    
            responseData.setHttpStatusCode(100);
            assertFalse(processor.isSuccessful(responseData));
            responseData.setHttpStatusCode(304);
            assertFalse(processor.isSuccessful(responseData));
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessorTest.groovy

            then: 1 * processor.started({ it.id == 2 && it.name == 'Gradle test' && it.className == null }, { it.parentId == 1 })
            then: 1 * processor.started({ it.id == 3 && it.name == 'ok' && it.className == ATestNGClass.name }, { it.parentId == 2 })
            then: 1 * processor.completed(3, { it.resultType == ResultType.SUCCESS })
            then: 1 * processor.completed(2, { it.resultType == null })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 18 12:30:10 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/processors/RestartEveryNTestClassProcessorTest.groovy

        }
    
        def 'uses single batch when n equals zero'() {
            given:
            processor = new RestartEveryNTestClassProcessor(factory, 0)
    
            when:
            processor.startProcessing(resultProcessor)
            processor.processTestClass(test1)
            processor.processTestClass(test2)
            processor.stop()
    
            then:
            1 * factory.create() >> delegate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top