Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 109 for Maximum (0.36 sec)

  1. src/crypto/tls/common.go

    	}
    }
    
    const (
    	maxPlaintext               = 16384        // maximum plaintext payload length
    	maxCiphertext              = 16384 + 2048 // maximum ciphertext payload length
    	maxCiphertextTLS13         = 16384 + 256  // maximum ciphertext length in TLS 1.3
    	recordHeaderLen            = 5            // record header length
    	maxHandshake               = 65536        // maximum handshake we support (protocol max is 16 MB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1/types.go

    	// This is helpful in being able to do a canary based deployment. The default value is 0.
    	// +optional
    	Partition *int32 `json:"partition,omitempty" protobuf:"varint,1,opt,name=partition"`
    	// The maximum number of pods that can be unavailable during the update.
    	// Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
    	// Absolute number is calculated from percentage by rounding up. This can not be 0.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  3. src/crypto/tls/conn.go

    	tcpMSSEstimate = 1208
    
    	// recordSizeBoostThreshold is the number of bytes of application data
    	// sent after which the TLS record size will be increased to the
    	// maximum.
    	recordSizeBoostThreshold = 128 * 1024
    )
    
    // maxPayloadSizeForWrite returns the maximum TLS payload size to use for the
    // next application data record. There is the following trade-off:
    //
    //   - For latency-sensitive applications, such as web browsing, each TLS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1beta2/types.go

    	// This is helpful in being able to do a canary based deployment. The default value is 0.
    	// +optional
    	Partition *int32 `json:"partition,omitempty" protobuf:"varint,1,opt,name=partition"`
    	// The maximum number of pods that can be unavailable during the update.
    	// Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
    	// Absolute number is calculated from percentage by rounding up. This can not be 0.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/tests/replace_cast_hacks_with_tf_xla_ops.mlir

        %11 = "tf.Cast"(%10) {Truncate = false} : (tensor<1x3x2x2xf32>) -> tensor<1x3x2x2xi32>
        %12 = "tf.AddV2"(%11, %arg10) : (tensor<1x3x2x2xi32>, tensor<i32>) -> tensor<1x3x2x2xi32>
        %13 = "tf.Maximum"(%cst_0, %arg10) : (tensor<i32>, tensor<i32>) -> tensor<i32>
        %14 = "tf.ClipByValue"(%12, %13, %cst) : (tensor<1x3x2x2xi32>, tensor<i32>, tensor<i32>) -> tensor<1x3x2x2xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 81K bytes
    - Viewed (0)
  6. tensorflow/cc/gradients/math_grad.cc

        return BinaryGradCommon(scope, op, grad_outputs, gx_1, gy_1);
      }
    }
    REGISTER_GRADIENT_OP("Pow", PowGrad);
    
    // MaximumMinimumGradCommon adds shared ops to calculate gradients for
    // the binary Maximum and Minimum ops.
    Status MaximumMinimumGradCommon(const Scope& scope, const Operation& op,
                                    const std::vector<Output>& grad_inputs,
                                    std::vector<Output>* grad_outputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  7. pkg/apis/admissionregistration/types.go

    	// Match conditions filter requests that have already been matched by the rules,
    	// namespaceSelector, and objectSelector. An empty list of matchConditions matches all requests.
    	// There are a maximum of 64 match conditions allowed.
    	//
    	// If a parameter object is provided, it can be accessed via the `params` handle in the same
    	// manner as validation expressions.
    	//
    	// The exact matching logic is (in order):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  8. src/runtime/malloc.go

    	// We want to cache 2KB, 4KB, 8KB, and 16KB stacks. Larger stacks
    	// will be allocated directly.
    	// Since FixedStack is different on different systems, we
    	// must vary NumStackOrders to keep the same maximum cached size.
    	//   OS               | FixedStack | NumStackOrders
    	//   -----------------+------------+---------------
    	//   linux/darwin/bsd | 2KB        | 4
    	//   windows/32       | 4KB        | 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/zz_generated.conversion.go

    		*out = new(apiextensions.JSON)
    		if err := Convert_v1_JSON_To_apiextensions_JSON(*in, *out, s); err != nil {
    			return err
    		}
    	} else {
    		out.Default = nil
    	}
    	out.Maximum = (*float64)(unsafe.Pointer(in.Maximum))
    	out.ExclusiveMaximum = in.ExclusiveMaximum
    	out.Minimum = (*float64)(unsafe.Pointer(in.Minimum))
    	out.ExclusiveMinimum = in.ExclusiveMinimum
    	out.MaxLength = (*int64)(unsafe.Pointer(in.MaxLength))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/zz_generated.conversion.go

    		*out = new(apiextensions.JSON)
    		if err := Convert_v1beta1_JSON_To_apiextensions_JSON(*in, *out, s); err != nil {
    			return err
    		}
    	} else {
    		out.Default = nil
    	}
    	out.Maximum = (*float64)(unsafe.Pointer(in.Maximum))
    	out.ExclusiveMaximum = in.ExclusiveMaximum
    	out.Minimum = (*float64)(unsafe.Pointer(in.Minimum))
    	out.ExclusiveMinimum = in.ExclusiveMinimum
    	out.MaxLength = (*int64)(unsafe.Pointer(in.MaxLength))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 71.5K bytes
    - Viewed (0)
Back to top