Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 628 for recovery (0.14 sec)

  1. src/cmd/compile/internal/types2/errors.go

    	"fmt"
    	. "internal/types/errors"
    	"runtime"
    	"strings"
    )
    
    func assert(p bool) {
    	if !p {
    		msg := "assertion failed"
    		// Include information about the assertion location. Due to panic recovery,
    		// this location is otherwise buried in the middle of the panicking stack.
    		if _, file, line, ok := runtime.Caller(1); ok {
    			msg = fmt.Sprintf("%s:%d: %s", file, line, msg)
    		}
    		panic(msg)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. src/go/types/errors.go

    	"go/ast"
    	"go/token"
    	. "internal/types/errors"
    	"runtime"
    	"strings"
    )
    
    func assert(p bool) {
    	if !p {
    		msg := "assertion failed"
    		// Include information about the assertion location. Due to panic recovery,
    		// this location is otherwise buried in the middle of the panicking stack.
    		if _, file, line, ok := runtime.Caller(1); ok {
    			msg = fmt.Sprintf("%s:%d: %s", file, line, msg)
    		}
    		panic(msg)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. src/go/parser/parser.go

    	pos token.Pos   // token position
    	tok token.Token // one token look-ahead
    	lit string      // token literal
    
    	// Error recovery
    	// (used to limit the number of calls to parser.advance
    	// w/o making scanning progress - avoids potential endless
    	// loops across multiple parser functions during error recovery)
    	syncPos token.Pos // last synchronization position
    	syncCnt int       // number of parser.advance calls without progress
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java

        private static final String[] CAT_NAMES =
                { "aliases", "allocation", "count", "fielddata", "health", "indices", "master", "nodeattrs", "nodes", "pending_tasks",
                        "plugins", "recovery", "repositories", "thread_pool", "shards", "segments", "snapshots", "templates" };
    
        // ===================================================================================
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/validating/dispatcher.go

    			defer wg.Done()
    			defer func() {
    				// HandleCrash has already called the crash handlers and it has been configured to utilruntime.ReallyCrash
    				// This block prevents the second panic from failing our process.
    				// This failure mode for the handler functions properly using the channel below.
    				recover()
    			}()
    			defer utilruntime.HandleCrash(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 20:24:12 UTC 2023
    - 13K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. tensorflow/c/eager/parallel_device/parallel_device_lib.cc

        }
        if (TF_GetCode(status_.get()) != TF_OK) {
          TF_SetStatus(status, TF_GetCode(status_.get()),
                       TF_Message(status_.get()));
          // Reset the member `status_` so future op executions (after recovery from
          // the bad `status`) start with an OK status.
          TF_SetStatus(status_.get(), TF_OK, "");
        }
        cancellation_manager_ = nullptr;
        execution_state_ = ExecutionState::kIdle;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 07:47:20 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  10. src/debug/gosym/pclntab.go

    // index out of bounds errors, we trust Go to detect them, and then
    // we recover from the panics and treat them as indicative of a malformed
    // or incomplete table.
    //
    // The methods called by symtab.go, which begin with "go12" prefixes,
    // are expected to have that recovery logic.
    
    // isGo12 reports whether this is a Go 1.2 (or later) symbol table.
    func (t *LineTable) isGo12() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:43:24 UTC 2024
    - 18.8K bytes
    - Viewed (0)
Back to top