Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 471 for Initial (0.46 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/micro_time_test.go

    	for i := 0; i < 500; i++ {
    		var initial, final MicroTime
    		fuzzer.Fuzz(&initial)
    		b, err := cbor.Marshal(initial)
    		if err != nil {
    			t.Errorf("error encoding %v: %v", initial, err)
    			continue
    		}
    		err = cbor.Unmarshal(b, &final)
    		if err != nil {
    			t.Errorf("%v: error decoding %v: %v", initial, string(b), err)
    		}
    		if !final.Equal(&initial) {
    			diag, err := cbor.Diagnose(b)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. pkg/istio-agent/xds_proxy_delta.go

    			con.sendDeltaRequest(req)
    			if !initialRequestsSent.Load() && req.TypeUrl == model.ListenerType {
    				// fire off an initial NDS request
    				if _, f := p.handlers[model.NameTableType]; f {
    					con.sendDeltaRequest(&discovery.DeltaDiscoveryRequest{
    						TypeUrl: model.NameTableType,
    					})
    				}
    				// fire off an initial PCDS request
    				if _, f := p.handlers[model.ProxyConfigType]; f {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/wait/wait_test.go

    			if tt.initial != nil {
    				copied := *tt.initial
    				initial = &copied
    			} else {
    				initial = nil
    			}
    			t.Run(fmt.Sprintf("%#v seed=%d", initial, seed), func(t *testing.T) {
    				rand.Seed(seed)
    				for i := 0; i < len(tt.want); i++ {
    					got := initial.Step()
    					t.Logf("[%d]=%s", i, got)
    					if initial != nil && initial.Jitter > 0 {
    						if got == tt.want[i] {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/volumebinding/assume_cache_test.go

    	if err := verifyPV(cache, oldPV.Name, oldPV); err != nil {
    		t.Fatalf("Failed to GetPV() after initial update: %v", err)
    	}
    
    	// Restore PV
    	cache.Restore(oldPV.Name)
    	if err := verifyPV(cache, oldPV.Name, oldPV); err != nil {
    		t.Fatalf("Failed to GetPV() after initial restore: %v", err)
    	}
    
    	// Assume newPV
    	if err := cache.Assume(newPV); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. pkg/kubelet/prober/worker_test.go

    		expectContinue(t, w, w.doProbe(ctx), "during initial delay")
    		// Default value depends on probe, Success for liveness, Failure for readiness, Unknown for startup
    		switch probeType {
    		case liveness:
    			expectResult(t, w, results.Success, "during initial delay")
    		case readiness:
    			expectResult(t, w, results.Failure, "during initial delay")
    		case startup:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 23:48:10 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  6. pkg/kubelet/preemption/preemption_test.go

    func TestAdmissionRequirementsSubtract(t *testing.T) {
    	type testRun struct {
    		testName       string
    		initial        admissionRequirementList
    		inputPod       *v1.Pod
    		expectedOutput admissionRequirementList
    	}
    	allPods := getTestPods()
    	runs := []testRun{
    		{
    			testName:       "subtract a pod from no requirements",
    			initial:        getAdmissionRequirementList(0, 0, 0),
    			inputPod:       allPods[burstable],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 24 10:04:08 UTC 2022
    - 19.2K bytes
    - Viewed (0)
  7. pkg/controlplane/apiserver/aggregator.go

    			// let the CRD controller process the initial set of CRDs before starting the autoregistration controller.
    			// this prevents the autoregistration controller's initial sync from deleting APIServices for CRDs that still exist.
    			// we only need to do this if CRDs are enabled on this server.  We can't use discovery because we are the source for discovery.
    			if crdAPIEnabled {
    				klog.Infof("waiting for initial CRD sync...")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 18:08:20 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    2. License Grants.
    
        2.1. The Initial Developer Grant.
    
        Conditioned upon Your compliance with Section 3.1 below and subject
        to third party intellectual property claims, the Initial Developer
        hereby grants You a world-wide, royalty-free, non-exclusive license:
    
        (a) under intellectual property rights (other than patent or
        trademark) Licensable by Initial Developer, to use, reproduce,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/model/ObjectFactory.java

         *
         * @since 5.0
         */
        DirectoryProperty directoryProperty();
    
        /**
         * Creates a new {@link RegularFileProperty} that uses the project directory to resolve relative paths, if required. The property has no initial value.
         *
         * @since 5.0
         */
        RegularFileProperty fileProperty();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/etcd/local.go

    		etcdLocalhostAddress = "::1"
    	}
    	defaultArguments := []kubeadmapi.Arg{
    		{Name: "name", Value: nodeName},
    		// TODO: start using --initial-corrupt-check once the graduated flag is available,
    		// https://github.com/kubernetes/kubeadm/issues/2676
    		{Name: "experimental-initial-corrupt-check", Value: "true"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 13.8K bytes
    - Viewed (1)
Back to top