Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 82 for incdecs (0.48 sec)

  1. src/internal/types/testdata/check/stmt0.go

    	const c = 0
    	type d int
    	a, b, c /* ERROR "cannot assign" */ , d /* ERROR "cannot assign" */  := 1, "zwei", 3.0, 4
    	var _ int = a // a is of type int
    	var _ string = b // b is of type string
    }
    
    func incdecs() {
    	const c = 3.14
    	c /* ERROR "cannot assign" */ ++
    	s := "foo"
    	s /* ERROR "invalid operation" */ --
    	3.14 /* ERROR "cannot assign" */ ++
    	var (
    		x int
    		y float32
    		z complex128
    	)
    	x++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/Encdec.java

    /* encdec - encode and decode integers, times, and
     * internationalized strings to and from popular binary formats
     * http://www.ioplex.com/~miallen/encdec/
     * Copyright (c) 2003 Michael B. Allen <******@****.***>
     *
     * The GNU Library General Public License
     * 
     * This library is free software; you can redistribute it and/or
     * modify it under the terms of the GNU Library General Public
     * License as published by the Free Software Foundation; either
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 11K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/util/Encdec.java

    /* encdec - encode and decode integers, times, and
     * internationalized strings to and from popular binary formats
     * http://www.ioplex.com/~miallen/encdec/
     * Copyright (c) 2003 Michael B. Allen <******@****.***>
     *
     * The GNU Library General Public License
     * 
     * This library is free software; you can redistribute it and/or
     * modify it under the terms of the GNU Library General Public
     * License as published by the Free Software Foundation; either
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 10.9K bytes
    - Viewed (0)
  4. test/fixedbugs/gcc61255.go

    // compile
    
    // Copyright 2014 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.
    
    // PR61255: gccgo failed to compile IncDec statements on variadic functions.
    
    package main
    
    func main() {
    	append([]byte{}, 0)[0]++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 306 bytes
    - Viewed (0)
  5. src/main/java/jcifs/dcerpc/ndr/NdrBuffer.java

            align(2);
            Encdec.enc_uint16le((short) s, this.buf, this.index);
            advance(2);
        }
    
    
        public int dec_ndr_short () {
            align(2);
            int val = Encdec.dec_uint16le(this.buf, this.index);
            advance(2);
            return val;
        }
    
    
        public void enc_ndr_long ( int l ) {
            align(4);
            Encdec.enc_uint32le(l, this.buf, this.index);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.6K bytes
    - Viewed (0)
  6. pkg/volume/util/fs/fs.go

    	}
    
    	inodes, _ := fsquota.GetInodes(path)
    	if inodes != nil {
    		usage.Inodes = inodes.Value()
    	}
    
    	if inodes != nil && consumption != nil {
    		return usage, nil
    	}
    
    	topLevelStat := &unix.Stat_t{}
    	err := unix.Stat(path, topLevelStat)
    	if err != nil {
    		return usage, err
    	}
    
    	// dedupedInode stores inodes that could be duplicates (nlink > 1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 20 02:56:02 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  7. test/fixedbugs/gcc61264.go

    // compile
    
    // Copyright 2014 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.
    
    // PR61264: IncDec statements involving composite literals caused in ICE in gccgo.
    
    package main
    
    func main() {
            map[int]int{}[0]++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 313 bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/dcerpc/ndr/NdrBuffer.java

        public void enc_ndr_short(int s) {
            align(2);
            Encdec.enc_uint16le((short)s, buf, index);
            advance(2);
        }
        public int dec_ndr_short() {
            align(2);
            int val = Encdec.dec_uint16le(buf, index);
            advance(2);
            return val;
        }
        public void enc_ndr_long(int l) {
            align(4);
            Encdec.enc_uint32le(l, buf, index);
            advance(4);
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 6.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbRandomAccessFile.java

        public final void writeShort( int v ) throws SmbException {
            Encdec.enc_uint16be( (short)v, tmp, 0 );
            write( tmp, 0, 2 );
        }
        public final void writeChar( int v ) throws SmbException {
            Encdec.enc_uint16be( (short)v, tmp, 0 );
            write( tmp, 0, 2 );
        }
        public final void writeInt( int v ) throws SmbException {
            Encdec.enc_uint32be( v, tmp, 0 );
            write( tmp, 0, 4 );
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 10.9K bytes
    - Viewed (0)
  10. pkg/kubelet/metrics/collectors/volume_stats_test.go

    		# HELP kubelet_volume_stats_inodes [ALPHA] Maximum number of inodes in the volume
    		# TYPE kubelet_volume_stats_inodes gauge
    		# HELP kubelet_volume_stats_inodes_free [ALPHA] Number of free inodes in the volume
    		# TYPE kubelet_volume_stats_inodes_free gauge
    		# HELP kubelet_volume_stats_inodes_used [ALPHA] Number of used inodes in the volume
    		# TYPE kubelet_volume_stats_inodes_used gauge
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 9.5K bytes
    - Viewed (1)
Back to top