Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 231 for Inits (0.04 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go

    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Index   uint16
    	_       uint16
    	Flags   int32
    	Addrs   int32
    	Pid     int32
    	Seq     int32
    	Errno   int32
    	Fmask   int32
    	Inits   uint32
    	Rmx     RtMetrics
    }
    
    type RtMetrics struct {
    	Locks    uint32
    	Mtu      uint32
    	Hopcount uint32
    	Expire   uint32
    	Recvpipe uint32
    	Sendpipe uint32
    	Ssthresh uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go

    }
    
    type RtMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Index   uint16
    	Flags   int32
    	Addrs   int32
    	Pid     int32
    	Seq     int32
    	Errno   int32
    	Use     int32
    	Inits   uint32
    	Rmx     RtMetrics
    }
    
    type RtMetrics struct {
    	Locks    uint32
    	Mtu      uint32
    	Hopcount uint32
    	Expire   int32
    	Recvpipe uint32
    	Sendpipe uint32
    	Ssthresh uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go

    }
    
    type RtMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Index   uint16
    	Flags   int32
    	Addrs   int32
    	Pid     int32
    	Seq     int32
    	Errno   int32
    	Use     int32
    	Inits   uint32
    	Rmx     RtMetrics
    }
    
    type RtMetrics struct {
    	Locks    uint32
    	Mtu      uint32
    	Hopcount uint32
    	Expire   int32
    	Recvpipe uint32
    	Sendpipe uint32
    	Ssthresh uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  4. src/go/internal/gccgoimporter/parser.go

    	case "priority":
    		p.next()
    		p.initdata.Priority = p.parseInt()
    		p.expectEOL()
    
    	case "init":
    		p.next()
    		for p.tok != '\n' && p.tok != ';' && p.tok != scanner.EOF {
    			p.initdata.Inits = append(p.initdata.Inits, p.parsePackageInit())
    		}
    		p.expectEOL()
    
    	case "init_graph":
    		p.next()
    		// The graph data is thrown away for now.
    		for p.tok != '\n' && p.tok != ';' && p.tok != scanner.EOF {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 23:14:07 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/api_test.go

    		// number of initializers must match
    		if len(info.InitOrder) != len(test.inits) {
    			t.Errorf("package %s: got %d initializers; want %d", name, len(info.InitOrder), len(test.inits))
    			continue
    		}
    
    		// initializers must match
    		for i, want := range test.inits {
    			got := info.InitOrder[i].String()
    			if got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  6. src/runtime/extern.go

    	inittrace: setting inittrace=1 causes the runtime to emit a single line to standard
    	error for each package with init work, summarizing the execution time and memory
    	allocation. No information is printed for inits executed as part of plugin loading
    	and for packages without both user defined and compiler generated init work.
    	The format of this line is subject to change. Currently, it is:
    		init # @#ms, # ms clock, # bytes, # allocs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  7. src/go/types/api_test.go

    		// number of initializers must match
    		if len(info.InitOrder) != len(test.inits) {
    			t.Errorf("package %s: got %d initializers; want %d", name, len(info.InitOrder), len(test.inits))
    			continue
    		}
    
    		// initializers must match
    		for i, want := range test.inits {
    			got := info.InitOrder[i].String()
    			if got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ir/fmt.go

    	// block starting with the init statements.
    
    	// if we can just say "for" n->ninit; ... then do so
    	simpleinit := len(n.Init()) == 1 && len(n.Init()[0].Init()) == 0 && StmtWithInit(n.Op())
    
    	// otherwise, print the inits as separate statements
    	complexinit := len(n.Init()) != 0 && !simpleinit && exportFormat
    
    	// but if it was for if/for/switch, put in an extra surrounding block to limit the scope
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/measure/Units.java

                }
                return -1;
            }
    
            public void add(ScaledUnits<Q> units) {
                this.units.add(units);
                Collections.sort(this.units);
            }
        }
    
        private static class ScaledUnits<Q> extends Units<Q> {
            private final BaseUnits<Q> baseUnits;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. pkg/monitoring/units.go

    // limitations under the License.
    
    package monitoring
    
    // Unit encodes the standard name for describing the quantity
    // measured by a Metric (if applicable).
    type Unit string
    
    // Predefined units for use with the monitoring package.
    const (
    	None         Unit = "1"
    	Bytes        Unit = "By"
    	Seconds      Unit = "s"
    	Milliseconds Unit = "ms"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 901 bytes
    - Viewed (0)
Back to top