Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 868 for Unmount (0.09 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/measure/DataSeries.java

            }
    
            Amount<Q> total = get(0);
            Amount<Q> min = get(0);
            Amount<Q> max = get(0);
            for (int i = 1; i < size(); i++) {
                Amount<Q> amount = get(i);
                total = total.plus(amount);
                min = min.compareTo(amount) <= 0 ? min : amount;
                max = max.compareTo(amount) >= 0 ? max : amount;
            }
            List<Amount<Q>> sorted = Lists.newArrayList(this);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/s390x/rotate_test.go

    		{start: 63, end: 0, amount: 0, inMask: 1<<63 | 1, outMask: 1<<63 | 1},
    		{start: 62, end: 0, amount: 0, inMask: 1<<63 | 3, outMask: 1<<63 | 3},
    		{start: 63, end: 1, amount: 0, inMask: 3<<62 | 1, outMask: 3<<62 | 1},
    		{start: 62, end: 1, amount: 0, inMask: 3<<62 | 3, outMask: 3<<62 | 3},
    
    		// rotation
    		{start: 32, end: 63, amount: 32, inMask: 0xffffffff00000000, outMask: 0x00000000ffffffff},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 14 17:17:59 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/measure/Duration.java

        public static Amount<Duration> millis(long millis) {
            return Amount.valueOf(millis, MILLI_SECONDS);
        }
    
        public static Amount<Duration> millis(BigDecimal millis) {
            return Amount.valueOf(millis, MILLI_SECONDS);
        }
    
        public static Amount<Duration> seconds(BigDecimal seconds) {
            return Amount.valueOf(seconds, SECONDS);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/StatusEvent.java

    public interface StatusEvent extends ProgressEvent {
        /**
         * The amount of work already performed by the build operation.
         *
         * @return The amount of performed work
         */
        long getProgress();
    
        /**
         * The total amount of work that the build operation is in the progress of performing, or -1 if not known.
         *
         * @return The total amount of work, or -1 if not known.
         */
        long getTotal();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/measure/DataAmount.java

        public static Amount<DataAmount> bytes(long value) {
            return Amount.valueOf(value, BYTES);
        }
    
        public static Amount<DataAmount> bytes(BigDecimal value) {
            return Amount.valueOf(value, BYTES);
        }
    
        public static Amount<DataAmount> kbytes(BigDecimal value) {
            return Amount.valueOf(value, KILO_BYTES);
        }
    
        public static Amount<DataAmount> mbytes(BigDecimal value) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PrettyCalculator.groovy

        }
    
        static String toMillis(Amount<Duration> duration) {
            return duration.toUnits(Duration.MILLI_SECONDS).value.setScale(3, RoundingMode.HALF_UP).stripTrailingZeros().toString() + " ms"
        }
    
        static <Q> Number percentChange(Amount<Q> current, Amount<Q> previous) {
            if (previous == Amount.valueOf(0, previous.getUnits())) {
                return 100 as Integer
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. cluster/gce/gci/mounter/mounter.go

    	"path/filepath"
    	"strings"
    )
    
    const (
    	// Location of the mount file to use
    	chrootCmd        = "chroot"
    	mountCmd         = "mount"
    	rootfs           = "rootfs"
    	nfsRPCBindErrMsg = "mount.nfs: rpc.statd is not running but is required for remote locking.\nmount.nfs: Either use '-o nolock' to keep locks local, or start statd.\nmount.nfs: an incorrect mount option was specified\n"
    	rpcBindCmd       = "/sbin/rpcbind"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 20 22:26:16 UTC 2019
    - 2.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/process-services/src/test/groovy/org/gradle/process/internal/health/memory/MemoryAmountTest.groovy

    import spock.lang.Specification
    
    class MemoryAmountTest extends Specification {
    
        def "bytes #bytes"() {
            given:
            def amount = MemoryAmount.of(bytes)
    
            expect:
            amount.bytes == bytes
            amount.toString() == bytes.toString()
    
            where:
            bytes << [1L, Long.MAX_VALUE]
        }
    
        def "invalid bytes #bytes"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inject/hello-mount-mtls-certs.yaml.injected

    John Howard <******@****.***> 1709052916 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. pkg/controller/volume/attachdetach/reconciler/reconciler.go

    	Run(ctx context.Context)
    }
    
    // NewReconciler returns a new instance of Reconciler that waits loopPeriod
    // between successive executions.
    // loopPeriod is the amount of time the reconciler loop waits between
    // successive executions.
    // maxWaitForUnmountDuration is the max amount of time the reconciler will wait
    // for the volume to be safely unmounted, after this it will detach the volume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 21:02:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top