Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 114 of 114 for actors (0.26 sec)

  1. pkg/kubelet/pod_workers.go

    	return f.syncTerminatedPod(ctx, pod, podStatus)
    }
    
    const (
    	// jitter factor for resyncInterval
    	workerResyncIntervalJitterFactor = 0.5
    
    	// jitter factor for backOffPeriod and backOffOnTransientErrorPeriod
    	workerBackOffPeriodJitterFactor = 0.5
    
    	// backoff period when transient error occurred.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  2. src/cmd/go/go_test.go

    // Copyright 2015 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.
    
    package main_test
    
    import (
    	"bytes"
    	"debug/elf"
    	"debug/macho"
    	"debug/pe"
    	"encoding/binary"
    	"flag"
    	"fmt"
    	"go/format"
    	"internal/godebug"
    	"internal/platform"
    	"internal/testenv"
    	"io"
    	"io/fs"
    	"log"
    	"math"
    	"os"
    	"os/exec"
    	"path/filepath"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  3. src/runtime/mheap.go

    // Copyright 2009 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.
    
    // Page heap.
    //
    // See malloc.go for overview.
    
    package runtime
    
    import (
    	"internal/cpu"
    	"internal/goarch"
    	"internal/runtime/atomic"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    const (
    	// minPhysPageSize is a lower-bound on the physical page size. The
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    // Copyright 2015 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.
    
    // Lowering arithmetic
    (Add(64|32|16|8) ...) => (ADD(Q|L|L|L) ...)
    (AddPtr ...) => (ADDQ ...)
    (Add(32|64)F ...) => (ADDS(S|D) ...)
    
    (Sub(64|32|16|8) ...) => (SUB(Q|L|L|L) ...)
    (SubPtr ...) => (SUBQ ...)
    (Sub(32|64)F ...) => (SUBS(S|D) ...)
    
    (Mul(64|32|16|8) ...) => (MUL(Q|L|L|L) ...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
Back to top