Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/jvm/plugins-application/src/main/java/org/gradle/api/plugins/ApplicationPlugin.java

                this.applicationName = applicationName;
                this.executableDir = executableDir;
            }
    
            @Override
            public void execute(Task task) {
                Sync sync = (Sync) task;
                File destinationDir = sync.getDestinationDir();
                if (destinationDir.isDirectory()) {
                    String[] children = destinationDir.list();
                    if (children == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/metrics/metrics.go

     * involves explicitly acknowledging support for the metric across multiple releases, in accordance with
     * the metric stability policy.
     */
    var (
    	lockLastFromStorage   sync.Mutex
    	lockLastToStorage     sync.Mutex
    	lockRecordKeyID       sync.Mutex
    	lockRecordKeyIDStatus sync.Mutex
    
    	lastFromStorage                                 time.Time
    	lastToStorage                                   time.Time
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 09 22:31:32 UTC 2023
    - 12K bytes
    - Viewed (0)
  3. cmd/perf-tests.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"context"
    	"encoding/gob"
    	"errors"
    	"fmt"
    	"io"
    	"math/rand"
    	"net/http"
    	"net/url"
    	"sync"
    	"sync/atomic"
    	"time"
    
    	"github.com/dustin/go-humanize"
    	"github.com/minio/madmin-go/v3"
    	"github.com/minio/minio-go/v7"
    	"github.com/minio/minio-go/v7/pkg/credentials"
    	xhttp "github.com/minio/minio/internal/http"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenParentPomResolveIntegrationTest.groovy

    }
    configurations {
        child1
        child2
    }
    dependencies {
        child1 'org:child1:1.0'
        child2 'org:child2:1.0'
    }
    task retrieveChild1(type: Sync) {
        into 'libs/child1'
        from configurations.child1
    }
    task retrieveChild2(type: Sync) {
        into 'libs/child2'
        from configurations.child2
    }
    """
    
            when:
            child1.pom.expectGet()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  5. src/runtime/sema.go

    		p.prev = x
    	} else {
    		if p.next != y {
    			throw("semaRoot rotateRight")
    		}
    		p.next = x
    	}
    }
    
    // notifyList is a ticket-based notification list used to implement sync.Cond.
    //
    // It must be kept in sync with the sync package.
    type notifyList struct {
    	// wait is the ticket number of the next waiter. It is atomically
    	// incremented outside the lock.
    	wait atomic.Uint32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenLocalRepoResolveIntegrationTest.groovy

                        }
                    }
                    configurations { compile }
                    dependencies {
                        compile 'group:projectA:1.2'
                    }
    
                    task retrieve(type: Sync) {
                        from configurations.compile
                        into 'build'
                    }"""
        }
    
        def "can resolve artifacts from local m2 when user settings.xml does not exist"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. pkg/kubelet/util/manager/watch_based_manager.go

    	// waitGroup is used to ensure that there won't be two concurrent calls to reflector.Run
    	waitGroup sync.WaitGroup
    
    	// lock is to ensure the access and modify of lastAccessTime, stopped, and immutable are thread safety,
    	// and protecting from closing stopCh multiple times.
    	lock           sync.Mutex
    	lastAccessTime time.Time
    	stopped        bool
    	immutable      bool
    	stopCh         chan struct{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/pv_controller_base.go

    	if volume.Spec.ClaimRef == nil {
    		return
    	}
    	// sync the claim when its volume is deleted. Explicitly syncing the
    	// claim here in response to volume deletion prevents the claim from
    	// waiting until the next sync period for its Lost status.
    	claimKey := claimrefToClaimKey(volume.Spec.ClaimRef)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/test/inl_test.go

    			// too, but currently they aren't reported because they have type
    			// parameters and aren't instantiated in sync.
    		},
    		"sync/atomic": {
    			// (*Bool).CompareAndSwap handled below.
    			"(*Bool).Load",
    			"(*Bool).Store",
    			"(*Bool).Swap",
    			"(*Int32).Add",
    			"(*Int32).CompareAndSwap",
    			"(*Int32).Load",
    			"(*Int32).Store",
    			"(*Int32).Swap",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/grpc_service_unix_test.go

    			t.Parallel()
    			var (
    				service         Service
    				err             error
    				data            = []byte("test data")
    				kubeAPIServerWG sync.WaitGroup
    				kmsPluginWG     sync.WaitGroup
    				testCompletedWG sync.WaitGroup
    				socketName      = newEndpoint()
    			)
    
    			testCompletedWG.Add(1)
    			defer testCompletedWG.Done()
    
    			ctx := testContext(t)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 29 05:36:41 UTC 2023
    - 10K bytes
    - Viewed (0)
Back to top