Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 162 for recovery (0.14 sec)

  1. src/runtime/panic.go

    	gp := getg()
    
    	if !p.deferreturn {
    		if gp._panic != p {
    			throw("bad panic stack")
    		}
    
    		if p.recovered {
    			mcall(recovery) // does not return
    			throw("recovery failed")
    		}
    	}
    
    	// The assembler adjusts p.argp in wrapper functions that shouldn't
    	// be visible to recover(), so we need to restore it each iteration.
    	p.argp = add(p.startSP, sys.MinFrameSize)
    
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  2. cni/README.md

        - `istio-cni-config` configmap with CNI plugin config to add to CNI plugin chained config
        - creates service-account `istio-cni` with `ClusterRoleBinding` to allow gets on pods' info and delete/modifications for recovery.
    
    - `install-cni` container
        - copies `istio-cni` and `istio-iptables` to `/opt/cni/bin`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. cmd/veeam-sos-api.go

    //     backup space is needed for incremental backups. Larger block sizes also mean less performance for random read restore
    //     methods like Instant Restore, File Level Recovery, and Database/Application restores. Veeam recommends that vendors
    //     optimize the storage system for the default value of 1MB minus compression object sizes. The setting simultaneously
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 20 18:54:52 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/upgrade/staticpods.go

    		if err != nil {
    			errs = append(errs, err)
    		}
    	}
    	// Let the user know there were problems, but we tried to recover
    	return errors.Wrap(utilerrors.NewAggregate(errs),
    		"couldn't upgrade control plane. kubeadm has tried to recover everything into the earlier state. Errors faced")
    }
    
    // rollbackEtcdData rolls back the content of etcd folder if something went wrong.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClient.java

                throw new DaemonInitialConnectException("Connected to a stale daemon address.", e);
            }
    
            if (result == null) {
                // If the response from the daemon is unintelligible, mark the daemon as unavailable so other
                // clients won't try to communicate with it. We'll attempt to recovery by trying again.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  6. cmd/storage-datatypes.go

    //   - on rewrite dataDir on disk that must be additionally purged
    //     only after as a 2-phase call, allowing the older dataDir to
    //     hang-around in-case we need some form of recovery.
    type RenameDataResp struct {
    	Sign       []byte
    	OldDataDir string // contains '<uuid>', it is designed to be passed as value to Delete(bucket, pathJoin(object, dataDir))
    }
    
    const (
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. src/crypto/ecdsa/ecdsa.go

    		// (0, N). These are the most dangerous lines in the package and maybe in
    		// the library: a single bit of bias in the selection of nonces would likely
    		// lead to key recovery, but no tests would fail. Look but DO NOT TOUCH.
    		if excess := len(b)*8 - c.N.BitLen(); excess > 0 {
    			// Just to be safe, assert that this only happens for the one curve that
    			// doesn't have a round number of bits.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  8. plugin/pkg/admission/noderestriction/admission_test.go

    				"15G", nil,
    			),
    			expectError: "is not allowed to update fields other than",
    		},
    		{
    			name: "should allow updates to allocatedResources with expansion and recovery enabled",
    			oldObj: makeTestPVC(
    				api.PersistentVolumeClaimResizing,
    				"10G", nil,
    			),
    			subresource:             "status",
    			expansionFeatureEnabled: true,
    			recoveryFeatureEnabled:  true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  9. pkg/volume/util/operationexecutor/operation_generator.go

    		}
    	} else {
    		// Get attacher plugin and the volumeName by splitting the volume unique name in case
    		// there's no VolumeSpec: this happens only on attach/detach controller crash recovery
    		// when a pod has been deleted during the controller downtime
    		pluginName, volumeName, err = util.SplitUniqueName(volumeToDetach.VolumeName)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    			}
    		}
    		if err := m.updateContainerResources(pod, container, cInfo.kubeContainerID); err != nil {
    			// Log error and abort as container updates need to succeed in the order determined by computePodResizeAction.
    			// The recovery path is for SyncPod to keep retrying at later times until it succeeds.
    			klog.ErrorS(err, "updateContainerResources failed", "container", container.Name, "cID", cInfo.kubeContainerID,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
Back to top