Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,858 for run1 (0.09 sec)

  1. src/go/types/universe.go

    }
    
    var basicAliases = [...]*Basic{
    	{Byte, IsInteger | IsUnsigned, "byte"},
    	{Rune, IsInteger, "rune"},
    }
    
    func defPredeclaredTypes() {
    	for _, t := range Typ {
    		def(NewTypeName(nopos, nil, t.name, t))
    	}
    	for _, t := range basicAliases {
    		def(NewTypeName(nopos, nil, t.name, t))
    	}
    
    	// type any = interface{}
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/android/RealLifeAndroidBuildPerformanceTest.groovy

        ])
        def "run #tasks"() {
            given:
            AndroidTestProject testProject = androidTestProject
            testProject.configure(runner)
            runner.tasksToRun = tasks.split(' ')
            runner.args.add('-Dorg.gradle.parallel=true')
            runner.warmUpRuns = warmUpRuns
            runner.runs = runs
            if (IncrementalAndroidTestProject.NOW_IN_ANDROID == testProject) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:57 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/certs.go

    	eventually re-distribute the renewed certificate in case the file is used elsewhere.
    `)
    
    	allLongDesc = cmdutil.LongDesc(`
        Renew all known certificates necessary to run the control plane. Renewals are run unconditionally, regardless
        of expiration date. Renewals can also be run individually for more control.
    `)
    
    	expirationLongDesc = cmdutil.LongDesc(`
    	Checks expiration for the certificates in the local PKI managed by kubeadm.
    `)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. src/testing/newcover.go

    // cover2 variable stores the current coverage mode and a
    // tear-down function to be called at the end of the testing run.
    var cover2 struct {
    	mode        string
    	tearDown    func(coverprofile string, gocoverdir string) (string, error)
    	snapshotcov func() float64
    }
    
    // registerCover2 is invoked during "go test -cover" runs.
    // It is used to record a 'tear down' function
    // (to be called when the test is complete) and the coverage mode.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:58:07 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. testing/soak/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSoakTest.groovy

            when:
            result = executer
                    .withTasks("compileJava")
                    .run()
    
            then:
            javaClassFile("Foo.class").assertExists()
            assertJdkWasDownloaded()
        }
    
        def "clean destination folder when downloading toolchain"() {
            when: "build runs and doesn't have a local JDK to use for compilation"
            result = executer
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 16:13:09 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/FixedExclusiveModeCrossProcessCacheAccessTest.groovy

        }
    
        def "acquires lock then initializes cache and runs handler action on open"() {
            def lock = Mock(FileLock)
    
            when:
            cacheAccess.open()
    
            then:
            1 * lockManager.lock(file, _, _, "", _) >> lock
    
            then:
            1 * initAction.requiresInitialization(lock) >> true
            1 * lock.writeFile(_) >> { Runnable r -> r.run() }
            1 * initAction.initialize(lock)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. src/strings/strings_test.go

    	{"x \xc0\xc0 ", "x \xc0\xc0"},
    	{"x ☺\xc0\xc0 ", "x ☺\xc0\xc0"},
    	{"x ☺ ", "x ☺"},
    }
    
    func tenRunes(ch rune) string {
    	r := make([]rune, 10)
    	for i := range r {
    		r[i] = ch
    	}
    	return string(r)
    }
    
    // User-defined self-inverse mapping function
    func rot13(r rune) rune {
    	step := rune(13)
    	if r >= 'a' && r <= 'z' {
    		return ((r - 'a' + step) % 26) + 'a'
    	}
    	if r >= 'A' && r <= 'Z' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  8. .github/workflows/test-redistribute.yml

          - name: Install build dependencies
            run: pip install build
          - name: Build source distribution
            env:
              TIANGOLO_BUILD_PACKAGE: ${{ matrix.package }}
            run: python -m build --sdist
          - name: Decompress source distribution
            run: |
              cd dist
              tar xvf fastapi*.tar.gz
          - name: Install test dependencies
            run: |
              cd dist/fastapi*/
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue May 07 18:31:27 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. .github/workflows/smokeshow.yml

    jobs:
      smokeshow:
        if: ${{ github.event.workflow_run.conclusion == 'success' }}
        runs-on: ubuntu-latest
    
        steps:
          - name: Dump GitHub context
            env:
              GITHUB_CONTEXT: ${{ toJson(github) }}
            run: echo "$GITHUB_CONTEXT"
          - uses: actions/setup-python@v5
            with:
              python-version: '3.9'
    
          - run: pip install smokeshow
    
          - uses: actions/download-artifact@v4
            with:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 10 01:06:31 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r73/DeferredConfigurationCrossVersionSpec.groovy

                def executer = builder.build()
                collectOutputs(executer)
                executer.run()
            }
    
            then:
            projectsLoadedModel == "result"
            buildFinishedModel == "result"
    
            and:
            assertHasConfigureSuccessfulLogging()
            result.assertNotOutput(prefix)
        }
    
        def "runs settings scripts and does not configure projects when action queries GradleProject model"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top