Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 52 for STARTED (0.32 sec)

  1. src/cmd/go/internal/load/pkg.go

    				// If parent.ImportPath is 'command-line-arguments'.
    				// set to relative directory to root (also chopped root directory)
    				importPath = dir[len(root)+1:]
    			}
    			// We started with parent's dir c:\gopath\src\foo\bar\baz\quux\xyzzy.
    			// We know the import path for parent's dir.
    			// We chopped off some number of path elements and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. pkg/registry/batch/job/strategy_test.go

    			},
    			wantErrs: field.ErrorList{
    				{Type: field.ErrorTypeInvalid, Field: "spec.template"},
    			},
    		},
    		"updating node selector for suspended but previously started job disallowed": {
    			job: &batch.Job{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:            "myjob",
    					Namespace:       metav1.NamespaceDefault,
    					ResourceVersion: "0",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

    ...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "properties": {
            "startedAt": {
              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
              "description": "Time at which the container was last (re-)started"
            }
          },
          "type": "object"
        },
        "io.k8s.api.core.v1.ContainerStateTerminated": {
          "description": "ContainerStateTerminated is a terminated state of a container.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       * completed, has already been cancelled, or could not be cancelled for some other reason. If
       * successful, and this step has not started when {@code cancel} is called, this step should never
       * run.
       *
       * <p>If successful, causes the objects captured by this step (if already started) and its input
       * step(s) for later closing to be closed on their respective {@link Executor}s. If any such calls
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/ClosingFuture.java

       * completed, has already been cancelled, or could not be cancelled for some other reason. If
       * successful, and this step has not started when {@code cancel} is called, this step should never
       * run.
       *
       * <p>If successful, causes the objects captured by this step (if already started) and its input
       * step(s) for later closing to be closed on their respective {@link Executor}s. If any such calls
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers.go

    			}
    		}
    		switch {
    		case container.State.Terminated != nil && container.State.Terminated.ExitCode == 0:
    			continue
    		case isRestartableInitContainer(initContainers[container.Name]) &&
    			container.Started != nil && *container.Started:
    			if container.Ready {
    				readyContainers++
    			}
    			continue
    		case container.State.Terminated != nil:
    			// initialization is failed
    			if len(container.State.Terminated.Reason) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  8. cmd/object-handlers.go

    		sha256hex = ""
    	}
    
    	var forceMD5 []byte
    	// Optimization: If SSE-KMS and SSE-C did not request Content-Md5. Use uuid as etag. Optionally enable this also
    	// for server that is started with `--no-compat`.
    	if !etag.ContentMD5Requested(r.Header) && (crypto.S3KMS.IsRequested(r.Header) || crypto.SSEC.IsRequested(r.Header) || !globalServerCtxt.StrictS3Compat) {
    		forceMD5 = mustGetUUIDBytes()
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  9. cluster/gce/gci/configure-helper.sh

      LOG_INSTANCE_NAME=$(hostname)
      LOG_BOOT_ID=$(journalctl --list-boots | grep -E '^ *0' | awk '{print $2}')
      declare -Ag LOG_START_TIMES
      declare -ag LOG_TRAP_STACK
    
      LOG_STATUS_STARTED='STARTED'
      LOG_STATUS_COMPLETED='COMPLETED'
      LOG_STATUS_ERROR='ERROR'
    }
    
    # Sets an EXIT trap.
    # Args:
    #   $1:... : the trap command.
    #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  10. pkg/apis/core/zz_generated.deepcopy.go

    func (in *ContainerStatus) DeepCopyInto(out *ContainerStatus) {
    	*out = *in
    	in.State.DeepCopyInto(&out.State)
    	in.LastTerminationState.DeepCopyInto(&out.LastTerminationState)
    	if in.Started != nil {
    		in, out := &in.Started, &out.Started
    		*out = new(bool)
    		**out = **in
    	}
    	if in.AllocatedResources != nil {
    		in, out := &in.AllocatedResources, &out.AllocatedResources
    		*out = make(ResourceList, len(*in))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
Back to top