Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 140 for startm (0.73 sec)

  1. pkg/apis/admissionregistration/validation/validation_test.go

    Invalid value: ".io": name part must consist of alphanumeric characters, '-', '_' or '.', and must start and end with an alphanumeric character (e.g. 'MyName',  or 'my.name',  or '123-abc', regex used for validation is '([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]'), webhooks[1].matchConditions[0].name: Invalid value: "some name": name part must consist of alphanumeric characters, '-', '_' or '.', and must start and end with an alphanumeric character (e.g. 'MyName',  or 'my.name',  or '123-abc', regex used...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    synchronized void setProperties(java.io.File); public void setLoggerManager(org.codehaus.plexus.logging.LoggerManager); protected synchronized void initializeContext(); public synchronized void start(org.codehaus.classworlds.ClassWorld) throws org.codehaus.plexus.PlexusContainerExcep; public synchronized void start() throws org.codehaus.plexus.PlexusContainerExcep; public synchronized void stop(); } org/codehaus/plexus/embed/EmbedderException.class package org.codehaus.plexus.embed; public synchronized...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 205.7K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    		}
    
    		switch {
    		case containerStatus.State.Running != nil:
    			if containerStatus.Started == nil || !*containerStatus.Started {
    				pendingInitialization++
    			}
    			running++
    		case containerStatus.State.Terminated != nil:
    			// Do nothing here, as terminated restartable init containers are not
    			// taken into account for the pod phase.
    		case containerStatus.State.Waiting != nil:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    synchronized void setProperties(java.io.File); public void setLoggerManager(org.codehaus.plexus.logging.LoggerManager); protected synchronized void initializeContext(); public synchronized void start(org.codehaus.classworlds.ClassWorld) throws org.codehaus.plexus.PlexusContainerExcep; public synchronized void start() throws org.codehaus.plexus.PlexusContainerExcep; public synchronized void stop(); } org/codehaus/plexus/embed/EmbedderException.class package org.codehaus.plexus.embed; public synchronized...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 205.7K bytes
    - Viewed (0)
  5. cluster/gce/util.sh

          --project "${PROJECT}" \
          --region "${REGION}" -q > /dev/null; then
          # successful operation - wait until it's visible
          start="$(date +%s)"
          while true; do
            now="$(date +%s)"
            # Timeout set to 15 minutes
            if [[ $((now - start)) -gt 900 ]]; then
              echo "Timeout while waiting for master IP visibility"
              exit 2
            fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  6. cmd/object-handlers.go

    						}
    
    						// For providing ranged content
    						start, rangeLen, err := rs.GetOffsetLength(ci.Size)
    						if err != nil {
    							start, rangeLen = 0, ci.Size
    						}
    
    						// Set content length.
    						w.Header().Set(xhttp.ContentLength, strconv.FormatInt(rangeLen, 10))
    						if rs != nil {
    							contentRange := fmt.Sprintf("bytes %d-%d/%d", start, start+rangeLen-1, ci.Size)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    	data, _, err := cache.GetBytes(cache.Default(), key)
    	if err == nil && len(data) > len(id) {
    		stats := strings.Split(string(data[:len(data)-len(id)]), "\x00")
    		if len(stats)%2 != 0 {
    			goto Miss
    		}
    		for i := 0; i+2 <= len(stats); i++ {
    			info, err := os.Stat(stats[i])
    			if err != nil || statString(info) != stats[i+1] {
    				goto Miss
    			}
    		}
    		copy(id[:], data[len(data)-len(id):])
    		return id, true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. src/net/http/serve_test.go

    		ts.Config.ConnState = func(c net.Conn, state ConnState) {
    			if c == nil {
    				t.Errorf("nil conn seen in state %s", state)
    				return
    			}
    			sl := <-activeLog
    			if sl.active == nil && state == StateNew {
    				sl.active = c
    			} else if sl.active != c {
    				t.Errorf("unexpected conn in state %s", state)
    				activeLog <- sl
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  9. src/net/http/server.go

    )
    
    func (c *conn) setState(nc net.Conn, state ConnState, runHook bool) {
    	srv := c.server
    	switch state {
    	case StateNew:
    		srv.trackConn(c, true)
    	case StateHijacked, StateClosed:
    		srv.trackConn(c, false)
    	}
    	if state > 0xff || state < 0 {
    		panic("internal error")
    	}
    	packedState := uint64(time.Now().Unix()<<8) | uint64(state)
    	c.curState.Store(packedState)
    	if !runHook {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. pkg/volume/util/operationexecutor/operation_generator.go

    			// so that reconciler can clean up volume when needed. However, volume resize failed,
    			// we should not mark the volume as mounted to avoid pod starts using it.
    			// Considering the above situations, we mark volume as uncertain here so that reconciler will trigger
    			// volume tear down when pod is deleted, and also makes sure pod will not start using it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
Back to top