Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 851 for runGet (0.19 sec)

  1. tensorflow/compiler/mlir/runlit.cfg.py

    # limitations under the License.
    """Lit runner configuration."""
    
    import os
    import platform
    import sys
    import lit.formats
    from lit.llvm import llvm_config
    from lit.llvm.subst import ToolSubst
    
    # Lint for undefined variables is disabled as config is not defined inside this
    # file, instead config is injected by way of evaluating runlit.cfg.py from
    # runlit.site.cfg.py which in turn is evaluated by lit.py. The structure is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 18:52:19 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/runlit.site.cfg.py

    # 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.
    """Lit runner site configuration."""
    
    import os
    import platform
    import lit.llvm
    
    # Handle the test srcdir for platforms. On windows, things are weird with bazel.
    if platform.system() == 'Windows':
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 21:33:52 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/cover.go

    func BuildActionCoverMetaFile(runAct *Action) (string, error) {
    	p := runAct.Package
    	for i := range runAct.Deps {
    		pred := runAct.Deps[i]
    		if pred.Mode != "build" || pred.Package == nil {
    			continue
    		}
    		if pred.Package.ImportPath == p.ImportPath {
    			metaFile := pred.Objdir + covcmd.MetaFileForPackage(p.ImportPath)
    			f, err := os.Open(metaFile)
    			if err != nil {
    				return "", err
    			}
    			defer f.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 19:09:38 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/buildcache/TaskOutputCachingJavaPerformanceTest.groovy

        def setup() {
            runner.warmUpRuns = 11
            runner.runs = 21
            runner.minimumBaseVersion = "3.5"
        }
    
        def "clean assemble with remote http cache"() {
            setupTestProject(runner)
            protocol = "http"
            pushToRemote = true
            runner.useDaemon = false
            runner.warmUpRuns = 2
            runner.runs = 8
            runner.addBuildMutator { cleanLocalCache() }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 13:08:21 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/session/FirIdeNormalAnalysisSourceModuleModuleOutOfBlockModificationAnalysisSessionInvalidationTestGenerated.java

        runTest("analysis/analysis-api/testData/sessions/sessionInvalidation/rhombusInvalidateD.kt");
      }
    
      @Test
      @TestMetadata("rhombusInvalidateL1.kt")
      public void testRhombusInvalidateL1() {
        runTest("analysis/analysis-api/testData/sessions/sessionInvalidation/rhombusInvalidateL1.kt");
      }
    
      @Test
      @TestMetadata("rhombusInvalidateL2.kt")
      public void testRhombusInvalidateL2() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 18 10:43:08 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/symbolDeclarationOverridesProvider/FirIdeDependentAnalysisSourceModuleOverriddenDeclarationProviderTestGenerated.java

      }
    
      @Test
      @TestMetadata("arraylistSubtype.kt")
      public void testArraylistSubtype() {
        runTest("analysis/analysis-api/testData/components/symbolDeclarationOverridesProvider/overriddenSymbols/arraylistSubtype.kt");
      }
    
      @Test
      @TestMetadata("backingField.kt")
      public void testBackingField() {
        runTest("analysis/analysis-api/testData/components/symbolDeclarationOverridesProvider/overriddenSymbols/backingField.kt");
      }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 22 14:22:10 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  7. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/java/JavaFirstUsePerformanceTest.groovy

            given:
            runner.tasksToRun = ['tasks']
            runner.runs = (runner.testProject == (LARGE_JAVA_MULTI_PROJECT_KOTLIN_DSL.projectName) ? 5 : 10)
            runner.useDaemon = false
            runner.addBuildMutator { invocationSettings ->
                new ClearGradleUserHomeMutator(invocationSettings.gradleUserHome, AbstractCleanupMutator.CleanupSchedule.BUILD)
            }
            runner.addBuildMutator { invocationSettings ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/util/ipvs_linux.go

    func (runner *runner) UpdateVirtualServer(vs *VirtualServer) error {
    	svc, err := toIPVSService(vs)
    	if err != nil {
    		return fmt.Errorf("could not convert local virtual server to IPVS service: %w", err)
    	}
    	runner.mu.Lock()
    	defer runner.mu.Unlock()
    	return runner.ipvsHandle.UpdateService(svc)
    }
    
    // DeleteVirtualServer is part of ipvs.Interface.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/inception/BuildSrcApiChangePerformanceTest.groovy

        def setup() {
            runner.minimumBaseVersion = "6.8"
            runner.warmUpRuns = 3
        }
    
        def setupGradleOpts() {
            useG1GarbageCollectorOnJava8(runner)
        }
    
        def "buildSrc abi change"() {
            given:
            setupGradleOpts()
            runner.tasksToRun = ['help']
            runner.runs = determineNumberOfRuns(runner.testProject)
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/annotations/FirIdeDependentAnalysisSourceModuleAnalysisApiAnnotationsOnDeclarationsTestGenerated.java

          runTest("analysis/analysis-api/testData/annotations/annotationsOnDeclaration/direct/listType.kt");
        }
    
        @Test
        @TestMetadata("onClass.kt")
        public void testOnClass() {
          runTest("analysis/analysis-api/testData/annotations/annotationsOnDeclaration/direct/onClass.kt");
        }
    
        @Test
        @TestMetadata("onFunction.kt")
        public void testOnFunction() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 13 09:31:11 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top