Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 58 for addAction (0.14 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue.go

    func (p *PriorityQueue) calculateBackoffDuration(podInfo *framework.QueuedPodInfo) time.Duration {
    	duration := p.podInitialBackoffDuration
    	for i := 1; i < podInfo.Attempts; i++ {
    		// Use subtraction instead of addition or multiplication to avoid overflow.
    		if duration > p.podMaxBackoffDuration-duration {
    			return p.podMaxBackoffDuration
    		}
    		duration += duration
    	}
    	return duration
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/buildlist.go

    			// are sufficient to build the packages it contains. We must load its full
    			// transitive dependency graph to be sure that we see all relevant
    			// dependencies. In addition, we must load the requirements of any module
    			// that is explicitly marked as unpruned.
    			nextPruning := summary.pruning
    			if pruning == unpruned {
    				nextPruning = unpruned
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/debug.go

    // the input register, and the second element holds the stack location
    // of the param (the assumption being that when optimization is off,
    // each input param reg will be spilled in the prolog). In addition
    // to the register params, here we also build location lists (where
    // appropriate for the ".closureptr" compiler-synthesized variable
    // needed by the debugger for range func bodies.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    		if len(spec.Versions) >= 1 && spec.Versions[0].Name != spec.Version {
    			allErrs = append(allErrs, field.Invalid(fldPath.Child("version"), spec.Version, "must match the first version in spec.versions"))
    		}
    	}
    
    	// in addition to the basic name restrictions, some names are required for spec, but not for status
    	if len(spec.Names.Plural) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("names", "plural"), ""))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //   EXPECT_EQ(100, tl.get());  // In thread 1, tl has the original value.
    //   tl.set(200);
    //   EXPECT_EQ(200, tl.get());
    //
    // The template type argument T must have a public copy constructor.
    // In addition, the default ThreadLocal constructor requires T to have
    // a public default constructor.
    //
    // An object managed for a thread by a ThreadLocal instance is deleted
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    // Lowering constants
    (Const(64|32|16|8) [val]) => (MOVDconst [int64(val)])
    (Const(32|64)F ...) => (FMOV(S|D)const ...)
    (ConstNil) => (MOVDconst [0])
    (ConstBool [t]) => (MOVDconst [b2i(t)])
    
    // Carrying addition.
    (Select0 (Add64carry x y c)) =>            (Select0 <typ.UInt64> (ADDE x y (Select1 <typ.UInt64> (ADDCconst c [-1]))))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  7. src/go/build/build.go

    	// ReleaseTags defaults to the list of Go releases the current release is compatible with.
    	// BuildTags is not set for the Default build Context.
    	// In addition to the BuildTags, ToolTags, and ReleaseTags, build constraints
    	// consider the values of GOARCH and GOOS as satisfied tags.
    	// The last element in ReleaseTags is assumed to be the current release.
    	BuildTags   []string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  8. pkg/workloadapi/workload.pb.go

    // to answer a question like "what is this IP address", similar to a reverse DNS lookup.
    //
    // Each resource will have a mesh-wide unique opaque name, defined in the individual messages.
    // In addition, to support lookup by IP address, they will have *alias* names for each IP the resource represents.
    // There may be multiple aliases for the same resource (examples: service in multiple networks, or a dual-stack workload).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  9. src/runtime/mbitmap.go

    			p := buf.get2()
    			p[0] = *dstx
    			p[1] = *srcx
    		}
    	}
    }
    
    // bulkBarrierPreWriteSrcOnly is like bulkBarrierPreWrite but
    // does not execute write barriers for [dst, dst+size).
    //
    // In addition to the requirements of bulkBarrierPreWrite
    // callers need to ensure [dst, dst+size) is zeroed.
    //
    // This is used for special cases where e.g. dst was just
    // created and zeroed with malloc.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    					t.Errorf("Expected: %#v, got: %#v", e, a)
    				}
    			case <-time.After(1 * time.Second):
    				// the watch was established otherwise
    				// we would be blocking on cache.Watch(...)
    				// in addition to that, the tests are serial in nature,
    				// meaning that there is no other actor
    				// that could add items to the database,
    				// which could result in receiving new items.
    				// given that waiting 1s seems okay
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
Back to top