Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 2,460 for syncs (0.22 sec)

  1. docs/bucket/replication/setup_3site_replication.sh

    	--replicate "existing-objects,delete,delete-marker,replica-metadata-sync"
    sleep 1
    
    echo "adding replication rule for b -> a : ${remote_arn}"
    ./mc replicate add siteb/bucket/ \
    	--remote-bucket http://minio:minio123@127.0.0.1:9001/bucket \
    	--replicate "existing-objects,delete,delete-marker,replica-metadata-sync"
    sleep 1
    
    echo "adding replication rule for a -> c : ${remote_arn}"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/testdata/sayhi.go

    package foo
    
    import (
    	"fmt"
    	"sync"
    )
    
    func sayhi(n int, wg *sync.WaitGroup) {
    	fmt.Println("hi", n)
    	fmt.Println("hi", n)
    	wg.Done()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 20 19:36:41 UTC 2021
    - 137 bytes
    - Viewed (0)
  3. src/sync/example_test.go

    package sync_test
    
    import (
    	"fmt"
    	"os"
    	"sync"
    )
    
    type httpPkg struct{}
    
    func (httpPkg) Get(url string) {}
    
    var http httpPkg
    
    // This example fetches several URLs concurrently,
    // using a WaitGroup to block until all the fetches are complete.
    func ExampleWaitGroup() {
    	var wg sync.WaitGroup
    	var urls = []string{
    		"http://www.golang.org/",
    		"http://www.google.com/",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 17:45:47 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. src/sync/atomic/value.go

    func (v *Value) CompareAndSwap(old, new any) (swapped bool) {
    	if new == nil {
    		panic("sync/atomic: compare and swap of nil value into Value")
    	}
    	vp := (*efaceWords)(unsafe.Pointer(v))
    	np := (*efaceWords)(unsafe.Pointer(&new))
    	op := (*efaceWords)(unsafe.Pointer(&old))
    	if op.typ != nil && np.typ != op.typ {
    		panic("sync/atomic: compare and swap of inconsistently typed values")
    	}
    	for {
    		typ := LoadPointer(&vp.typ)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:48:55 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.7.md

    * Fix a kube-controller-manager crash which can result when `--concurrent-resource-quota-syncs` is >1 and pods exist in the system containing certain alpha/beta annotation keys. ([#52092](https://github.com/kubernetes/kubernetes/pull/52092), [@ironcladlou](https://github.com/ironcladlou))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/GlobalLoggingManipulationIntegrationTest.groovy

    class GlobalLoggingManipulationIntegrationTest extends AbstractIntegrationSpec {
    
        @Rule
        BlockingHttpServer sync = new BlockingHttpServer()
        final ToolingApi toolingApi = new ToolingApi(distribution, temporaryFolder)
    
        def setup() {
            toolingApi.requireIsolatedToolingApi()
            sync.start()
            settingsFile.touch()
        }
    
        def cleanup() {
            toolingApi.close()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. test/typeparam/issue48454.dir/a.go

    // Copyright 2021 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 a
    
    import "sync"
    
    type Val[T any] struct {
    	mu  sync.RWMutex
    	val T
    }
    
    func (v *Val[T]) Has() {
    	v.mu.RLock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 24 18:21:14 UTC 2021
    - 280 bytes
    - Viewed (0)
  8. src/cmd/go/internal/imports/tags.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package imports
    
    import (
    	"cmd/go/internal/cfg"
    	"sync"
    )
    
    var (
    	tags     map[string]bool
    	tagsOnce sync.Once
    )
    
    // Tags returns a set of build tags that are true for the target platform.
    // It includes GOOS, GOARCH, the compiler, possibly "cgo",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 26 17:43:59 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  9. pkg/controller/garbagecollector/metrics/metrics.go

    		&metrics.CounterOpts{
    			Subsystem:      GarbageCollectorControllerSubsystem,
    			Name:           "resources_sync_error_total",
    			Help:           "Number of garbage collector resources sync errors",
    			StabilityLevel: metrics.ALPHA,
    		})
    )
    
    var registerMetrics sync.Once
    
    // Register registers GarbageCollectorController metrics.
    func Register() {
    	registerMetrics.Do(func() {
    		legacyregistry.MustRegister(GarbageCollectorResourcesSyncError)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 04 19:21:30 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  10. test/fixedbugs/issue33355.go

    // This code failed on arm64 in the register allocator.
    // See issue 33355.
    
    package server
    
    import (
    	"bytes"
    	"sync"
    )
    
    type client struct {
    	junk [4]int
    	mu   sync.Mutex
    	srv  *Server
    	gw   *gateway
    	msgb [100]byte
    }
    
    type gateway struct {
    	cfg    *gatewayCfg
    	outsim *sync.Map
    }
    
    type gatewayCfg struct {
    	replyPfx []byte
    }
    
    type Account struct {
    	Name string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 01 02:15:18 UTC 2019
    - 2.5K bytes
    - Viewed (0)
Back to top