Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 5,357 for Most (0.05 sec)

  1. test/fixedbugs/issue50372.go

            for range s {}
            for i = range s {}
            for i, j = range s {}
            for i, j, k = range s {} // ERROR "range clause permits at most two iteration variables"
            for i, j, k, l = range s {} // ERROR "range clause permits at most two iteration variables"
    }
    
    func _(s chan int) {
            var i, j, k, l int
            _, _, _, _ = i, j, k, l
    
            for range s {}
            for i = range s {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 959 bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/tls/OkHostnameVerifier.kt

      private const val ALT_IPA_NAME = 7
    
      override fun verify(
        host: String,
        session: SSLSession,
      ): Boolean {
        return if (!host.isAscii()) {
          false
        } else {
          try {
            verify(host, session.peerCertificates[0] as X509Certificate)
          } catch (_: SSLException) {
            false
          }
        }
      }
    
      fun verify(
        host: String,
        certificate: X509Certificate,
      ): Boolean {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/Dns.kt

     */
    package okhttp3
    
    import java.net.InetAddress
    import java.net.UnknownHostException
    import okhttp3.Dns.Companion.SYSTEM
    
    /**
     * A domain name service that resolves IP addresses for host names. Most applications will use the
     * [system DNS service][SYSTEM], which is the default. Some applications may provide their own
     * implementation to use a different DNS server, to prefer IPv6 addresses, to prefer IPv4 addresses,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. src/runtime/race/sched_test.go

    //go:build race
    
    package race_test
    
    import (
    	"fmt"
    	"reflect"
    	"runtime"
    	"strings"
    	"testing"
    )
    
    func TestRandomScheduling(t *testing.T) {
    	// Scheduler is most consistent with GOMAXPROCS=1.
    	// Use that to make the test most likely to fail.
    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(1))
    	const N = 10
    	out := make([][]int, N)
    	for i := 0; i < N; i++ {
    		c := make(chan int, N)
    		for j := 0; j < N; j++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 08 13:27:43 UTC 2022
    - 977 bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/util/internal/TreeVisitor.java

        /**
         * Visits a node of the tree.
         */
        public void node(T node) {
        }
    
        /**
         * Starts visiting the children of the most recently visited node.
         */
        public void startChildren() {
        }
    
        /**
         * Finishes visiting the children of the most recently started node.
         */
        public void endChildren() {
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:11 UTC 2021
    - 1K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/test_fuzz_multiple.txt

    go test ./...
    
    # With fuzzing enabled, at most one package may be tested,
    # even if only one package contains fuzz targets.
    ! go test -fuzz=. ./...
    stderr '^cannot use -fuzz flag with multiple packages$'
    ! go test -fuzz=. ./zero ./one
    stderr '^cannot use -fuzz flag with multiple packages$'
    go test -fuzz=. -fuzztime=1x ./one
    
    # With fuzzing enabled, at most one target in the same package may match.
    ! go test -fuzz=. ./two
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/resolver/KotlinBuildScriptModelRepositoryTest.kt

    import java.util.concurrent.TimeUnit
    
    import kotlin.coroutines.Continuation
    
    
    class KotlinBuildScriptModelRepositoryTest {
    
        @Test
        fun `cancels older requests before returning response to most recent request`() = runBlockingWithTimeout {
    
            // given:
            // Notice the project directory is never written to by the test so its path is immaterial
            val projectDir = File("/project-dir")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  8. src/runtime/internal/sys/consts.go

    // DefaultPhysPageSize is the default physical page size.
    const DefaultPhysPageSize = goarch.DefaultPhysPageSize
    
    // PCQuantum is the minimal unit for a program counter (1 on x86, 4 on most other systems).
    // The various PC tables record PC deltas pre-divided by PCQuantum.
    const PCQuantum = goarch.PCQuantum
    
    // Int64Align is the required alignment for a 64-bit integer (4 on 32-bit systems, 8 on 64-bit).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 16:26:25 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/events/v1beta1/types_swagger_doc_generated.go

    	"action":                   "action is what action was taken/failed regarding to the regarding object. It is machine-readable. This field can have at most 128 characters.",
    	"reason":                   "reason is why the action was taken. It is human-readable. This field can have at most 128 characters.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. guava/src/com/google/common/cache/RemovalListener.java

     * Implementations of this interface should avoid performing blocking calls or synchronizing on
     * shared resources.
     *
     * @param <K> the most general type of keys this listener can listen for; for example {@code Object}
     *     if any key is acceptable
     * @param <V> the most general type of values this listener can listen for; for example {@code
     *     Object} if any key is acceptable
     * @author Charles Fry
     * @since 10.0
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 2K bytes
    - Viewed (0)
Back to top