Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 518 for numeric (0.17 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/net/port_split.go

    //
    // Name must be non-empty or valid will be returned false.
    // Scheme must be "http" or "https" if specified
    // Port is returned as a string, and it is not required to be numeric (could be
    // used for a named port, for example).
    func SplitSchemeNamePort(id string) (scheme, name, port string, valid bool) {
    	parts := strings.Split(id, ":")
    	switch len(parts) {
    	case 1:
    		name = parts[0]
    	case 2:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/gradient_checker.cc

          scope, xs, x_shapes, *x_datas, ys, y_shapes, &jacobian_ts)));
    
      // Initialize numeric Jacobian to zeros.
      std::vector<Tensor> jacobian_ns;
      InitJacobians<X_T, Y_T, JAC_T>(xs, x_shapes, y_shapes, &jacobian_ns);
    
      // Compute numeric Jacobian.
      TF_RETURN_IF_ERROR((ComputeNumericJacobianTranspose<X_T, Y_T, JAC_T>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/cel/environment/environment_test.go

    			},
    		},
    		{
    			name: "cross numeric comparisons disabled",
    			typeVersionCombinations: []envTypeAndVersion{
    				{version.MajorMinor(1, 27), NewExpressions},
    				// always enabled for StoredExpressions
    			},
    			invalidExpressions: []string{"1.5 > 1"},
    		},
    		{
    			name: "cross numeric comparisons enabled",
    			typeVersionCombinations: []envTypeAndVersion{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. samples/bookinfo/src/ratings/ratings.js

      var productId = parseInt(productIdStr)
      var ratings = {}
    
      if (Number.isNaN(productId)) {
        res.writeHead(400, {'Content-type': 'application/json'})
        res.end(JSON.stringify({error: 'please provide numeric product ID'}))
        return
      }
    
      try {
        ratings = JSON.parse(req.body)
      } catch (error) {
        res.writeHead(400, {'Content-type': 'application/json'})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 02 00:29:57 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  5. build/build-image/rsyncd.sh

      USER_CONFIG="  uid = 0"$'\n'"  gid = 0"
    fi
    
    cat <<EOF >"${CONFFILE}"
    pid file = ${PIDFILE}
    use chroot = no
    log file = /dev/stdout
    reverse lookup = no
    munge symlinks = no
    port = 8730
    [k8s]
      numeric ids = true
      $USER_CONFIG
      hosts deny = *
      hosts allow = ${ALLOW} ${ALLOW_HOST-}
      auth users = k8s
      secrets file = ${SECRETS}
      read only = false
      path = ${VOLUME}
      filter = - /_tmp/
    EOF
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 04 15:58:52 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/infeed_ops_xla_adjust_layout.cc

    limitations under the License.
    ==============================================================================*/
    
    #include <algorithm>
    #include <cstdint>
    #include <memory>
    #include <numeric>
    #include <vector>
    
    #include "absl/types/span.h"
    #include "llvm/ADT/StringRef.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. test/fixedbugs/issue19658.go

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // ensure that panic(x) where x is a numeric type displays a readable number
    package main
    
    import (
    	"bytes"
    	"fmt"
    	"io/ioutil"
    	"log"
    	"os"
    	"os/exec"
    	"path/filepath"
    )
    
    const fn = `
    package main
    
    import  "errors"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:56:32 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. tensorflow/cc/framework/gradient_checker.h

    #include "tensorflow/cc/framework/scope.h"
    #include "tensorflow/core/framework/tensor.h"
    
    namespace tensorflow {
    
    /// Returns in 'max_error' the maximum element-wise error for dy/dx between the
    /// computed and numeric Jacobian matrices where 'xs' and 'ys' are tensors.
    /// X_T and Y_T are the c++ types for the x and y tensors, and JAC_T is a
    /// real-valued type to store the Jacobian derivatives dy/dx.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 15:35:17 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  9. internal/s3select/sql/aggregation.go

    		// updated.
    		return nil
    	}
    
    	argVal := val
    	if funcName != aggFnCount {
    		// All aggregation functions, except COUNT require a
    		// numeric argument.
    
    		// Here, we diverge from Amazon S3 behavior by
    		// inferring untyped values are numbers.
    		if !argVal.isNumeric() {
    			if i, ok := argVal.bytesToInt(); ok {
    				argVal.setInt(i)
    			} else if f, ok := argVal.bytesToFloat(); ok {
    				argVal.setFloat(f)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/SID.java

    package jcifs.smb1.smb1;
    
    import java.util.*;
    
    import jcifs.smb1.dcerpc.*;
    import jcifs.smb1.dcerpc.msrpc.*;
    import jcifs.smb1.util.Hexdump;
    
    import java.io.IOException;
    
    /**
     * A Windows SID is a numeric identifier used to represent Windows
     * accounts. SIDs are commonly represented using a textual format such as
     * <tt>S-1-5-21-1496946806-2192648263-3843101252-1029</tt> but they may
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 26.6K bytes
    - Viewed (0)
Back to top