Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 117 for Inits (0.24 sec)

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

    	Msglen    uint16
    	Version   uint8
    	Type      uint8
    	Index     uint16
    	Pad_cgo_0 [2]byte
    	Flags     int32
    	Addrs     int32
    	Pid       int32
    	Seq       int32
    	Errno     int32
    	Use       int32
    	Inits     int32
    	Pad_cgo_1 [4]byte
    	Rmx       RtMetrics
    }
    
    type RtMetrics struct {
    	Locks    uint64
    	Mtu      uint64
    	Hopcount uint64
    	Recvpipe uint64
    	Sendpipe uint64
    	Ssthresh uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go

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

    	Msglen    uint16
    	Version   uint8
    	Type      uint8
    	Index     uint16
    	Pad_cgo_0 [2]byte
    	Flags     int32
    	Addrs     int32
    	Pid       int32
    	Seq       int32
    	Errno     int32
    	Use       int32
    	Inits     int32
    	Pad_cgo_1 [4]byte
    	Rmx       RtMetrics
    }
    
    type RtMetrics struct {
    	Locks    uint64
    	Mtu      uint64
    	Hopcount uint64
    	Recvpipe uint64
    	Sendpipe uint64
    	Ssthresh uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/measure/Amount.java

            }
            int diff = units.compareTo(other.units);
            if (diff == 0) {
                return new Amount<>(value.add(other.value), units);
            }
            if (diff < 0) {
                return new Amount<>(value.add(other.units.scaleTo(other.value, units)), units);
            }
            return new Amount<>(units.scaleTo(value, other.units).add(other.value), other.units);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/measure/AmountTest.groovy

            5.9     | Fruit.apples  | 2      | Fruit.oranges
        }
    
        def "can add amounts with same units"() {
            expect:
            Amount.valueOf(a, units) + Amount.valueOf(b, units) == Amount.valueOf(c, units)
    
            where:
            a    | b     | c      | units
            0    | 0     | 0      | Fruit.apples
            1    | 2     | 3      | Fruit.apples
            1    | 2     | 3      | Fruit.oranges
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/OperationProgressDetails.java

     */
    public class OperationProgressDetails {
        private final long progress;
        private final long total;
        private final String units;
    
        public OperationProgressDetails(long progress, long total, String units) {
            this.progress = progress;
            this.total = total;
            this.units = units;
        }
    
        public long getProgress() {
            return progress;
        }
    
        public long getTotal() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultStatusEvent.java

        private final long progress;
        private final long total;
        private final String units;
    
        public DefaultStatusEvent(long eventTime, DefaultFileDownloadDescriptor descriptor, long progress, long total, String units) {
            super(eventTime, descriptor);
            this.progress = progress;
            this.total = total;
            this.units = units;
        }
    
        @Override
        public String getDisplayName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 21 23:09:50 UTC 2021
    - 1.5K bytes
    - Viewed (0)
Back to top