Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 708 for startm (0.11 sec)

  1. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    		}
    	}
    
    	// Assign line comments to syntax immediately following.
    	for _, x := range in.pre {
    		start, _ := x.Span()
    		if debug {
    			fmt.Fprintf(os.Stderr, "pre %T :%d:%d #%d\n", x, start.Line, start.LineRune, start.Byte)
    		}
    		xcom := x.Comment()
    		for len(line) > 0 && start.Byte >= line[0].Start.Byte {
    			if debug {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/integTest/groovy/org/gradle/cache/internal/DefaultFileLockManagerContentionIntegrationTest.groovy

            def build1 = executer.withStackTraceChecksDisabled().withArguments("-d").withTasks("lock").start()
            def build2 = executer.withStackTraceChecksDisabled().withArguments("-d").withTasks("lock").start()
            def build3 = executer.withStackTraceChecksDisabled().withArguments("-d").withTasks("lock").start()
            poll(120) {
                assert requestReceived
                assertConfirmationCount(build1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. pilot/pkg/leaderelection/leaderelection_test.go

    				})
    			}
    		}
    	}
    
    	for _, start := range cases {
    		t.Run(fmt.Sprint(start), func(t *testing.T) {
    			checkCycles(t, start, cases, nil)
    		})
    	}
    }
    
    func alreadyHit(cur instance, chain []instance) bool {
    	for _, cc := range chain {
    		if cur == cc {
    			return true
    		}
    	}
    	return false
    }
    
    func checkCycles(t *testing.T, start instance, cases []instance, chain []instance) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/rsc.io/markdown/inline.go

    						d = 1
    					}
    					del := p.Text[0] == '~'
    					x := &Emph{Marker: p.Text[:d], Inner: append([]Inline(nil), dst[start.i+1:]...)}
    					start.Text = start.Text[:len(start.Text)-d]
    					p.Text = p.Text[d:]
    					if start.Text == "" {
    						dst = dst[:start.i]
    					} else {
    						dst = dst[:start.i+1]
    					}
    					trimStack()
    					if del {
    						dst = append(dst, (*Del)(x))
    					} else if d == 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/Daemon.java

            return this.daemonRegistry;
        }
    
        /**
         * Starts the daemon, receiving connections asynchronously (i.e. returns immediately).
         *
         * @throws IllegalStateException if this daemon is already running, or has already been stopped.
         */
        public void start() {
            LOGGER.info("start() called on daemon - {}", daemonContext);
            lifecycleLock.lock();
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  6. pilot/test/xds/fake.go

    			t.Fatal(err)
    		}
    	}()
    	t.Cleanup(func() {
    		grpcServer.Stop()
    		_ = listener.Close()
    	})
    	// Start the discovery server
    	s.Start(stop)
    	cg.ServiceEntryRegistry.XdsUpdater = s
    	// Now that handlers are added, get everything started
    	cg.Run()
    	kubelib.WaitForCacheSync("fake", stop,
    		cg.Registry.HasSynced,
    		cg.Store().HasSynced)
    	cg.ServiceEntryRegistry.ResyncEDS()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top