Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 453 for too (0.34 sec)

  1. pkg/controller/job/job_controller_test.go

    			expectedReady:      ptr.To[int32](0),
    			controllerTime:     &referenceTime,
    		},
    		"too few active pods with a dynamic job": {
    			parallelism:       2,
    			completions:       -1,
    			backoffLimit:      6,
    			activePods:        1,
    			expectedCreations: 1,
    			expectedActive:    2,
    			expectedReady:     ptr.To[int32](0),
    		},
    		"too few active pods, with controller error": {
    			parallelism:        2,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  2. src/crypto/ecdh/nist.go

    	// 72 bytes is enough for every scalar in this package, and having a fixed
    	// size lets us avoid heap allocations.
    	if len(a) > 72 {
    		panic("crypto/ecdh: internal error: isLess input too large")
    	}
    	bufA, bufB := make([]byte, 72), make([]byte, 72)
    	for i := range a {
    		bufA[i], bufB[i] = a[len(a)-i-1], b[len(b)-i-1]
    	}
    
    	// Perform a subtraction with borrow.
    	var borrow uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. src/crypto/tls/auth.go

    		case elliptic.P521():
    		default:
    			return fmt.Errorf("tls: unsupported certificate curve (%s)", pub.Curve.Params().Name)
    		}
    	case *rsa.PublicKey:
    		return fmt.Errorf("tls: certificate RSA key size too small for supported signature algorithms")
    	case ed25519.PublicKey:
    	default:
    		return fmt.Errorf("tls: unsupported certificate key (%T)", pub)
    	}
    
    	if cert.SupportedSignatureAlgorithms != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/selection/DefaultBuildTaskSelector.java

            this.problemsService = problemsService;
        }
    
        @Override
        public Filter resolveExcludedTaskName(BuildState defaultBuild, String taskName) {
            if (!defaultBuild.isProjectsCreated()) {
                // Too early to resolve excludes
                return new Filter(defaultBuild, Specs.satisfyNone());
            }
            TaskSelector.SelectionContext selection = sanityCheckPath(taskName, "excluded tasks");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. pilot/pkg/features/experimental.go

    			"If analysis is enabled, pilot will run istio analyzers using this value as interval in seconds "+
    				"Istio Resources",
    		).Lookup()
    		if val < 1*time.Second {
    			log.Warnf("PILOT_ANALYSIS_INTERVAL %s is too small, it will be set to default 10 seconds", val.String())
    			return 10 * time.Second
    		}
    		return val
    	}()
    
    	EnableStatus = env.Register(
    		"PILOT_ENABLE_STATUS",
    		false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. pkg/kubelet/util/manager/cache_based_manager.go

    //   - whenever a pod is created or updated, the cached versions of all objects
    //     is referencing are invalidated
    //   - every GetObject() call tries to fetch the value from local cache; if it is
    //     not there, invalidated or too old, we fetch it from apiserver and refresh the
    //     value in cache; otherwise it is just fetched from cache
    func NewCacheBasedManager(objectStore Store, getReferencedObjects func(*v1.Pod) sets.Set[string]) Manager {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. src/runtime/symtab.go

    //
    // The text, or instruction stream is generated as one large buffer.
    // The off (offset) for a function is its offset within this buffer.
    // If the total text size gets too large, there can be issues on platforms like ppc64
    // if the target of calls are too far for the call instruction.
    // To resolve the large text issue, the text is split into multiple text sections
    // to allow the linker to generate long calls when necessary.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/builtins.go

    		nargs = len(argList)
    	}
    
    	// check argument count
    	{
    		msg := ""
    		if nargs < bin.nargs {
    			msg = "not enough"
    		} else if !bin.variadic && nargs > bin.nargs {
    			msg = "too many"
    		}
    		if msg != "" {
    			check.errorf(argErrPos(call), WrongArgCount, invalidOp+"%s arguments for %v (expected %d, found %d)", msg, call, bin.nargs, nargs)
    			return
    		}
    	}
    
    	switch id {
    	case _Append:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  9. docs/en/docs/async.md

    # Concurrency and async / await
    
    Details about the `async def` syntax for *path operation functions* and some background about asynchronous code, concurrency, and parallelism.
    
    ## In a hurry?
    
    <abbr title="too long; didn't read"><strong>TL;DR:</strong></abbr>
    
    If you are using third party libraries that tell you to call them with `await`, like:
    
    ```Python
    results = await some_library()
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/liveness/plive.go

    		// should not be too big.
    		frameOffset := v.FrameOffset()
    		if frameOffset != int64(int32(frameOffset)) {
    			base.Fatalf("frame offset too big: %v %d", v, frameOffset)
    		}
    		off = objw.Uint32(x, off, uint32(frameOffset))
    
    		t := v.Type()
    		sz := t.Size()
    		if sz != int64(int32(sz)) {
    			base.Fatalf("stack object too big: %v of type %v, size %d", v, t, sz)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top