Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,213 for Maximum (0.12 sec)

  1. doc/next/6-stdlib/99-minor/runtime/pprof/43669.md

    The maximum stack depth for alloc, mutex, block, threadcreate and goroutine
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:45 UTC 2024
    - 124 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/lift_quantizable_spots_as_functions.mlir

      %3 = stablehlo.maximum %2, %1 : tensor<1x3x3x4xf32>
      func.return %3: tensor<1x3x3x4xf32>
    }
    // CHECK: %[[CONST_0:.*]] = stablehlo.constant dense<2.000000e+00>
    // CHECK: %[[CONST_1:.*]] = stablehlo.constant dense<2.000000e+00>
    // CHECK: %[[XLA_CALL_MODULE:.*]] = "tf.XlaCallModule"(%arg0, %[[CONST_0]])
    // CHECK: %[[MAX:.*]] = stablehlo.maximum %[[XLA_CALL_MODULE]], %[[CONST_1]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Util.h

    /** @addtogroup Framework
     * @{
     */
    
    #ifndef CUNIT_UTIL_H_SEEN
    #define CUNIT_UTIL_H_SEEN
    
    #include "CUnit.h"
    
    #ifdef __cplusplus
    extern "C" {
    #endif
    
    #define CUNIT_MAX_ENTITY_LEN 5
    /**< Maximum number of characters in a translated xml entity. */
    
    CU_EXPORT size_t CU_translate_special_characters(const char *szSrc, char *szDest, size_t maxlen);
    /**< 
     *  Converts special characters in szSrc to xml entity codes and stores 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/route/sys_openbsd.go

    	switch typ {
    	case syscall.NET_RT_STATS, syscall.NET_RT_TABLE:
    		return false
    	default:
    		return true
    	}
    }
    
    // RouteMetrics represents route metrics.
    type RouteMetrics struct {
    	PathMTU int // path maximum transmission unit
    }
    
    // SysType implements the SysType method of Sys interface.
    func (rmx *RouteMetrics) SysType() SysType { return SysMetrics }
    
    // Sys implements the Sys method of Message interface.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  5. pkg/keepalive/options.go

    package keepalive
    
    import (
    	"math"
    	"time"
    
    	"github.com/spf13/cobra"
    	"google.golang.org/grpc"
    	"google.golang.org/grpc/keepalive"
    
    	"istio.io/istio/pkg/env"
    )
    
    const (
    	// Infinity is the maximum possible duration for keepalive values
    	Infinity = time.Duration(math.MaxInt64)
    )
    
    var (
    	// grpcKeepaliveInterval sets the gRPC KeepAlive Interval
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/tests/optimize_layout.mlir

    // CHECK:                 window_strides = array<i64: 1, 2, 2, 1>}> ({
    // CHECK:           ^bb0(%[[ARG0:.*]]: tensor<f32>, %[[ARG1:.*]]: tensor<f32>):
    // CHECK:             %[[MAX:.*]] = stablehlo.maximum %[[ARG0]], %[[ARG1]] : tensor<f32>
    // CHECK:             stablehlo.return %[[MAX]] : tensor<f32>
    // CHECK:           }) : (tensor<1x114x114x64xf32>, tensor<f32>) -> tensor<1x56x56x64xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 21:59:06 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. platforms/jvm/jacoco/src/test/groovy/org/gradle/internal/jacoco/rules/JacocoViolationRuleImplTest.groovy

                void execute(JacocoLimit jacocoLimit) {
                    jacocoLimit.with {
                        counter = 'CLASS'
                        value = 'TOTALCOUNT'
                        minimum = 0.0
                        maximum = 1.0
                    }
                }
            })
    
            then:
            rule.limits.size() == 1
            rule.limits[0] == limit
    
            when:
            limit = rule.limit(new Action<JacocoLimit>() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. internal/config/heal/help.go

    			Type:        "on|off",
    		},
    		config.HelpKV{
    			Key:         Sleep,
    			Description: `maximum sleep duration between objects to slow down heal operation` + defaultHelpPostfix(Sleep),
    			Optional:    true,
    			Type:        "duration",
    		},
    		config.HelpKV{
    			Key:         IOCount,
    			Description: `maximum IO requests allowed between objects to slow down heal operation` + defaultHelpPostfix(IOCount),
    			Optional:    true,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 11 21:48:54 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/ratcheting_test.go

    	SchemaProps: spec.SchemaProps{
    		Type:    spec.StringOrArray{"number"},
    		Minimum: ptr(float64(0)),
    		Maximum: ptr(float64(0)),
    	},
    }
    
    var smallIntSchema *spec.Schema = &spec.Schema{
    	SchemaProps: spec.SchemaProps{
    		Type:    spec.StringOrArray{"number"},
    		Maximum: ptr(float64(50)),
    	},
    }
    
    var mediumIntSchema *spec.Schema = &spec.Schema{
    	SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 18:20:09 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. gradlew

    APP_BASE_NAME=${0##*/}
    # Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
    APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
    
    # Use the maximum available, or set MAX_FD != -1 to use that value.
    MAX_FD=maximum
    
    warn () {
        echo "$*"
    } >&2
    
    die () {
        echo
        echo "$*"
        echo
        exit 1
    } >&2
    
    # OS specific support (must be 'true' or 'false').
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 11:20:16 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top