Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 54 of 54 for scaleIO (0.11 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    		nil, // No need for typer, since only using validation
    		namespaceScoped,
    		kind,
    		schemaValidator,
    		nil, // No status schema validator
    		sts,
    		nil, // No need for status
    		nil, // No need for scale
    		nil, // No need for selectable fields
    	)
    
    	return func(new, old *unstructured.Unstructured) {
    		_ = strategy.ValidateUpdate(context.TODO(), new, old)
    	}, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  2. pkg/controller/job/job_controller.go

    	completionMode := completionModeStr(job)
    	var diff int
    
    	// Updating succeeded metric must be handled differently
    	// for Indexed Jobs to handle the case where the job has
    	// been scaled down by reducing completions & parallelism
    	// in tandem, and now a previously completed index is
    	// now out of range (i.e. index >= spec.Completions).
    	if isIndexedJob(job) {
    		completions := int(*job.Spec.Completions)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/test.go

    		// overhead, and scale it up from there proportional to the overall test
    		// timeout on the assumption that the time to write and read a goroutine
    		// dump from a timed-out test process scales roughly with the overall
    		// running time of the test.
    		//
    		// This is probably too generous when the timeout is very long, but it seems
    		// better to hard-code a scale factor than to hard-code a constant delay.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. src/runtime/malloc.go

    	// Max number of threads to run garbage collection.
    	// 2, 3, and 4 are all plausible maximums depending
    	// on the hardware details of the machine. The garbage
    	// collector scales well to 32 cpus.
    	_MaxGcproc = 32
    
    	// minLegalPointer is the smallest possible legal pointer.
    	// This is the smallest possible architectural page size,
    	// since we assume that the first page is never mapped.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top