Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,528 for startm (0.27 sec)

  1. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorParallelIntegrationTest.groovy

            executer.withTasks("parallelWorkTask")
            def gradle = executer.start()
    
            then:
            workItems.times {
                handler.waitForAllPendingCalls()
                handler.release(1)
            }
    
            then:
            gradle.waitForFinish()
        }
    
        def "does not start more daemons than max-workers"() {
            def maxWorkers = 3
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 31.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/unicode/norm/iter.go

    			break
    		} else if v == ssOverflow {
    			i.next = nextCGJCompose
    			break
    		}
    		if i.info.ccc < prevCC {
    			goto doNorm
    		}
    	}
    	return i.returnSlice(startp, i.p)
    doNorm:
    	// reset to start position
    	i.p = startp
    	i.info = i.rb.f.info(i.rb.src, i.p)
    	i.rb.ss.first(i.info)
    	if i.info.multiSegment() {
    		d := i.info.Decomposition()
    		info := i.rb.f.info(input{bytes: d}, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginIntegrationTest.groovy

        }
    
        def "can change template file for default start script generators"() {
            given:
            file('customUnixStartScript.txt') << '${applicationName} start up script for UN*X'
            file('customWindowsStartScript.txt') << '${applicationName} start up script for Windows'
            buildFile << """
    startScripts {
        applicationName = 'myApp'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  4. pkg/registry/core/service/ipallocator/ipallocator.go

    		return modulo(addr.Next())
    	}
    	start, err := addOffsetAddress(first, offset)
    	if err != nil {
    		return func() netip.Addr { return netip.Addr{} }
    	}
    	start = modulo(start)
    	ip := start
    	seen := false
    	return func() netip.Addr {
    		value := ip
    		// is the last or the first iteration
    		if value == start {
    			if seen {
    				return netip.Addr{}
    			}
    			seen = true
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 17K bytes
    - Viewed (0)
  5. pkg/controller/cronjob/utils_test.go

    		if schedule == nil {
    			t.Errorf("expected 1 start time, got nil")
    		} else if !schedule.Equal(T1) {
    			t.Errorf("expected: %v, got: %v", T1, schedule)
    		}
    	}
    	{
    		// Case 3: known LastScheduleTime, no start needed.
    		// Creation time is before T1.
    		cj.ObjectMeta.CreationTimestamp = metav1.Time{Time: T1.Add(-10 * time.Minute)}
    		// Status shows a start at the expected time.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  6. src/os/exec/exec.go

    // order to release associated system resources.
    func (c *Cmd) Start() error {
    	// Check for doubled Start calls before we defer failure cleanup. If the prior
    	// call to Start succeeded, we don't want to spuriously close its pipes.
    	if c.Process != nil {
    		return errors.New("exec: already started")
    	}
    
    	started := false
    	defer func() {
    		closeDescriptors(c.childIOFiles)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/devicemanager/plugin/v1beta1/stub.go

    // SetRegisterControlFunc sets RegisterControlFunc of the device plugin
    func (m *Stub) SetRegisterControlFunc(f stubRegisterControlFunc) {
    	m.registerControlFunc = f
    }
    
    // Start starts the gRPC server of the device plugin. Can only
    // be called once.
    func (m *Stub) Start() error {
    	klog.InfoS("Starting device plugin server")
    	err := m.cleanup()
    	if err != nil {
    		return err
    	}
    
    	sock, err := net.Listen("unix", m.socket)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 11:19:10 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  8. cmd/kube-controller-manager/app/controllermanager.go

    automation, a control loop is a non-terminating loop that regulates the state of
    the system. In Kubernetes, a controller is a control loop that watches the shared
    state of the cluster through the apiserver and makes changes attempting to move the
    current state towards the desired state. Examples of controllers that ship with
    Kubernetes today are the replication controller, endpoints controller, namespace
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  9. pkg/controller/resourcequota/resource_quota_monitor.go

    	}
    
    	// we're waiting until after the informer start that happens once all the controllers are initialized.  This ensures
    	// that they don't get unexpected events on their work queues.
    	<-qm.informersStarted
    
    	monitors := qm.monitors
    	started := 0
    	for _, monitor := range monitors {
    		if monitor.stopCh == nil {
    			monitor.stopCh = make(chan struct{})
    			qm.informerFactory.Start(qm.stopCh)
    			go monitor.Run()
    			started++
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. src/cmd/doc/main.go

    	// work.
    	var period int
    	// slash+1: if there's no slash, the value is -1 and start is 0; otherwise
    	// start is the byte after the slash.
    	for start := slash + 1; start < len(arg); start = period + 1 {
    		period = strings.Index(arg[start:], ".")
    		symbol := ""
    		if period < 0 {
    			period = len(arg)
    		} else {
    			period += start
    			symbol = arg[period+1:]
    		}
    		// Have we identified a package already?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top