Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 207 for December (0.12 sec)

  1. src/cmd/compile/internal/ssagen/phi.go

    			continue
    		}
    
    		// Process phis as new defs. They come before FwdRefs in this block.
    		for _, v := range b.Values {
    			if v.Op != ssa.OpPhi {
    				continue
    			}
    			n := int32(v.AuxInt)
    			// Remember the old assignment so we can undo it when we exit b.
    			stk = append(stk, stackEntry{n: n, v: values[n]})
    			// Record the new assignment.
    			values[n] = v
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  2. src/go/parser/resolver.go

    	for _, ident := range idents {
    		if ident.Obj != nil {
    			panic(fmt.Sprintf("%v: identifier %s already declared or resolved", ident.Pos(), ident.Name))
    		}
    		obj := ast.NewObj(kind, ident.Name)
    		// remember the corresponding declaration for redeclaration
    		// errors and global variable resolution/typechecking phase
    		obj.Decl = decl
    		obj.Data = data
    		// Identifiers (for receiver type parameters) are written to the scope, but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  3. hack/golangci.yaml

              #
              # By default, structured logging call parameters are checked, but usage of
              # those calls is not required. That is changed on a per-file basis.
              #
              # Remember to clean the golangci-lint cache when changing the configuration and
              # running the verify-golangci-lint.sh script multiple times, otherwise
              # golangci-lint will report stale results:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/Monitor.java

     *
     * <h3>{@code synchronized}</h3>
     *
     * <p>This version is the fewest lines of code, largely because the synchronization mechanism used
     * is built into the language and runtime. But the programmer has to remember to avoid a couple of
     * common bugs: The {@code wait()} must be inside a {@code while} instead of an {@code if}, and
     * {@code notifyAll()} must be used instead of {@code notify()} because there are two different
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 18:22:01 UTC 2023
    - 42.5K bytes
    - Viewed (0)
  5. cluster/addons/addon-manager/kube-addons.sh

    # Disabling this flag will force all addon managers to assume they are the
    # leaders.
    ADDON_MANAGER_LEADER_ELECTION=${ADDON_MANAGER_LEADER_ELECTION:-true}
    
    # Remember that you can't log from functions that print some output (because
    # logs are also printed on stdout).
    # $1 level
    # $2 message
    function log() {
      # manage log levels manually here
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 15 05:40:38 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  6. pkg/scheduler/apis/config/validation/validation.go

    	}
    	return nil
    }
    
    type invalidPlugins struct {
    	schemeGroupVersion string
    	plugins            []string
    }
    
    // invalidPluginsByVersion maintains a list of removed/deprecated plugins in each version.
    // Remember to add an entry to that list when creating a new component config
    // version (even if the list of invalid plugins is empty).
    var invalidPluginsByVersion = []invalidPlugins{
    	{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/connection/RealRoutePlanner.kt

            connectionUser = connectionUser,
            routes = routes,
            requireMultiplexed = planToReplace != null && planToReplace.isReady,
          ) ?: return null
    
        // If we coalesced our connection, remember the replaced connection's route. That way if the
        // coalesced connection later fails we don't waste a valid route.
        if (planToReplace != null) {
          nextRouteToTry = planToReplace.route
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    		if preconditions != nil {
    			if err := preconditions.Check(key, origState.obj); err != nil {
    				if origStateIsCurrent {
    					return err
    				}
    
    				// It's possible we're working with stale data.
    				// Remember the revision of the potentially stale data and the resulting update error
    				cachedRev := origState.rev
    				cachedUpdateErr := err
    
    				// Actually fetch
    				origState, err = getCurrentState()
    				if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/branches.go

    		varPos = pos
    		varName = name
    		// Any existing forward goto jumping over the variable
    		// declaration is invalid. The goto may still jump out
    		// of the block and be ok, but we don't know that yet.
    		// Remember all forward gotos as potential bad gotos.
    		badGotos = append(badGotos[:0], fwdGotos...)
    	}
    
    	jumpsOverVarDecl := func(fwd *BranchStmt) bool {
    		if varPos.IsKnown() {
    			for _, bad := range badGotos {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jun 26 00:21:29 UTC 2022
    - 9.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/quota/v1/generic/evaluator.go

    	cache := &atomic.Bool{}
    	cache.Store(false)
    	return func() bool {
    		if cache.Load() {
    			// short-circuit if already synced
    			return true
    		}
    		if hasSynced() {
    			// remember we synced
    			cache.Store(true)
    			return true
    		}
    		return false
    	}
    }
    
    // protectedLister returns notReadyError if hasSynced returns false, otherwise delegates to delegate
    type protectedLister struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 05 00:02:47 UTC 2023
    - 11.7K bytes
    - Viewed (0)
Back to top