Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 518 for numeric (0.57 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/validation/validation.go

    func IsValidPortName(port string) []string {
    	var errs []string
    	if len(port) > 15 {
    		errs = append(errs, MaxLenError(15))
    	}
    	if !portNameCharsetRegex.MatchString(port) {
    		errs = append(errs, "must contain only alpha-numeric characters (a-z, 0-9), and hyphens (-)")
    	}
    	if !portNameOneLetterRegexp.MatchString(port) {
    		errs = append(errs, "must contain at least one letter (a-z)")
    	}
    	if strings.Contains(port, "--") {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 16:08:43 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. internal/s3select/sql/evaluate.go

    	lval, lerr := e.Left.evalNode(r, tableAlias)
    	if lerr != nil || len(e.Right) == 0 {
    		return lval, lerr
    	}
    
    	// Process remaining child nodes - result must be
    	// numeric. This AST node is for terms separated by + or -
    	// symbols.
    	for _, rightTerm := range e.Right {
    		op := rightTerm.Op
    		rval, rerr := rightTerm.Right.evalNode(r, tableAlias)
    		if rerr != nil {
    			return nil, rerr
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 12K bytes
    - Viewed (0)
  3. test/const.go

    // run
    
    // Copyright 2009 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.
    
    // Test simple boolean and numeric constants.
    
    package main
    
    import "os"
    
    const (
    	c0      = 0
    	cm1     = -1
    	chuge   = 1 << 100
    	chuge_1 = chuge - 1
    	c1      = chuge >> 100
    	c3div2  = 3 / 2
    	c1e3    = 1e3
    
    	rsh1 = 1e100 >> 1000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 26 23:54:29 UTC 2019
    - 4.8K bytes
    - Viewed (0)
  4. 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)
  5. pilot/pkg/model/envoyfilter_test.go

    			map[string]bool{
    				"1.19":         true,
    				"1.19.0":       true,
    				"1.19-dev.foo": true,
    				"1.5":          false,
    				"11.19":        true,
    				"foo1.19":      true,
    			},
    		},
    		{
    			"non-numeric",
    			&networking.EnvoyFilter{
    				ConfigPatches: []*networking.EnvoyFilter_EnvoyConfigObjectPatch{
    					{
    						Patch: &networking.EnvoyFilter_Patch{},
    						Match: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 27 04:20:28 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_remaining_ops.cc

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_remaining_ops.h"
    
    #include <algorithm>
    #include <cstdint>
    #include <functional>
    #include <limits>
    #include <numeric>
    #include <optional>
    #include <string>
    #include <tuple>
    #include <type_traits>
    
    #include "llvm/ADT/APFloat.h"
    #include "llvm/ADT/APInt.h"
    #include "llvm/ADT/ArrayRef.h"
    #include "llvm/ADT/STLExtras.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 20:05:58 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. src/runtime/string_test.go

    				test.in, out, ok, test.out, test.ok)
    		}
    	}
    }
    
    func TestParseByteCount(t *testing.T) {
    	for _, test := range []struct {
    		in  string
    		out int64
    		ok  bool
    	}{
    		// Good numeric inputs.
    		{"1", 1, true},
    		{"12345", 12345, true},
    		{"012345", 12345, true},
    		{"98765432100", 98765432100, true},
    		{"9223372036854775807", 1<<63 - 1, true},
    
    		// Good trivial suffix inputs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 13 14:05:23 UTC 2022
    - 13.3K bytes
    - Viewed (0)
Back to top