Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 918 for syncs (0.04 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyModuleResolveIntegrationTest.groovy

            buildFile << """
    configurations {
        compile
    }
    dependencies {
        repositories {
            ivy { url "${ivyRepo.uri}" }
        }
        compile 'ivy.configuration:projectA:1.2'
    }
    task retrieve(type: Sync) {
      from configurations.compile
      into 'libs'
    }
    """
            when: "projectA uses a wildcard configuration mapping for dependency on projectB"
            def moduleA = ivyRepo.module('ivy.configuration', 'projectA', '1.2')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. pkg/kubelet/config/config_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package config
    
    import (
    	"context"
    	"math/rand"
    	"reflect"
    	"sort"
    	"strconv"
    	"sync"
    	"testing"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	apiequality "k8s.io/apimachinery/pkg/api/equality"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/sets"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_discovery_controller.go

    		AddFunc:    c.addCustomResourceDefinition,
    		UpdateFunc: c.updateCustomResourceDefinition,
    		DeleteFunc: c.deleteCustomResourceDefinition,
    	})
    
    	c.syncFn = c.sync
    
    	return c
    }
    
    func (c *DiscoveryController) sync(version schema.GroupVersion) error {
    
    	apiVersionsForDiscovery := []metav1.GroupVersionForDiscovery{}
    	apiResourcesForDiscovery := []metav1.APIResource{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 21 11:40:03 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/etcd3/watcher_test.go

    		expectGetCount   int
    	}{
    		{
    			name:            "None of the current objects match watchKey: sync with empty page",
    			watchKey:        "/pods/test/",
    			watcherMaxLimit: 1,
    			expectGetCount:  1,
    		},
    		{
    			name:             "The number of current objects is less than defaultWatcherMaxLimit: sync with one page",
    			watchKey:         "/pods/",
    			watcherMaxLimit:  3,
    			expectEventCount: 2,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 12.3K bytes
    - Viewed (1)
  5. src/crypto/tls/bogo_config.json

            "Basic-Client-NoTicket-TLS-Sync": "TODO: first pass, this should be fixed",
            "Basic-Server-RSA-TLS-Sync": "TODO: first pass, this should be fixed",
            "Basic-Client-NoTicket-TLS-Sync-SplitHandshakeRecords": "TODO: first pass, this should be fixed",
            "Basic-Server-RSA-TLS-Sync-SplitHandshakeRecords": "TODO: first pass, this should be fixed",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 15:52:42 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  6. cmd/kube-scheduler/app/server.go

    			return false
    		}
    	}
    
    	handlerSyncReadyCh := make(chan struct{})
    	handlerSyncCheck := healthz.NamedCheck("sched-handler-sync", func(_ *http.Request) error {
    		select {
    		case <-handlerSyncReadyCh:
    			return nil
    		default:
    		}
    		return fmt.Errorf("waiting for handlers to sync")
    	})
    	readyzChecks = append(readyzChecks, handlerSyncCheck)
    
    	// Start up the healthz server.
    	if cc.SecureServing != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/grpc_service_unix_test.go

    			var (
    				service         kmsservice.Service
    				err             error
    				data            = []byte("test data")
    				uid             = string(uuid.NewUUID())
    				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: Fri Jul 21 19:25:52 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  8. cmd/erasure.go

    package cmd
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"math/rand"
    	"os"
    	"runtime"
    	"sort"
    	"sync"
    	"time"
    
    	"github.com/minio/madmin-go/v3"
    	"github.com/minio/minio/internal/dsync"
    	xioutil "github.com/minio/minio/internal/ioutil"
    	"github.com/minio/pkg/v3/sync/errgroup"
    )
    
    // list all errors that can be ignore in a bucket operation.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16K bytes
    - Viewed (0)
  9. src/compress/flate/deflate.go

    	if d.windowEnd-d.index < minMatchLength+maxMatchLength && !d.sync {
    		return
    	}
    
    	d.maxInsertIndex = d.windowEnd - (minMatchLength - 1)
    
    Loop:
    	for {
    		if d.index > d.windowEnd {
    			panic("index > windowEnd")
    		}
    		lookahead := d.windowEnd - d.index
    		if lookahead < minMatchLength+maxMatchLength {
    			if !d.sync {
    				break Loop
    			}
    			if d.index > d.windowEnd {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/CachedMissingModulesIntegrationTest.groovy

                    }
                }
                configurations { compile }
                dependencies {
                    compile 'group:projectA:latest.integration'
                }
    
                task retrieve(type: Sync) {
                    into 'libs'
                    from configurations.compile
                }
                """
    
            when:
            def repo1MetaData = repo1.getModuleMetaData("group", "projectA")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 18.1K bytes
    - Viewed (0)
Back to top