Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 85 for numeric (0.12 sec)

  1. src/time/format.go

    	stdNumTZ                                       // "-0700"  // always numeric
    	stdNumSecondsTz                                // "-070000"
    	stdNumShortTZ                                  // "-07"    // always numeric
    	stdNumColonTZ                                  // "-07:00" // always numeric
    	stdNumColonSecondsTZ                           // "-07:00:00"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    	LabelTags TagMap
    
    	// NumericTags provide additional values for subsets of a sample.
    	// Numeric tags are optionally associated to a label tag. The key
    	// for NumericTags is the name of the LabelTag they are associated
    	// to, or "" for numeric tags not associated to a label tag.
    	NumericTags map[string]TagMap
    }
    
    // FlatValue returns the exclusive value for this node, computing the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  3. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/package-info.java

     * <p>
     *  Each single {@link org.gradle.internal.serialize.graph.codecs.Binding binding} comprises:
     *  <ul>
     *     <li>a tag (a unique numeric identifier that represents the type the binding supports)
     *     <li>the {@link org.gradle.internal.serialize.graph.EncodingProvider encoding provider} {@link org.gradle.internal.serialize.graph.EncodingProvider producer}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. samples/bookinfo/src/details/details.rb

    server.mount_proc '/details' do |req, res|
        pathParts = req.path.split('/')
        headers = get_forward_headers(req)
    
        begin
            begin
              id = Integer(pathParts[-1])
            rescue
              raise 'please provide numeric product id'
            end
            details = get_book_details(id, headers)
            res.body = details.to_json
            res['Content-Type'] = 'application/json'
        rescue => error
            res.body = {'error' => error}.to_json
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/device_util.h

    #ifndef TENSORFLOW_COMPILER_JIT_DEVICE_UTIL_H_
    #define TENSORFLOW_COMPILER_JIT_DEVICE_UTIL_H_
    
    #include <functional>
    #include <memory>
    
    #include "absl/container/flat_hash_map.h"
    #include "absl/numeric/bits.h"
    #include "absl/strings/string_view.h"
    #include "absl/types/span.h"
    #include "tensorflow/compiler/tf2xla/xla_op_registry.h"
    #include "xla/status_macros.h"
    #include "xla/statusor.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 17:18:31 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. pkg/proxy/util/utils.go

    	}
    
    	// Append port to address.
    	if ip.To4() != nil {
    		return fmt.Sprintf("%s:%d", addr, port)
    	}
    	return fmt.Sprintf("[%s]:%d", addr, port)
    }
    
    // EnsureSysctl sets a kernel sysctl to a given numeric value.
    func EnsureSysctl(sysctl utilsysctl.Interface, name string, newVal int) error {
    	if oldVal, _ := sysctl.GetSysctl(name); oldVal != newVal {
    		if err := sysctl.SetSysctl(name, newVal); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. src/go/types/predicates.go

    }
    
    // isUntypedNumeric reports whether t is an untyped numeric type.
    // Safe to call from types that are not fully set up.
    func isUntypedNumeric(t Type) bool {
    	// Alias and named types cannot denote untyped types
    	// so there's no need to call Unalias or under, below.
    	b, _ := t.(*Basic)
    	return b != nil && b.info&IsUntyped != 0 && b.info&IsNumeric != 0
    }
    
    // IsInterface reports whether t is an interface type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/predicates.go

    	return !isTyped(t)
    }
    
    // isUntypedNumeric reports whether t is an untyped numeric type.
    // Safe to call from types that are not fully set up.
    func isUntypedNumeric(t Type) bool {
    	// Alias and named types cannot denote untyped types
    	// so there's no need to call Unalias or under, below.
    	b, _ := t.(*Basic)
    	return b != nil && b.info&IsUntyped != 0 && b.info&IsNumeric != 0
    }
    
    // IsInterface reports whether t is an interface type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  9. cmd/endpoint-ellipses_test.go

    		{"", []string{}, false},
    		// Range cannot be negative.
    		{":9000", []string{"/export1{-1...1}"}, false},
    		// Range cannot start bigger than end.
    		{":9000", []string{"/export1{64...1}"}, false},
    		// Range can only be numeric.
    		{":9000", []string{"/export1{a...z}"}, false},
    		// Duplicate disks not allowed.
    		{":9000", []string{"/export1{1...32}", "/export1{1...32}"}, false},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/utils/tf_to_xla_attribute_utils.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    
    #include <algorithm>
    #include <numeric>
    #include <string>
    
    #include "absl/algorithm/container.h"
    #include "absl/strings/str_format.h"
    #include "llvm/ADT/ArrayRef.h"
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top