Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 185 for spelling (0.11 sec)

  1. src/runtime/traceback_test.go

    	return n
    }
    
    // nosplit to avoid preemption or morestack spilling registers.
    //
    //go:nosplit
    //go:noinline
    func testTracebackArgs10(a, b, c, d, e int32) int {
    	// no use of any args
    	return runtime.Stack(testTracebackArgsBuf[:], false)
    }
    
    // norace to avoid race instrumentation changing spill locations.
    // nosplit to avoid preemption or morestack spilling registers.
    //
    //go:norace
    //go:nosplit
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  2. pkg/kubelet/images/image_manager.go

    	RecordImageFinishedPulling(podUID types.UID)
    }
    
    // imageManager provides the functionalities for image pulling.
    type imageManager struct {
    	recorder     record.EventRecorder
    	imageService kubecontainer.ImageService
    	backOff      *flowcontrol.Backoff
    	// It will check the presence of the image, and report the 'image pulling', image pulled' events correspondingly.
    	puller imagePuller
    
    	podPullingTimeRecorder ImagePodPullingTimeRecorder
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. src/internal/trace/testdata/generators/go122-syscall-steal-proc-gen-boundary-bare-m.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Tests syscall P stealing at a generation boundary.
    
    package main
    
    import (
    	"internal/trace"
    	"internal/trace/event/go122"
    	testgen "internal/trace/internal/testgen/go122"
    )
    
    func main() {
    	testgen.Main(gen)
    }
    
    func gen(t *testgen.Trace) {
    	g := t.Generation(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 956 bytes
    - Viewed (0)
  4. pkg/kubelet/cm/cpumanager/cpu_assignment_test.go

    			topoDualSocketMultiNumaPerSocketHT,
    			mustParseCPUSet(t, "0-79"),
    			62,
    			1,
    			"",
    			mustParseCPUSet(t, "0-7,10-17,20-27,30-37,40-47,50-57,60-66,70-76"),
    		},
    		{
    			"allocate 31 full cores with 14 CPUs distributed across each NUMA node and 2 CPUs spilling over to each of NUMA 0, 1, 2 (cpuGroupSize 2)",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 17:31:37 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheReport.kt

                    onFirstDiagnostic(kind, problem)
    
                override fun close(): State =
                    this
            }
    
            class Spooling(
                val spoolFile: File,
                val executor: ManagedExecutor,
                /**
                 * [JsonModelWriter] uses Groovy's [CharBuf] for fast json encoding.
                 */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. pkg/test/echo/server/endpoint/grpcbootstrap.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package endpoint
    
    import "encoding/json"
    
    // Mirror types from grpc to avoid pulling in a bunch of deps
    
    const FileWatcherCertProviderName = "file_watcher"
    
    type FileWatcherCertProviderConfig struct {
    	CertificateFile   string          `json:"certificate_file,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 06 23:16:02 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. releasenotes/notes/startupProbe.yaml

          Startup probes run only at the start of the pod. Once the startup probe completes, readiness probes will continue.
          
          By using a startup probe, we can poll for the sidecar to start more aggressively, without polling as aggressively throughout
          the entire pod's lifecycle.
          On average, this improves pod startup time by roughly 1s.
          
          If the startup probe does not pass after 10 minutes, the pod will be terminated.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 13 23:27:34 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/gc/DefaultGarbageCollectionMonitor.java

    import java.util.concurrent.TimeUnit;
    
    public class DefaultGarbageCollectionMonitor implements GarbageCollectionMonitor {
        public static final String DISABLE_POLLING_SYSTEM_PROPERTY = "org.gradle.daemon.gc.polling.disabled";
    
        private static final int POLL_INTERVAL_SECONDS = 1;
        private static final int POLL_DELAY_SECONDS = 1;
        private static final int EVENT_WINDOW = 20;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. tools/docker-builder/crane.go

    				bases.Insert(args.Base)
    				b.Args = append(b.Args, args)
    			}
    			builds = append(builds, b)
    		}
    	}
    
    	// Warm up our base images while we are building everything. This isn't pulling them -- we actually
    	// never pull them -- but it is pulling the config file from the remote registry.
    	builder.WarmBase(ctx, a.Architectures, sets.SortedList(bases)...)
    
    	// Build all dependencies
    	makeStart := time.Now()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 6K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/phases/init/preflight.go

    		return err
    	}
    
    	if data.DryRun() {
    		fmt.Println("[preflight] Would pull the required images (like 'kubeadm config images pull')")
    		return nil
    	}
    
    	fmt.Println("[preflight] Pulling images required for setting up a Kubernetes cluster")
    	fmt.Println("[preflight] This might take a minute or two, depending on the speed of your internet connection")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top