Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for ISH (0.13 sec)

  1. platforms/software/resources-gcs/src/test/groovy/org/gradle/internal/resource/transport/gcp/gcs/GcsConnectionPropertiesTest.groovy

            expect:
            new GcsConnectionProperties("http://some", null, value).requiresAuthentication()
            then:
            where:
            value << ['foo', 'true-ish', 'false-y', '1']
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. src/run.bash

    # Some tests are conditionally enabled or disabled based on the builder
    # name or the builder name being non-empty.
    #
    # GO_TEST_SHORT: if set to a non-empty, false-ish string, run tests in "-short=false" mode.
    # This environment variable is an internal implementation detail between the
    # Go build system (x/build) and cmd/dist for the purpose of longtest builders,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:02:23 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationType.java

     * As such, these objects should be designed for serialization to non Java formats (e.g. JSON).
     *
     * - Should be practically immutable
     * - Should only expose primitive(ish) JDK types, or other structured types only exposing JDK types
     * - Collection like structures should have deterministic order - either sorted, or meaningful
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/healthz.go

    // will default to healthy. One may want to set a grace period in order to prevent the kubelet from restarting
    // the kube-apiserver due to long-ish boot sequences. Readyz health checks, on the other hand, have no grace period,
    // since readyz should fail until boot fully completes.
    func (s *GenericAPIServer) AddBootSequenceHealthChecks(checks ...healthz.HealthChecker) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. src/go/printer/testdata/declarations.golden

    }
    func _() int {
    	type T struct{}
    	var x T
    	return x
    }
    
    // making function declarations safe for new semicolon rules
    func _()	{ /* single-line function because of "short-ish" comment */ }
    func _() { /* multi-line function because of "long-ish" comment - much more comment text is following here */ /* and more */
    }
    
    func _() {
    	/* multi-line func because block is on multiple lines */
    }
    
    // test case for issue #19544
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/TimeoutFuture.java

           * need to clear our reference to the TimeoutFuture is the reason we use a *static* nested
           * class with a manual reference back to the "containing" class.)
           *
           * This has the nice-ish side effect of limiting reentrancy: run() calls
           * timeoutFuture.setException() calls run(). That reentrancy would already be harmless, since
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/TimeoutFuture.java

           * need to clear our reference to the TimeoutFuture is the reason we use a *static* nested
           * class with a manual reference back to the "containing" class.)
           *
           * This has the nice-ish side effect of limiting reentrancy: run() calls
           * timeoutFuture.setException() calls run(). That reentrancy would already be harmless, since
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. src/internal/coverage/cfile/testdata/harness.go

    		log.Fatalf("error: WriteCountersDir returns %v", err)
    	}
    }
    
    func emitToNonexistentDir() {
    	log.SetPrefix("emitToNonexistentDir: ")
    
    	want := []string{
    		"no such file or directory",             // linux-ish
    		"system cannot find the file specified", // windows
    		"does not exist",                        // plan9
    	}
    
    	checkWant := func(which string, got string) {
    		found := false
    		for _, w := range want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:41:02 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. src/go/printer/testdata/declarations.input

    }
    func _() int {
    	type T struct{}; var x T; return x
    }
    
    
    // making function declarations safe for new semicolon rules
    func _() { /* single-line function because of "short-ish" comment */ }
    func _() { /* multi-line function because of "long-ish" comment - much more comment text is following here */ /* and more */ }
    
    func _() {
    /* multi-line func because block is on multiple lines */ }
    
    // test case for issue #19544
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  10. src/internal/runtime/atomic/atomic_riscv64.s

    //
    //   - If both are set, the CPU may not reorder the instruction at all.
    //
    // These four modes correspond to other well-known memory models on other CPUs.
    // On ARM, aq corresponds to a dmb ishst, aq+rl corresponds to a dmb ish. On
    // Intel, aq corresponds to an lfence, rl to an sfence, and aq+rl to an mfence
    // (or a lock prefix).
    //
    // Go's memory model requires that
    //   - if a read happens after a write, the read must observe the write, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top