Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for INITIALIZING (0.27 sec)

  1. pkg/printers/internalversion/printers.go

    			}
    			initializing = true
    		case container.State.Waiting != nil && len(container.State.Waiting.Reason) > 0 && container.State.Waiting.Reason != "PodInitializing":
    			reason = "Init:" + container.State.Waiting.Reason
    			initializing = true
    		default:
    			reason = fmt.Sprintf("Init:%d/%d", i, len(pod.Spec.InitContainers))
    			initializing = true
    		}
    		break
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                }});
            }
    
            /**
             * Adds a getter that returns the value of the given field, initializing it if null using the given code. The code should leave the value on the top of the stack.
             */
            private void addLazyGetter(
                String methodName,
                Type returnType,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    no <a href="#Variable_declarations">initialization expression</a> or
    its initialization expression has no <i>dependencies</i> on uninitialized variables.
    Initialization proceeds by repeatedly initializing the next package-level
    variable that is earliest in declaration order and ready for initialization,
    until there are no variables ready for initialization.
    </p>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  4. pkg/controller/daemon/daemon_controller_test.go

    			err = manager.podStore.Add(pod)
    			if err != nil {
    				t.Fatal(err)
    			}
    
    			backoffKey := failedPodsBackoffKey(ds, nodeName)
    
    			// First sync will delete the pod, initializing backoff
    			expectSyncDaemonSets(t, manager, ds, podControl, 0, 1, 1)
    			initialDelay := manager.failedPodsBackoff.Get(backoffKey)
    			if initialDelay <= 0 {
    				t.Fatal("Initial delay is expected to be set.")
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    //   workers.
    
    var (
    	m0           m
    	g0           g
    	mcache0      *mcache
    	raceprocctx0 uintptr
    	raceFiniLock mutex
    )
    
    // This slice records the initializing tasks that need to be
    // done to start up the runtime. It is built by the linker.
    var runtime_inittasks []*initTask
    
    // main_init_done is a signal used by cgocallbackg that initialization
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet.go

    	val := kl.syncLoopMonitor.Load()
    	if val == nil {
    		return time.Time{}
    	}
    	return val.(time.Time)
    }
    
    // updateRuntimeUp calls the container runtime status callback, initializing
    // the runtime dependent modules when the container runtime first comes up,
    // and returns an error if the status check fails.  If the status check is OK,
    // update the container runtime uptime in the kubelet runtimeState.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top