Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,111 for leastOf (0.11 sec)

  1. src/cmd/compile/internal/types2/unify.go

    		assert(!isTypeParam(y))
    		// x and y may be identical now
    		if x == y || Unalias(x) == Unalias(y) {
    			return true
    		}
    	}
    
    	// Cases where at least one of x or y is a type parameter recorded with u.
    	// If we have at least one type parameter, there is one in x.
    	// If we have exactly one type parameter, because it is in x,
    	// isTypeLit(x) is false and y was not changed above. In other
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. src/debug/gosym/symtab.go

    	lastf := 0
    	for i := 0; i < len(t.Syms); i++ {
    		sym := &t.Syms[i]
    		switch sym.Type {
    		case 'Z', 'z': // path symbol
    			if t.go12line != nil {
    				// Go 1.2 binaries have the file information elsewhere. Ignore.
    				break
    			}
    			// Finish the current object
    			if obj != nil {
    				obj.Funcs = t.Funcs[lastf:]
    			}
    			lastf = len(t.Funcs)
    
    			// Start new object
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  3. src/crypto/tls/tls.go

    	"internal/godebug"
    	"net"
    	"os"
    	"strings"
    )
    
    // Server returns a new TLS server side connection
    // using conn as the underlying transport.
    // The configuration config must be non-nil and must include
    // at least one certificate or else set GetCertificate.
    func Server(conn net.Conn, config *Config) *Conn {
    	c := &Conn{
    		conn:   conn,
    		config: config,
    	}
    	c.handshakeFn = c.serverHandshake
    	return c
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnectionPool.kt

            addressState.concurrentCallCapacity += connection.allocationLimit
          }
        }
    
        // Find the longest-idle connections in 2 categories:
        //
        //  1. OLD: Connections that have been idle for at least keepAliveDurationNs. We close these if
        //     we find them, regardless of what the address policies need.
        //
        //  2. EVICTABLE: Connections not required by any address policy. This matches connections that
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/DiscreteDomain.java

          }
        }
        return current;
      }
    
      /**
       * Returns the unique least value of type {@code C} that is greater than {@code value}, or {@code
       * null} if none exists. Inverse operation to {@link #previous}.
       *
       * @param value any value of type {@code C}
       * @return the least value greater than {@code value}, or {@code null} if {@code value} is {@code
       *     maxValue()}
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. src/testing/benchmark.go

    func (b *B) launch() {
    	// Signal that we're done whether we return normally
    	// or by FailNow's runtime.Goexit.
    	defer func() {
    		b.signal <- true
    	}()
    
    	// Run the benchmark for at least the specified amount of time.
    	if b.benchTime.n > 0 {
    		// We already ran a single iteration in run1.
    		// If -benchtime=1x was requested, use that result.
    		// See https://golang.org/issue/32051.
    		if b.benchTime.n > 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/ConnectionSpecTest.kt

            .isEqualTo("At least one TLS version is required")
        }
      }
    
      @Test
      fun noCipherSuites() {
        assertFailsWith<IllegalArgumentException> {
          ConnectionSpec.Builder(ConnectionSpec.MODERN_TLS)
            .cipherSuites(*arrayOf<CipherSuite>())
            .build()
        }.also { expected ->
          assertThat(expected.message)
            .isEqualTo("At least one cipher suite is required")
        }
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  8. pkg/controller/statefulset/stateful_set.go

    	podLister corelisters.PodLister
    	// podListerSynced returns true if the pod shared informer has synced at least once
    	podListerSynced cache.InformerSynced
    	// setLister is able to list/get stateful sets from a shared informer's store
    	setLister appslisters.StatefulSetLister
    	// setListerSynced returns true if the stateful set shared informer has synced at least once
    	setListerSynced cache.InformerSynced
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/validation/validation.go

    		return append(allErrors, field.Invalid(fldPath, name, strings.Join(errs, ",")))
    	}
    	if len(strings.Split(name, ".")) < 3 {
    		return append(allErrors, field.Invalid(fldPath, name, "should be a domain with at least three segments separated by dots"))
    	}
    	return allErrors
    }
    
    // IsFullyQualifiedDomainName checks if the domain name is fully qualified. This
    // is similar to IsFullyQualifiedName but only requires a minimum of 2 segments
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 16:08:43 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/README

    	find lines in the stderr buffer that match a pattern
    
    	The command succeeds if at least one match (or the exact
    	count, if given) is found.
    	The -q flag suppresses printing of matches.
    
    stdout [-count=N] [-q] 'pattern' file
    	find lines in the stdout buffer that match a pattern
    
    	The command succeeds if at least one match (or the exact
    	count, if given) is found.
    	The -q flag suppresses printing of matches.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top