Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,894 for unready (0.12 sec)

  1. src/bufio/bufio.go

    		if b.err != nil {
    			return 0, b.readErr()
    		}
    		b.fill() // buffer is empty
    	}
    	c := b.buf[b.r]
    	b.r++
    	b.lastByte = int(c)
    	return c, nil
    }
    
    // UnreadByte unreads the last byte. Only the most recently read byte can be unread.
    //
    // UnreadByte returns an error if the most recent method called on the
    // [Reader] was not a read operation. Notably, [Reader.Peek], [Reader.Discard], and [Reader.WriteTo] are not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:08 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  2. pkg/volume/emptydir/empty_dir_test.go

    			})
    		})
    	}
    }
    
    type pluginTestConfig struct {
    	medium v1.StorageMedium
    	//volumeDirExists indicates whether volumeDir already/still exists before volume setup/teardown
    	volumeDirExists bool
    	//readyDirExists indicates whether readyDir already/still exists before volume setup/teardown
    	readyDirExists                bool
    	expectedSetupMounts           int
    	shouldBeMountedBeforeTeardown bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/kube/workload_manager.go

    		}
    	}()
    
    	// First, check to see if we already have a workload for the pod. If we do, just update it.
    	for _, w := range m.workloads {
    		if w.pod.Name == pod.Name {
    			prevReady := w.IsReady()
    			if err := w.Update(*pod); err != nil {
    				return err
    			}
    
    			// Defer notifying the handler until after we release the mutex.
    			if !prevReady && w.IsReady() {
    				workloadReady = w
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 02:12:37 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. buildscripts/minio-iam-ldap-upgrade-import-test.sh

    __init__() {
    	if which curl &>/dev/null; then
    		echo "curl is already installed"
    	else
    		echo "Installing curl:"
    		sudo apt install curl -y
    	fi
    
    	export GOPATH=/tmp/gopath
    	export PATH="${PATH}":"${GOPATH}"/bin
    
    	if which mc &>/dev/null; then
    		echo "mc is already installed"
    	else
    		echo "Installing mc:"
    		go install github.com/minio/mc@latest
    	fi
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. pkg/test/echo/server/instance.go

    		UDSServer:     udsServer,
    		IsServerReady: s.isReady,
    		Version:       s.Version,
    		Cluster:       s.Cluster,
    		TLSCert:       s.TLSCert,
    		TLSKey:        s.TLSKey,
    		Dialer:        s.Dialer,
    		ListenerIP:    listenerIP,
    		DisableALPN:   s.DisableALPN,
    		IstioVersion:  s.IstioVersion,
    	})
    }
    
    func (s *Instance) isReady() bool {
    	return atomic.LoadUint32(&s.ready) == 1
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 09 07:54:01 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  6. src/go/types/objset.go

    // object name.
    
    package types
    
    // An objset is a set of objects identified by their unique id.
    // The zero value for objset is a ready-to-use empty objset.
    type objset map[string]Object // initialized lazily
    
    // insert attempts to insert an object obj into objset s.
    // If s already contains an alternative object alt with
    // the same name, insert leaves s unchanged and returns alt.
    // Otherwise it inserts obj and returns nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 1K bytes
    - Viewed (0)
  7. src/runtime/chan.go

    	//
    	// After observing that the channel is not closed, we observe that the channel is
    	// not ready for sending. Each of these observations is a single word-sized read
    	// (first c.closed and second full()).
    	// Because a closed channel cannot transition from 'ready for sending' to
    	// 'not ready for sending', even if the channel is closed between the two observations,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  8. docs/en/docs/history-design-future.md

    ## Development
    
    By the time I started creating **FastAPI** itself, most of the pieces were already in place, the design was defined, the requirements and tools were ready, and the knowledge about the standards and specifications was clear and fresh.
    
    ## Future
    
    By this point, it's already clear that **FastAPI** with its ideas is being useful for many people.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. pkg/registry/core/service/ipallocator/interfaces.go

    	DryRun() Interface
    }
    
    var (
    	ErrFull              = errors.New("range is full")
    	ErrAllocated         = errors.New("provided IP is already allocated")
    	ErrMismatchedNetwork = errors.New("the provided network does not match the current range")
    	ErrNotReady          = errors.New("allocator not ready")
    )
    
    type ErrNotInRange struct {
    	IP         net.IP
    	ValidRange string
    }
    
    func (e *ErrNotInRange) Error() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbCopyUtil.java

        private byte[] b;
        private int n;
        private boolean ready;
        private SmbFileOutputStream out;
    
        private SmbException e = null;
    
    
        WriterThread () {
            super("JCIFS-WriterThread");
            this.ready = false;
        }
    
    
        /**
         * @return the ready
         */
        boolean isReady () {
            return this.ready;
        }
    
    
        /**
         * @throws SmbException
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:52:42 UTC 2020
    - 17.1K bytes
    - Viewed (0)
Back to top