Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,201 for readIvy (0.28 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/testdata/pod.json

       ...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 18 15:31:52 UTC 2021
    - 6.4K bytes
    - Viewed (0)
  2. src/runtime/debug_test.go

    	ogcpercent := debug.SetGCPercent(-1)
    	runtime.GC()
    
    	// ready is a buffered channel so debugCallWorker won't block
    	// on sending to it. This makes it less likely we'll catch
    	// debugCallWorker while it's in the runtime.
    	ready := make(chan *runtime.G, 1)
    	var stop uint32
    	done := make(chan error)
    	go debugCallWorker(ready, &stop, done)
    	g = <-ready
    	return g, func() {
    		atomic.StoreUint32(&stop, 1)
    		err := <-done
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 15:08:04 UTC 2023
    - 8K bytes
    - Viewed (0)
  3. buildscripts/disable-root.sh

    export MC_HOST_sitea=http://minioadmin:minioadmin@127.0.0.1:9001
    export MC_HOST_siteb=http://minioadmin:minioadmin@127.0.0.1:9004
    
    ./mc ready sitea
    ./mc ready siteb
    
    ./mc admin replicate add sitea siteb
    
    ./mc admin user add sitea foobar foo12345
    
    ./mc admin policy attach sitea/ consoleAdmin --user=foobar
    
    ./mc admin user info siteb foobar
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. tests/integration/pilot/grpc_probe_test.go

    			for _, testCase := range []struct {
    				name     string
    				rewrite  bool
    				ready    bool
    				openPort bool
    			}{
    				{name: "rewrite-ready", rewrite: true, ready: true, openPort: true},
    			} {
    				t.NewSubTest(testCase.name).Run(func(t framework.TestContext) {
    					runGRPCProbeDeployment(t, ns, testCase.name, testCase.rewrite, testCase.ready, testCase.openPort)
    				})
    			}
    		})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. releasenotes/notes/30838.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: networking
    issue:
      - 30838
    
    releaseNotes:
    - |
      **Fixed** istiod never becoming ready when it fails to read resources from clusters configured via remote secrets.
      After a timeout configured by `PILOT_REMOTE_CLUSTER_TIMEOUT` (default 30s), istiod will become ready without
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 16 18:31:07 UTC 2021
    - 429 bytes
    - Viewed (0)
  6. cluster/gce/gci/README.md

    cos-73-11647-534-0                                    cos-cloud          cos-73-lts                                    READY
    cos-77-12371-274-0                                    cos-cloud          cos-77-lts                                    READY
    cos-81-12871-119-0                                    cos-cloud          cos-81-lts                                    READY
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 14:55:40 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. cluster/gce/windows/smoke-test.sh

        -o jsonpath='{.items[*].status.conditions[?(@.type=="Ready")].status}')
      for status in $statuses; do
        if [[ $status == "False" ]]; then
          echo "ERROR: some Windows node has status != Ready"
          echo "kubectl get nodes -l kubernetes.io/os=windows"
          ${kubectl} get nodes -l kubernetes.io/os=windows
          exit 1
        fi
      done
      echo "Verified that all Windows nodes have status Ready"
    }
    
    function untaint_windows_nodes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sync/semaphore/semaphore.go

    		// Don't make other Acquire calls block on one that's doomed to fail.
    		s.mu.Unlock()
    		<-done
    		return ctx.Err()
    	}
    
    	ready := make(chan struct{})
    	w := waiter{n: n, ready: ready}
    	elem := s.waiters.PushBack(w)
    	s.mu.Unlock()
    
    	select {
    	case <-done:
    		s.mu.Lock()
    		select {
    		case <-ready:
    			// Acquired the semaphore after we were canceled.
    			// Pretend we didn't and put the tokens back.
    			s.cur -= n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. src/runtime/testdata/testprog/lockosthread.go

    }
    
    func LockOSThreadAlt() {
    	// This is running locked to the main OS thread.
    
    	var subTID int
    	ready := make(chan bool, 1)
    	go func() {
    		// This goroutine must be running on a new thread.
    		runtime.LockOSThread()
    		subTID = gettid()
    		ready <- true
    		// Exit with the thread locked.
    	}()
    	<-ready
    	runtime.UnlockOSThread()
    	for i := 0; i < 100; i++ {
    		time.Sleep(1 * time.Millisecond)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:00:09 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. tools/bug-report/pkg/testdata/input/format_txt.log

    2020-06-29T23:37:27.349559Z	info	Subchannel Connectivity change to READY
    2020-06-29T23:37:27.349600Z	info	pickfirstBalancer: HandleSubConnStateChange: 0xc00087d1e0, {READY <nil>}
    2020-06-29T23:37:27.349610Z	info	Channel Connectivity change to READY
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 19 21:44:33 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top