Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 77 for _Gwaiting (0.14 sec)

  1. src/crypto/tls/handshake_client_test.go

    // connFromCommand starts the reference server process, connects to it and
    // returns a recordingConn for the connection. The stdin return value is an
    // opensslInput for the stdin of the child process. It must be closed before
    // Waiting for child.
    func (test *clientTest) connFromCommand() (conn *recordingConn, child *exec.Cmd, stdin opensslInput, stdout *opensslOutputSink, err error) {
    	cert := testRSACertificate
    	if len(test.cert) > 0 {
    		cert = test.cert
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  2. src/runtime/pprof/pprof_test.go

    		t.Skip("skipping on wasip1")
    	}
    
    	broken := cpuProfilingBroken()
    
    	deadline, ok := t.Deadline()
    	if broken || !ok {
    		if broken && testing.Short() {
    			// If it's expected to be broken, no point waiting around.
    			deadline = time.Now().Add(1 * time.Second)
    		} else {
    			deadline = time.Now().Add(10 * time.Second)
    		}
    	}
    
    	// If we're running a long test, start with a long duration
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.3.md

        * When a pod is deleted, the controller waits for the volume to be safely unmounted by kubelet. It does this by waiting for the volume to no longer be present in the nodes Node.Status.VolumesInUse list. If the volume is not safely unmounted by kubelet within a pre-configured duration (3 minutes in Kubernetes v1.3), the controller unilaterally detaches the volume (this...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  4. pkg/controller/disruption/disruption_test.go

    				}
    				diff = cmp.Diff(tc.wantConditions, pod.Status.Conditions, cmpopts.IgnoreFields(v1.PodCondition{}, "LastTransitionTime"))
    				return diff == "", nil
    			}); err != nil {
    				t.Fatalf("Failed waiting for worker to sync: %v, (-want,+got):\n%s", err, diff)
    			}
    		})
    	}
    }
    
    func TestKeepExistingPDBConditionDuringSync(t *testing.T) {
    	_, ctx := ktesting.NewTestContext(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    		if err != nil {
    			if apierrors.IsConflict(err) {
    				return false, nil
    			}
    			return false, err
    		}
    		return true, nil
    	})
    	if err != nil {
    		t.Fatalf("unexpected error waiting for CRD update: %v", err)
    	}
    
    	if updated.Spec.Versions[0].Schema.OpenAPIV3Schema.Properties["spec"].Properties["field"].XValidations[0].OptionalOldSelf != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  6. pkg/volume/csi/csi_attacher_test.go

    			if apierrors.IsNotFound(err) {
    				<-ticker.C
    				continue
    			}
    			t.Error(err)
    		}
    		if attach != nil {
    			t.Logf("attachment found on try %d, stopping wait...", i)
    			break
    		}
    	}
    	t.Logf("stopped waiting for attachment")
    
    	if attach == nil {
    		t.Logf("attachment not found for id:%v", attachID)
    	} else {
    		attach.Status = status
    		t.Logf("updating attachment %s with attach status %v", attachID, status)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  7. pkg/controller/daemon/daemon_controller.go

    		return
    	}
    
    	// Otherwise, it's an orphan. Get a list of all matching DaemonSets and sync
    	// them to see if anyone wants to adopt it.
    	// DO NOT observe creation because no controller should be waiting for an
    	// orphan.
    	dss := dsc.getDaemonSetsForPod(pod)
    	if len(dss) == 0 {
    		return
    	}
    	logger.V(4).Info("Orphan Pod added", "pod", klog.KObj(pod))
    	for _, ds := range dss {
    		dsc.enqueueDaemonSet(ds)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    		time.Sleep(time.Second)
    		// Wait for in-flight requests to drain
    		oldInfo.waitGroup.Wait()
    	}()
    
    	select {
    	case <-time.After(r.requestTimeout * 2):
    		klog.Warningf("timeout waiting for requests to drain for %s/%s, tearing down storage", oldInfo.spec.Group, oldInfo.spec.Names.Kind)
    	case <-requestsDrained:
    	}
    
    	for _, storage := range oldInfo.storages {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  9. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	// can take a while if we're processing each node serially as well. So we
    	// process them with bounded concurrency instead, since most of the time is
    	// spent waiting on io.
    	workqueue.ParallelizeUntil(ctx, nc.nodeUpdateWorkerSize, len(nodes), updateNodeFunc)
    
    	nc.handleDisruption(ctx, zoneToNodeConditions, nodes)
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_server_test.go

    	case connOrError := <-connChan:
    		if err, ok := connOrError.(error); ok {
    			return nil, nil, err
    		}
    		tcpConn = connOrError.(net.Conn)
    	case <-time.After(2 * time.Second):
    		return nil, nil, errors.New("timed out waiting for connection from child process")
    	}
    
    	record := &recordingConn{
    		Conn: tcpConn,
    	}
    
    	return record, cmd, nil
    }
    
    func (test *serverTest) dataPath() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
Back to top