Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for startingAt (0.54 sec)

  1. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
              },
              "startingDeadlineSeconds": {
                "description": "Optional deadline in seconds for starting the job if it misses scheduled time for any reason.  Missed jobs executions will be counted as failed ones.",
                "format": "int64",
                "type": "integer"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    	// is not valid for a PVC (for example, too long).
    	//
    	// An existing PVC with that name that is not owned by the pod
    	// will *not* be used for the pod to avoid using an unrelated
    	// volume by mistake. Starting the pod is then blocked until
    	// the unrelated PVC is removed. If such a pre-created PVC is
    	// meant to be used by the pod, the PVC has to updated with an
    	// owner reference to the pod once the pod exists. Normally
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"envFrom":                  "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    	// is not valid for a PVC (for example, too long).
    	//
    	// An existing PVC with that name that is not owned by the pod
    	// will *not* be used for the pod to avoid using an unrelated
    	// volume by mistake. Starting the pod is then blocked until
    	// the unrelated PVC is removed. If such a pre-created PVC is
    	// meant to be used by the pod, the PVC has to updated with an
    	// owner reference to the pod once the pod exists. Normally
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

      // List of sources to populate environment variables in the container.
      // The keys defined within a source must be a C_IDENTIFIER. All invalid keys
      // will be reported as an event when the container is starting. When a key exists in multiple
      // sources, the value associated with the last source will take precedence.
      // Values defined by an Env with a duplicate key will take precedence.
      // Cannot be updated.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/ssa.go

    // 128, but stack offsets could potentially be up to 2Gbyte). All "locations" (offsets)
    // for stack variables are specified as the number of bytes below varp (pointer to the
    // top of the local variables) for their starting address. The format is:
    //
    //   - Offset of the deferBits variable
    //   - Offset of the first closure slot (the rest are laid out consecutively).
    func (s *state) emitOpenDeferInfo() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  7. doc/go_spec.html

    <code>iota</code> represents successive untyped integer <a href="#Constants">
    constants</a>. Its value is the index of the respective <a href="#ConstSpec">ConstSpec</a>
    in that constant declaration, starting at zero.
    It can be used to construct a set of related constants:
    </p>
    
    <pre>
    const (
    	c0 = iota  // c0 == 0
    	c1 = iota  // c1 == 1
    	c2 = iota  // c2 == 2
    )
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  8. src/net/http/h2_bundle.go

    }
    
    func (sc *http2serverConn) processGoAway(f *http2GoAwayFrame) error {
    	sc.serveG.check()
    	if f.ErrCode != http2ErrCodeNo {
    		sc.logf("http2: received GOAWAY %+v, starting graceful shutdown", f)
    	} else {
    		sc.vlogf("http2: received GOAWAY %+v, starting graceful shutdown", f)
    	}
    	sc.startGracefulShutdownInternal()
    	// http://tools.ietf.org/html/rfc7540#section-6.8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      // Parse the "k" parameter. MatrixDiagPartV3 allows to specify the diagonal(s)
      // with k. This can be either a single value (for a single diagonal) or a
      // tuple of two values (starting and ending diagonal, for a band).
      LogicalResult ExtractK(TF::MatrixDiagPartV3Op op, int64_t (*k)[2]) const {
        DenseIntElementsAttr kattr;
        if (!matchPattern(op.getK(), m_Constant(&kattr))) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  10. pkg/apis/core/validation/validation.go

    	} else {
    		if !strings.HasPrefix(iscsi.IQN, "iqn") && !strings.HasPrefix(iscsi.IQN, "eui") && !strings.HasPrefix(iscsi.IQN, "naa") {
    			allErrs = append(allErrs, field.Invalid(fldPath.Child("iqn"), iscsi.IQN, "must be valid format starting with iqn, eui, or naa"))
    		} else if strings.HasPrefix(iscsi.IQN, "iqn") && !iscsiInitiatorIqnRegex.MatchString(iscsi.IQN) {
    			allErrs = append(allErrs, field.Invalid(fldPath.Child("iqn"), iscsi.IQN, "must be valid format"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top