Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 46 for antrun (0.17 sec)

  1. platforms/software/test-suites-base/src/main/java/org/gradle/testing/base/TestSuiteTaskCollection.java

    /**
     * Provides access to key tasks used by a test suite.
     */
    public interface TestSuiteTaskCollection extends BinaryTasksCollection {
        /**
         * The run task.
         */
        Task getRun();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 16:02:04 UTC 2023
    - 928 bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/internal/NativeTestSuiteBinaryRenderer.java

        protected void renderTasks(NativeTestSuiteBinarySpec binary, TextReportBuilder builder) {
            builder.item("install using task", binary.getTasks().getInstall().getPath());
            builder.item("run using task", binary.getTasks().getRun().getPath());
        }
    
        @Override
        protected void renderOutputs(NativeTestSuiteBinarySpec binary, TextReportBuilder builder) {
            builder.item("executable file", binary.getExecutableFile());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/internal/DefaultNativeTestSuiteBinarySpec.java

            }
    
            @Override
            public InstallExecutable getInstall() {
                return findSingleTaskWithType(InstallExecutable.class);
            }
    
            @Override
            public RunTestExecutable getRun() {
                return findSingleTaskWithType(RunTestExecutable.class);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. pkg/util/async/bounded_frequency_runner.go

    		// We're allowed to run the function right now.
    		bfr.fn()
    		bfr.lastRun = bfr.timer.Now()
    		bfr.timer.Stop()
    		bfr.timer.Reset(bfr.maxInterval)
    		klog.V(3).Infof("%s: ran, next possible in %v, periodic in %v", bfr.name, bfr.minInterval, bfr.maxInterval)
    		return
    	}
    
    	// It can't run right now, figure out when it can run next.
    	elapsed := bfr.timer.Since(bfr.lastRun)   // how long since last run
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 15 09:36:26 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  5. src/crypto/aes/block.go

    //
    //	rijndael-alg-fst.c
    //
    //	@version 3.0 (December 2000)
    //
    //	Optimised ANSI C code for the Rijndael cipher (now AES)
    //
    //	@author Vincent Rijmen <******@****.***>
    //	@author Antoon Bosselaers <antoon******@****.***>
    //	@author Paulo Barreto <******@****.***>
    //
    //	This code is hereby placed in the public domain.
    //
    //	THIS SOFTWARE IS PROVIDED BY THE AUTHORS ''AS IS'' AND ANY EXPRESS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cunit/CUnitTestResults.groovy

            }
        }
    
        class SummaryRecord {
            final Node recordNode
    
            SummaryRecord(Node recordNode) {
                this.recordNode = recordNode
            }
    
            int getRun() {
                recordNode.RUN.text() as int
            }
    
            int getSucceeded() {
                recordNode.SUCCEEDED.text() as int
            }
    
            int getFailed() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. src/hash/crc32/gen_const_ppc64le.go

    // vpmsumd crc32 algorithm.
    //
    // go run gen_const_ppc64le.go
    //
    // generates crc32_table_ppc64le.s
    
    // The following is derived from code written by Anton Blanchard
    // <anton@au.ibm.com> found at https://github.com/antonblanchard/crc32-vpmsum.
    // The original is dual licensed under GPL and Apache 2.  As the copyright holder
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 20:44:20 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. platforms/software/test-suites-base/src/main/java/org/gradle/testing/base/plugins/TestingModelBasePlugin.java

                            if (testSuiteBinary.getTasks() instanceof TestSuiteTaskCollection) {
                                testSuiteBinary.checkedBy(((TestSuiteTaskCollection) testSuiteBinary.getTasks()).getRun());
                            }
                            BinarySpec testedBinary = testSuiteBinary.getTestedBinary();
                            if (testedBinary != null && testedBinary.isBuildable()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 16:02:04 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. pkg/kubelet/server/server.go

    	ws := new(restful.WebService)
    	ws.
    		Path("/run")
    	ws.Route(ws.POST("/{podNamespace}/{podID}/{containerName}").
    		To(s.getRun).
    		Operation("getRun"))
    	ws.Route(ws.POST("/{podNamespace}/{podID}/{uid}/{containerName}").
    		To(s.getRun).
    		Operation("getRun"))
    	s.restfulCont.Add(ws)
    
    	s.addMetricsBucketMatcher("exec")
    	ws = new(restful.WebService)
    	ws.
    		Path("/exec")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/testFixtures/groovy/org/gradle/language/LanguageTaskNames.groovy

            }
    
            class TestTasks extends VariantTasks {
                @Override
                protected String getBuildType() {
                    return "Test"
                }
    
                List<String> getRun() {
                    return [withProject("runTest${variant}")]
                }
    
                List<String> getRelocate() {
                    return [withProject("relocateMainForTest${variant}")]
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7K bytes
    - Viewed (0)
Back to top