Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for died (0.09 sec)

  1. cmd/erasure-multipart.go

    			// prematurely closed and we do not find any xl.meta or
    			// part.1's - in such a scenario we must return as if client
    			// disconnected. This means that erasure.Encode() CreateFile()
    			// did not do anything.
    			return pi, IncompleteBody{Bucket: bucket, Object: object}
    		}
    
    		return pi, toObjectErr(err, minioMetaMultipartBucket, partPath)
    	}
    
    	md5hex := r.MD5CurrentHexString()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    	// pleg observes the state of the container runtime and notifies the kubelet of changes to containers, which
    	// notifies the podWorkers to reconcile the state of the pod (for instance, if a container dies and needs to
    	// be restarted).
    	pleg pleg.PodLifecycleEventGenerator
    
    	// eventedPleg supplements the pleg to deliver edge-driven container changes with low-latency.
    	eventedPleg pleg.PodLifecycleEventGenerator
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

          return WalkResult::advance();
        });
        if (res.wasInterrupted()) return failure();
      }
    
      if (changed) {
        region->getParentOp()->emitWarning()
            << "shape inference did not reach stable state after " << max_iterations
            << " iterations";
      }
      return !changed;
    }
    
    static FailureOr<bool> InferShapeForFunction(ShapeInference& context,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/conversion.go

    	// We have two status
    	// Accepted: is the configuration valid. We only have errors in listeners, and the status is not supposed to
    	// be tied to listeners, so this is always accepted
    	// Programmed: is the data plane "ready" (note: eventually consistent)
    	gatewayConditions := map[string]*condition{
    		string(k8s.GatewayConditionAccepted): {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  5. cmd/iam-store.go

    		if err := validateSvcExpirationInUTC(expirationInUTC); err != nil {
    			return updatedAt, err
    		}
    		cr.Expiration = expirationInUTC
    	}
    
    	switch opts.status {
    	// The caller did not ask to update status account, do nothing
    	case "":
    	case string(madmin.AccountEnabled):
    		cr.Status = auth.AccountOn
    	case string(madmin.AccountDisabled):
    		cr.Status = auth.AccountOff
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.30.md

       ([#122068](https://github.com/kubernetes/kubernetes/pull/122068), [@caohe](https://github.com/caohe))
    - Fixed an issue where `AvailableBytes` sometimes did not report correctly on WindowsNodes when the `PodAndContainerStatsFromCRI` feature was enabled.
       ([#122846](https://github.com/kubernetes/kubernetes/pull/122846), [@marosset](https://github.com/marosset))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  7. cmd/xl-storage.go

    			}
    		}
    		return fi, err
    	}
    
    	fi, err = getFileInfo(buf, volume, path, versionID, readData, true)
    	if err != nil {
    		return fi, err
    	}
    
    	if len(fi.Data) == 0 {
    		// We did not read inline data, so we have no references.
    		defer metaDataPoolPut(buf)
    	}
    
    	if readData {
    		if len(fi.Data) > 0 || fi.Size == 0 {
    			if fi.InlineData() {
    				// If written with header we are fine.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-helper.sh

          local filtered_feature_gates
          filtered_feature_gates=$(echo "${FEATURE_GATES}" | sed "s/,/\n/g" | { grep -E -v "(${CCM_FEATURE_GATES_FILTER})" || true; } | sed -z "s/\n/,/g;s/,$/\n/")
          echo "Feature gates that did not pass through the GCP filter:" "${filtered_feature_gates}"
        else
          echo "None of the given feature gates (${FEATURE_GATES}) were found to be safe to pass to the CCM"
        fi
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  9. cluster/gce/util.sh

        node_ip=$(gcloud compute instances describe --project "${PROJECT}" --zone "${ZONE}" \
          "${NODE_NAMES[$i]}" --format='value(networkInterfaces[0].accessConfigs[0].natIP)')
        if [[ -z "${node_ip-}" ]] ; then
          echo "Did not find ${NODE_NAMES[$i]}" >&2
        else
          echo "Found ${NODE_NAMES[$i]} at ${node_ip}"
          KUBE_NODE_IP_ADDRESSES+=("${node_ip}")
        fi
      done
      if [[ -z "${KUBE_NODE_IP_ADDRESSES-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.28.md

    - Fixed an issue where the API server did not send impersonated UID to authentication webhooks. ([#116681](https://github.com/kubernetes/kubernetes/pull/116681), [@stlaz](https://github.com/stlaz)) [SIG API Machinery and Auth]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
Back to top