Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 142 for syncs (0.06 sec)

  1. plugin/pkg/admission/limitranger/admission_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package limitranger
    
    import (
    	"context"
    	"fmt"
    	"strconv"
    	"sync"
    	"sync/atomic"
    	"testing"
    	"time"
    
    	corev1 "k8s.io/api/core/v1"
    	apiequality "k8s.io/apimachinery/pkg/api/equality"
    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	//
    	// A sync.Map is used because in practice sharing of a claim between
    	// pods is expected to be rare compared to per-pod claim, so we end up
    	// hitting the "multiple goroutines read, write, and overwrite entries
    	// for disjoint sets of keys" case that sync.Map is optimized for.
    	inFlightAllocations sync.Map
    }
    
    // New initializes a new plugin and returns it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  3. src/cmd/internal/testdir/testdir_test.go

    	}
    	for _, name := range names {
    		cmd = append(cmd, filepath.Join(dir, name))
    	}
    	return runcmd(cmd...)
    }
    
    var stdlibImportcfgStringOnce sync.Once // TODO(#56102): Use sync.OnceValue once available. Also below.
    var stdlibImportcfgString string
    
    func stdlibImportcfg() string {
    	stdlibImportcfgStringOnce.Do(func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  4. cmd/iam.go

    package cmd
    
    import (
    	"bytes"
    	"context"
    	"encoding/base64"
    	"encoding/json"
    	"errors"
    	"fmt"
    	"math/rand"
    	"path"
    	"sort"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"time"
    
    	libldap "github.com/go-ldap/ldap/v3"
    	"github.com/minio/madmin-go/v3"
    	"github.com/minio/minio-go/v7/pkg/set"
    	"github.com/minio/minio/internal/arn"
    	"github.com/minio/minio/internal/auth"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		{name: "FlagLT"}, // CC=1 (less than)
    		{name: "FlagGT"}, // CC=2 (greater than)
    		{name: "FlagOV"}, // CC=3 (overflow)
    
    		// Fast-BCR-serialization to ensure store-load ordering.
    		{name: "SYNC", argLength: 1, reg: sync, asm: "SYNC", typ: "Mem"},
    
    		// Atomic loads. These are just normal loads but return <value,memory> tuples
    		// so they can be properly ordered with other loads.
    		// load from arg0+auxint+aux.  arg1=mem.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_container.go

    }
    
    // killContainersWithSyncResult kills all pod's containers with sync results.
    func (m *kubeGenericRuntimeManager) killContainersWithSyncResult(ctx context.Context, pod *v1.Pod, runningPod kubecontainer.Pod, gracePeriodOverride *int64) (syncResults []*kubecontainer.SyncResult) {
    	containerResults := make(chan *kubecontainer.SyncResult, len(runningPod.Containers))
    	wg := sync.WaitGroup{}
    
    	wg.Add(len(runningPod.Containers))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ppc64/ssa.go

    		ssa.OpPPC64LoweredAtomicStore64:
    		// SYNC or LWSYNC
    		// MOVB/MOVW/MOVD arg1,(arg0)
    		st := ppc64.AMOVD
    		switch v.Op {
    		case ssa.OpPPC64LoweredAtomicStore8:
    			st = ppc64.AMOVB
    		case ssa.OpPPC64LoweredAtomicStore32:
    			st = ppc64.AMOVW
    		}
    		arg0 := v.Args[0].Reg()
    		arg1 := v.Args[1].Reg()
    		// If AuxInt == 0, LWSYNC (Store-Release), else SYNC
    		// SYNC
    		syncOp := ppc64.ASYNC
    		if v.AuxInt == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    So, be careful where you place your configuration.
    
    [[sec:sync_task]]
    === Using the `Sync` task
    
    The link:{groovyDslPath}/org.gradle.api.tasks.Sync.html[Sync] task, which extends the `Copy` task, copies the source files into the destination directory and then removes any files from the destination directory which it did not copy.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/dwarf.go

    	"cmd/internal/src"
    	"cmd/internal/sys"
    	"cmd/link/internal/loader"
    	"cmd/link/internal/sym"
    	"fmt"
    	"internal/abi"
    	"internal/buildcfg"
    	"log"
    	"path"
    	"runtime"
    	"sort"
    	"strings"
    	"sync"
    )
    
    // dwctxt is a wrapper intended to satisfy the method set of
    // dwarf.Context, so that functions like dwarf.PutAttrs will work with
    // DIEs that use loader.Sym as opposed to *sym.Symbol. It is also
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  10. cmd/peer-rest-server.go

    package cmd
    
    import (
    	"bytes"
    	"context"
    	"encoding/gob"
    	"encoding/hex"
    	"encoding/json"
    	"errors"
    	"fmt"
    	"io"
    	"net/http"
    	"net/url"
    	"strconv"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"time"
    
    	"github.com/dustin/go-humanize"
    	"github.com/klauspost/compress/zstd"
    	"github.com/minio/madmin-go/v3"
    	"github.com/minio/minio/internal/bucket/bandwidth"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top