Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 85 for numeric (0.59 sec)

  1. pkg/kubelet/kubelet_volumes.go

    		}
    		if cleanupFailed {
    			errorPods++
    		}
    	}
    
    	logSpew := func(errs []error) {
    		if len(errs) > 0 {
    			klog.ErrorS(errs[0], "There were many similar errors. Turn up verbosity to see them.", "numErrs", len(errs))
    			for _, err := range errs {
    				klog.V(5).InfoS("Orphan pod", "err", err)
    			}
    		}
    	}
    	logSpew(orphanVolumeErrors)
    	logSpew(orphanRemovalErrors)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    		return nil, errors.New("malformed response from server: missing status pseudo header")
    	}
    	statusCode, err := strconv.Atoi(status)
    	if err != nil {
    		return nil, errors.New("malformed response from server: malformed non-numeric status pseudo header")
    	}
    
    	regularFields := f.RegularFields()
    	strs := make([]string, len(regularFields))
    	header := make(Header, len(regularFields))
    	res := &Response{
    		Proto:      "HTTP/2.0",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  3. ChangeLog.md

    - [`KT-59387`](https://youtrack.jetbrains.com/issue/KT-59387) K2: Missing NO_CONSTRUCTOR
    - [`KT-22499`](https://youtrack.jetbrains.com/issue/KT-22499) Missing error on 'x == y' for different numeric types inferred from smart casts
    - [`KT-56867`](https://youtrack.jetbrains.com/issue/KT-56867) Green in K1 -> red in K2 for unsound code. `catch_end` to `good_finally` data flow
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_ops.td

        Note: this kernel is used for CPU tensors.
    
        Converts a fallback tensor to a bool with the following rules:
    
        - For 0D tensors, truthiness is determined by comparing against a "zero"
          value. For numerical types it is the obvious zero. For strings it is the
          empty string.
    
        - For >0D tensors, truthiness is determined by looking at the number of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/analysisinternal/analysis.go

    	// Named and Alias, it also removes TypeParam.
    	if n, ok := under.(*types.Named); ok {
    		under = n.Underlying()
    	}
    	switch under := under.(type) {
    	case *types.Basic:
    		switch {
    		case under.Info()&types.IsNumeric != 0:
    			return &ast.BasicLit{Kind: token.INT, Value: "0"}
    		case under.Info()&types.IsBoolean != 0:
    			return &ast.Ident{Name: "false"}
    		case under.Info()&types.IsString != 0:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. src/go/types/builtins.go

    			//    same type to succeed (this will result in an error
    			//    because shifts of floats are not permitted)
    			if x.mode == constant_ && y.mode == constant_ {
    				toFloat := func(x *operand) {
    					if isNumeric(x.typ) && constant.Sign(constant.Imag(x.val)) == 0 {
    						x.typ = Typ[UntypedFloat]
    					}
    				}
    				toFloat(x)
    				toFloat(y)
    			} else {
    				check.convertUntyped(x, Typ[Float64])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/builtins.go

    			//    same type to succeed (this will result in an error
    			//    because shifts of floats are not permitted)
    			if x.mode == constant_ && y.mode == constant_ {
    				toFloat := func(x *operand) {
    					if isNumeric(x.typ) && constant.Sign(constant.Imag(x.val)) == 0 {
    						x.typ = Typ[UntypedFloat]
    					}
    				}
    				toFloat(x)
    				toFloat(y)
    			} else {
    				check.convertUntyped(x, Typ[Float64])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/networking/v1/types.go

    	// +optional
    	Protocol *v1.Protocol `json:"protocol,omitempty" protobuf:"bytes,1,opt,name=protocol,casttype=k8s.io/api/core/v1.Protocol"`
    
    	// port represents the port on the given protocol. This can either be a numerical or named
    	// port on a pod. If this field is not provided, this matches all port names and
    	// numbers.
    	// If present, only traffic on the specified protocol AND port will be matched.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  9. src/encoding/asn1/marshal.go

    		}
    	}
    
    	return stringEncoder(s), nil
    }
    
    func makeNumericString(s string) (e encoder, err error) {
    	for i := 0; i < len(s); i++ {
    		if !isNumeric(s[i]) {
    			return nil, StructuralError{"NumericString contains invalid character"}
    		}
    	}
    
    	return stringEncoder(s), nil
    }
    
    func makeUTF8String(s string) encoder {
    	return stringEncoder(s)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  10. pkg/generated/openapi/zz_generated.openapi.go

    validation checks two lists must have unique attributes, the fieldPath could be set to either of the list: e.g. `.testList` It does not support list numeric index. It supports child operation to refer to an existing field currently. Refer to [JSONPath support in Kubernetes](https://kubernetes.io/docs/reference/kubectl/jsonpath/) for more info. Numeric index of array is not supported. For field name which contains special characters, use `['specialName']` to refer the field name. e.g. for attribute...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top