Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,434 for onDone (0.16 sec)

  1. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/core/BuildScanBuildFailureHintIntegrationTest.groovy

    import static org.gradle.internal.logging.LoggingConfigurationBuildOptions.StacktraceOption
    
    @Issue("https://github.com/gradle/gradle/issues/3516")
    @Requires(UnitTestPreconditions.Online)
    class BuildScanBuildFailureHintIntegrationTest extends AbstractIntegrationSpec {
    
        private static final List<String> DUMMY_TASK_ONLY = [DUMMY_TASK_NAME]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:40:39 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. CODE_OF_CONDUCT.md

    The Code of Conduct also applies within project spaces and in public spaces whenever an individual is representing TensorFlow or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed or de facto representative at an online or offline event. 
    
    
    ## Conflict Resolution
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 05 18:43:16 UTC 2021
    - 5.2K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/integTest/groovy/org/gradle/performance/fixture/MavenDownloaderTest.groovy

    import org.junit.Assume
    import org.junit.AssumptionViolatedException
    import spock.lang.Specification
    import spock.lang.TempDir
    
    import java.nio.file.Files
    
    @Requires(UnitTestPreconditions.Online)
    class MavenDownloaderTest extends Specification {
    
        @TempDir
        File tmpDir
    
        def installRoot
        def downloader
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. src/math/big/gcd_test.go

    package big
    
    import (
    	"math/rand"
    	"testing"
    )
    
    // randInt returns a pseudo-random Int in the range [1<<(size-1), (1<<size) - 1]
    func randInt(r *rand.Rand, size uint) *Int {
    	n := new(Int).Lsh(intOne, size-1)
    	x := new(Int).Rand(r, n)
    	return x.Add(x, n) // make sure result > 1<<(size-1)
    }
    
    func runGCD(b *testing.B, aSize, bSize uint) {
    	if isRaceBuilder && (aSize > 1000 || bSize > 1000) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 19:11:43 UTC 2016
    - 2.2K bytes
    - Viewed (0)
  5. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerGradleVersionIntegrationTest.groovy

    import spock.lang.Retry
    import spock.lang.Shared
    
    import static org.gradle.integtests.fixtures.RetryConditions.onIssueWithReleasedGradleVersion
    
    @NonCrossVersion
    @Requires([
        UnitTestPreconditions.Online,
        TestKitPreconditions.LowestMajorGradleIsAvailable
    ])
    @Retry(condition = { onIssueWithReleasedGradleVersion(instance, failure) }, count = 2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. src/math/big/intconv.go

    // write count copies of text to s.
    func writeMultiple(s fmt.State, text string, count int) {
    	if len(text) > 0 {
    		b := []byte(text)
    		for ; count > 0; count-- {
    			s.Write(b)
    		}
    	}
    }
    
    var _ fmt.Formatter = intOne // *Int must implement fmt.Formatter
    
    // Format implements [fmt.Formatter]. It accepts the formats
    // 'b' (binary), 'o' (octal with 0 prefix), 'O' (octal with 0o prefix),
    // 'd' (decimal), 'x' (lowercase hexadecimal), and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  7. internal/dsync/locker.go

    	// Returns underlying endpoint of this lock client instance.
    	String() string
    
    	// Close closes any underlying connection to the service endpoint
    	Close() error
    
    	// Is the underlying connection online? (is always true for any local lockers)
    	IsOnline() bool
    
    	// Is the underlying locker local to this server?
    	IsLocal() bool
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 18 20:44:38 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  8. cluster/gce/gci/node.yaml

    write_files:
      - path: /etc/systemd/system/kube-node-installation.service
        permissions: 0644
        owner: root
        content: |
          [Unit]
          Description=Download and install k8s binaries and configurations
          After=network-online.target
    
          [Service]
          Type=oneshot
          RemainAfterExit=yes
          ExecStartPre=/bin/mkdir -p /home/kubernetes/bin
          ExecStartPre=/bin/mount --bind /home/kubernetes/bin /home/kubernetes/bin
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 13 18:38:40 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  9. cmd/metrics-v3-cluster-erasure-set.go

    	erasureSetWriteQuorumMD = NewGaugeMD(erasureSetWriteQuorum,
    		"Write quorum for the erasure set in a pool", poolIDL, setIDL)
    	erasureSetOnlineDrivesCountMD = NewGaugeMD(erasureSetOnlineDrivesCount,
    		"Count of online drives in the erasure set in a pool", poolIDL, setIDL)
    	erasureSetHealingDrivesCountMD = NewGaugeMD(erasureSetHealingDrivesCount,
    		"Count of healing drives in the erasure set in a pool", poolIDL, setIDL)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 14 07:25:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftIncrementalCompileIntegrationTest.groovy

             """
    
            outputs.snapshot { succeeds("compileDebugSwift") }
    
            buildFile << """
                tasks.withType(SwiftCompile) {
                    compilerArgs.add('-Onone')
                }
            """
    
            expect:
            succeeds("compileDebugSwift")
            outputs.recompiledClasses('main', 'sum', 'greeter', 'multiply')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top