Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,367 for startm (0.29 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphVisitor.java

    /**
     * Receives the result of dependency graph resolution, as a series of events.
     *
     * Implementations should make copies of whatever state they need to retain.
     */
    public interface DependencyGraphVisitor {
        /**
         * Starts traversal of the graph.
         */
        default void start(RootGraphNode root) {}
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 18:04:06 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. src/runtime/trace/trace.go

    package trace
    
    import (
    	"io"
    	"runtime"
    	"sync"
    	"sync/atomic"
    )
    
    // Start enables tracing for the current program.
    // While tracing, the trace will be buffered and written to w.
    // Start returns an error if tracing is already enabled.
    func Start(w io.Writer) error {
    	tracing.Lock()
    	defer tracing.Unlock()
    
    	if err := runtime.StartTrace(); err != nil {
    		return err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. pkg/kubelet/eviction/types.go

    	PodCgroupRoot string
    }
    
    // Manager evaluates when an eviction threshold for node stability has been met on the node.
    type Manager interface {
    	// Start starts the control loop to monitor eviction thresholds at specified interval.
    	Start(diskInfoProvider DiskInfoProvider, podFunc ActivePodsFunc, podCleanedUpFunc PodCleanedUpFunc, monitoringInterval time.Duration)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. docs/en/docs/deployment/server-workers.md

    [19515] [INFO] Booting worker with pid: 19515
    [19511] [INFO] Started server process [19511]
    [19511] [INFO] Waiting for application startup.
    [19511] [INFO] Application startup complete.
    [19513] [INFO] Started server process [19513]
    [19513] [INFO] Waiting for application startup.
    [19513] [INFO] Application startup complete.
    [19514] [INFO] Started server process [19514]
    [19514] [INFO] Waiting for application startup.
    [19514] [INFO] Application startup complete.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/redirector/TestOutputRedirectorTest.groovy

        TestResultProcessor processor = Mock(TestResultProcessor)
        StandardOutputRedirector redir = Mock(StandardOutputRedirector)
    
        @Subject redirector = new TestOutputRedirector(processor, redir)
    
        def "starts redirecting output and error"() {
            when:
            redirector.setOutputOwner("1")
            redirector.startRedirecting()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. src/cmd/internal/objfile/elf.go

    	for _, p := range f.elf.Progs {
    		if p.Type == elf.PT_LOAD && p.Flags&elf.PF_X != 0 {
    			// The memory mapping that contains the segment
    			// starts at an aligned address. Apparently this
    			// is what pprof expects, as it uses this and the
    			// start address of the mapping to compute PC
    			// delta.
    			return p.Vaddr - p.Vaddr%p.Align, nil
    		}
    	}
    	return 0, fmt.Errorf("unknown load address")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 07 20:44:50 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. releasenotes/notes/envoy-stats-proxy-admin-port.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue: []
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 05 09:33:19 UTC 2024
    - 198 bytes
    - Viewed (0)
  8. cmd/tier-last-day-stats.go

    		merged.UpdatedAt = cm.UpdatedAt
    	}
    
    	for i := range cl.Bins {
    		merged.Bins[i] = cl.Bins[i].add(cm.Bins[i])
    	}
    
    	return merged
    }
    
    // DailyAllTierStats is used to aggregate last day tier stats across MinIO servers
    type DailyAllTierStats map[string]lastDayTierStats
    
    func (l DailyAllTierStats) merge(m DailyAllTierStats) {
    	for tier, st := range m {
    		l[tier] = l[tier].merge(st)
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 19 22:54:46 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationRunner.java

         */
        <T> T call(CallableBuildOperation<T> buildOperation);
    
        /**
         * Starts an operation that can be finished later.
         *
         * When a parent operation is finished any unfinished child operations will be failed.
         */
        BuildOperationContext start(BuildOperationDescriptor.Builder descriptor);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 14:54:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/argument.go

    // of the given argument name and the index where it was found.
    // If the argument does not exist an empty string and -1 are returned.
    // startIdx defines where the iteration starts. If startIdx is a negative
    // value or larger than the size of the argument slice the iteration
    // will start from the last element.
    func GetArgValue(args []Arg, name string, startIdx int) (string, int) {
    	if startIdx < 0 || startIdx > len(args)-1 {
    		startIdx = len(args) - 1
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 10:27:05 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top