Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 518 for numeric (0.22 sec)

  1. src/cmd/nm/doc.go

    //
    // Following established convention, the address is omitted for undefined
    // symbols (type U).
    //
    // The options control the printed output:
    //
    //	-n
    //		an alias for -sort address (numeric),
    //		for compatibility with other nm commands
    //	-size
    //		print symbol size in decimal between address and type
    //	-sort {address,name,none,size}
    //		sort output in the given order (default name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  2. src/os/file_posix.go

    	if err := f.checkValid("chmod"); err != nil {
    		return err
    	}
    	if e := f.pfd.Fchmod(syscallMode(mode)); e != nil {
    		return f.wrapErr("chmod", e)
    	}
    	return nil
    }
    
    // Chown changes the numeric uid and gid of the named file.
    // If the file is a symbolic link, it changes the uid and gid of the link's target.
    // A uid or gid of -1 means to not change that value.
    // If there is an error, it will be of type [*PathError].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/intstr/intstr.go

    // is a percentage string value it's treated as a percentage and scaled appropriately
    // in accordance to the total, if it's an int value it's treated as a simple value and
    // if it is a string value which is either non-numeric or numeric but lacking a trailing '%' it returns an error.
    func GetScaledValueFromIntOrPercent(intOrPercent *IntOrString, total int, roundUp bool) (int, error) {
    	if intOrPercent == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. pkg/volume/util/atomic_writer_unsupported.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package util
    
    import (
    	"runtime"
    
    	"k8s.io/klog/v2"
    )
    
    // chown changes the numeric uid and gid of the named file.
    // This is a no-op on unsupported platforms.
    func (w *AtomicWriter) chown(name string, uid, _ /* gid */ int) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 04:44:51 UTC 2024
    - 980 bytes
    - Viewed (0)
  5. test/typeparam/listimp.dir/a.go

    }
    
    type OrderedNum interface {
    	~int | ~int8 | ~int16 | ~int32 | ~int64 |
    		~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr |
    		~float32 | ~float64
    }
    
    // ListNum is a linked _List of ordered numeric values of type T.
    type ListNum[T OrderedNum] struct {
    	Next *ListNum[T]
    	Val  T
    }
    
    const Clip = 5
    
    // ClippedLargest returns the largest in the list of OrderNums, but a max of 5.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 03 17:08:51 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/api/equality/semantic.go

    // Example: apiequality.Semantic.DeepEqual(aPod, aPodWithNonNilButEmptyMaps) == true
    var Semantic = conversion.EqualitiesOrDie(
    	func(a, b resource.Quantity) bool {
    		// Ignore formatting, only care that numeric value stayed the same.
    		// TODO: if we decide it's important, it should be safe to start comparing the format.
    		//
    		// Uninitialized quantities are equivalent to 0 quantities.
    		return a.Cmp(b) == 0
    	},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 04 12:02:53 UTC 2017
    - 1.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/mergepatch/util_test.go

    		{
    			A:   map[string]interface{}{"a": []interface{}{int64(1), int64(2)}},
    			B:   map[string]interface{}{"a": []interface{}{int64(1), int64(2)}},
    			Ret: false,
    		},
    
    		// Numeric types are not interchangeable.
    		// Callers are expected to ensure numeric types are consistent in 'left' and 'right'.
    		{A: int64(0), B: float64(0), Ret: true},
    		// Other types are not interchangeable.
    		{A: int64(0), B: "0", Ret: true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 11 09:16:00 UTC 2018
    - 4.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/net/HostSpecifier.java

    import java.net.InetAddress;
    import java.text.ParseException;
    import javax.annotation.CheckForNull;
    
    /**
     * A syntactically valid host specifier, suitable for use in a URI. This may be either a numeric IP
     * address in IPv4 or IPv6 notation, or a domain name.
     *
     * <p>Because this class is intended to represent host specifiers which can reasonably be used in a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 05 09:18:40 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. src/html/escape.go

    package html
    
    import (
    	"strings"
    	"unicode/utf8"
    )
    
    // These replacements permit compatibility with old numeric entities that
    // assumed Windows-1252 encoding.
    // https://html.spec.whatwg.org/multipage/parsing.html#numeric-character-reference-end-state
    var replacementTable = [...]rune{
    	'\u20AC', // First entry is what 0x80 should be replaced with.
    	'\u0081',
    	'\u201A',
    	'\u0192',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 13 07:00:18 UTC 2020
    - 5K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/security_context_others.go

    	case uid == nil && len(username) > 0:
    		return fmt.Errorf("container has runAsNonRoot and image has non-numeric user (%s), cannot verify user is non-root (pod: %q, container: %s)", username, format.Pod(pod), container.Name)
    	default:
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.8K bytes
    - Viewed (0)
Back to top