Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 2,615 for mean_t (0.09 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/filters/with_retry_after.go

    		if !send || isRequestExemptFn(req) {
    			handler.ServeHTTP(w, req)
    			return
    		}
    
    		// If we are here this means it's time to send Retry-After response
    		//
    		// Copied from net/http2 library
    		// "Connection" headers aren't allowed in HTTP/2 (RFC 7540, 8.1.2.2),
    		// but respect "Connection" == "close" to mean sending a GOAWAY and tearing
    		// down the TCP connection when idle, like we do for HTTP/1.
    		if params.TearDownConnection {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 31 14:10:46 UTC 2021
    - 4.9K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testsanitizers/testdata/msan4.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    // The memory profiler can call copy from a slice on the system stack,
    // which msan used to think meant a reference to uninitialized memory.
    
    /*
    #include <time.h>
    #include <unistd.h>
    
    extern void Nop(char*);
    
    // Use weak as a hack to permit defining a function even though we use export.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 878 bytes
    - Viewed (0)
  3. dbflute_fess/dfprop/conditionBeanMap.dfprop

    #              , EmptyString, FromTo, DateFromTo, RangeOf, ...
    #              , (and prefix '!' means excluding, '%' means reviving)
    # table: table name (hint) or $$ALL$$
    # column: column name (hint) or $$CommonColumn$$ or $$VersionNo$$
    #
    # Example:
    # map:{
    #     # This means that String includes GreaterThan at MEMBER.MEMBER_ACCOUNT only
    #     # and LessThan at PRODUCT.PRODUCT_NAME and PRODUCT.PRODUCT_HANDLE_CODE,
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 4K bytes
    - Viewed (0)
  4. src/runtime/malloc.go

    // the specified mean.
    func fastexprand(mean int) int32 {
    	// Avoid overflow. Maximum possible step is
    	// -ln(1/(1<<randomBitCount)) * mean, approximately 20 * mean.
    	switch {
    	case mean > 0x7000000:
    		mean = 0x7000000
    	case mean == 0:
    		return 0
    	}
    
    	// Take a random sample of the exponential distribution exp(-mean*x).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/format/LogHeaderFormatter.java

    import org.gradle.internal.logging.events.StyledTextOutputEvent;
    
    import java.util.List;
    
    public interface LogHeaderFormatter {
        /**
         * Given a message, return possibly-styled output for displaying message meant to categorize
         * other messages "below" it, if any.
         */
        List<StyledTextOutputEvent.Span> format(String description, String status, boolean failed);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. security/pkg/pki/error/error.go

    type ErrType int
    
    const (
    	// CANotReady means the CA is not ready to sign CSRs.
    	CANotReady ErrType = iota
    	// CSRError means the CA cannot sign CSR due to CSR error.
    	CSRError
    	// TTLError means the required TTL is invalid.
    	TTLError
    	// CertGenError means an error happened during the certificate generation.
    	CertGenError
    	// CAIllegalConfig means the configuration/deployment parameters for CA are incorrect
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 13 17:41:21 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  7. src/compress/lzw/reader.go

    import (
    	"bufio"
    	"errors"
    	"fmt"
    	"io"
    )
    
    // Order specifies the bit ordering in an LZW data stream.
    type Order int
    
    const (
    	// LSB means Least Significant Bits first, as used in the GIF file format.
    	LSB Order = iota
    	// MSB means Most Significant Bits first, as used in the TIFF and PDF
    	// file formats.
    	MSB
    )
    
    const (
    	maxWidth           = 12
    	decoderInvalidCode = 0xffff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:39 UTC 2023
    - 8K bytes
    - Viewed (0)
  8. platforms/ide/problems-api/src/main/java/org/gradle/internal/problems/failure/StackTraceClassifier.java

     */
    
    package org.gradle.internal.problems.failure;
    
    import javax.annotation.Nullable;
    
    /**
     * Classifies stack frames by their {@link StackTraceRelevance relevance}.
     * <p>
     * Classifiers are meant to be heuristic, determining the relevance on the best-effort basis.
     */
    public interface StackTraceClassifier {
    
        StackTraceClassifier USER_CODE = new StackTraceClassifier() {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:52:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. hack/generate-docs.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This file is not intended to be run automatically. It is meant to be run
    # immediately before exporting docs. We do not want to check these documents in
    # by default.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_HACK_ROOT=$(dirname "${BASH_SOURCE[0]}")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 25 03:38:56 UTC 2019
    - 1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/compilation_timer.h

    #define TENSORFLOW_COMPILER_MLIR_TF2XLA_INTERNAL_COMPILATION_TIMER_H_
    
    #include <chrono>  // NOLINT(build/c++11)
    
    #include "tensorflow/core/platform/profile_utils/cpu_utils.h"
    
    // Time the execution of kernels (in CPU cycles). Meant to be used as RAII.
    struct CompilationTimer {
      uint64_t start_cycles =
          tensorflow::profile_utils::CpuUtils::GetCurrentClockCycle();
    
      uint64_t ElapsedCycles() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 23 04:52:21 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top