Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,689 for resort (0.18 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/Result.java

    import java.time.Duration;
    
    public class Result {
    
        private final Duration duration;
        private final Try<Execution> execution;
    
        protected Result(Duration duration, Try<Execution> execution) {
            this.duration = duration;
            this.execution = execution;
        }
    
        protected Result(Result parent) {
            this(parent.getDuration(), parent.getExecution());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    	case _Grunnable:
    		// We just transitioned into runnable, so record what
    		// time that happened.
    		now := nanotime()
    		gp.trackingStamp = now
    	case _Grunning:
    		// We're transitioning into running, so turn off
    		// tracking and record how much time we spent in
    		// runnable.
    		gp.tracking = false
    		sched.timeToRun.record(gp.runnableTime)
    		gp.runnableTime = 0
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/pkg/resource/result.go

    }
    
    // withError allows a fluent style for internal result code.
    func (r *Result) withError(err error) *Result {
    	r.err = err
    	return r
    }
    
    // TargetsSingleItems returns true if any of the builder arguments pointed
    // to non-list calls (if the user explicitly asked for any object by name).
    // This includes directories, streams, URLs, and resource name tuples.
    func (r *Result) TargetsSingleItems() bool {
    	return r.targetsSingleItems
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 23:00:24 UTC 2019
    - 7.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/Result.java

     * <p>
     * The meaning of the value parameter is specific to each concrete subclass. The validity of {@code null}
     * is also to be defined by each subclass. This implementation does allow null values.
     *
     * <p>The result is the last message sent from the daemon back to the daemon client.
     */
    public abstract class Result<T> extends Message {
    
        private final T value;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. src/net/testdata/resolv.conf

    # /etc/resolv.conf
    
    domain localdomain
    nameserver 8.8.8.8
    nameserver 2001:4860:4860::8888
    nameserver fe80::1%lo0
    options ndots:5 timeout:10 attempts:3 rotate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 177 bytes
    - Viewed (0)
  6. src/sort/sort.go

    // Sort is a convenience method: x.Sort() calls Sort(x).
    func (x IntSlice) Sort() { Sort(x) }
    
    // Float64Slice implements Interface for a []float64, sorting in increasing order,
    // with not-a-number (NaN) values ordered before other values.
    type Float64Slice []float64
    
    func (x Float64Slice) Len() int { return len(x) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 16:40:32 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/Result.java

        }
    
        /**
         * New result consisting of given result and new problem. Convenience for newResult(result.get(),
         * concat(result.getProblems(),problems)).
         *
         * @param result
         * @param problem
         */
        public static <T> Result<T> addProblem(Result<T> result, ModelProblem problem) {
            return addProblems(result, Collections.singleton(problem));
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/reset.go

    )
    
    var (
    	iptablesCleanupInstructions = dedent.Dedent(`
    		The reset process does not reset or clean up iptables rules or IPVS tables.
    		If you wish to reset iptables, you must do so manually by using the "iptables" command.
    
    		If your cluster was setup to utilize IPVS, run ipvsadm --clear (or similar)
    		to reset your system's IPVS tables.
    
    		The reset process does not clean your kubeconfig files and you must remove them manually.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 12:26:58 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  9. releasenotes/notes/istioctl-sort-events-by-creation.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 18:47:53 UTC 2023
    - 155 bytes
    - Viewed (0)
  10. src/net/testdata/search-resolv.conf

    # /etc/resolv.conf
    
    domain localdomain
    search test invalid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 78 bytes
    - Viewed (0)
Back to top