Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for checkValid (0.63 sec)

  1. guava-testlib/src/com/google/common/collect/testing/SafeTreeMap.java

          throw new NullPointerException();
        }
        for (K k : keySet()) {
          checkValid(k);
        }
      }
    
      @Override
      public @Nullable Entry<K, V> ceilingEntry(K key) {
        return delegate.ceilingEntry(checkValid(key));
      }
    
      @Override
      public @Nullable K ceilingKey(K key) {
        return delegate.ceilingKey(checkValid(key));
      }
    
      @Override
      public void clear() {
        delegate.clear();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/collect/testing/SafeTreeSet.java

        this.delegate = delegate;
        for (E e : this) {
          checkValid(e);
        }
      }
    
      @Override
      public boolean add(E element) {
        return delegate.add(checkValid(element));
      }
    
      @Override
      public boolean addAll(Collection<? extends E> collection) {
        for (E e : collection) {
          checkValid(e);
        }
        return delegate.addAll(collection);
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/SafeTreeMap.java

          throw new NullPointerException();
        }
        for (K k : keySet()) {
          checkValid(k);
        }
      }
    
      @Override
      public @Nullable Entry<K, V> ceilingEntry(K key) {
        return delegate.ceilingEntry(checkValid(key));
      }
    
      @Override
      public @Nullable K ceilingKey(K key) {
        return delegate.ceilingKey(checkValid(key));
      }
    
      @Override
      public void clear() {
        delegate.clear();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/SafeTreeSet.java

        this.delegate = delegate;
        for (E e : this) {
          checkValid(e);
        }
      }
    
      @Override
      public boolean add(E element) {
        return delegate.add(checkValid(element));
      }
    
      @Override
      public boolean addAll(Collection<? extends E> collection) {
        for (E e : collection) {
          checkValid(e);
        }
        return delegate.addAll(collection);
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. src/os/file_posix.go

    	if err := f.checkValid("SetReadDeadline"); err != nil {
    		return err
    	}
    	return f.pfd.SetReadDeadline(t)
    }
    
    // setWriteDeadline sets the write deadline.
    func (f *File) setWriteDeadline(t time.Time) error {
    	if err := f.checkValid("SetWriteDeadline"); err != nil {
    		return err
    	}
    	return f.pfd.SetWriteDeadline(t)
    }
    
    // checkValid checks whether f is valid for use.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. src/os/rawconn.go

    type rawConn struct {
    	file *File
    }
    
    func (c *rawConn) Control(f func(uintptr)) error {
    	if err := c.file.checkValid("SyscallConn.Control"); err != nil {
    		return err
    	}
    	err := c.file.pfd.RawControl(f)
    	runtime.KeepAlive(c.file)
    	return err
    }
    
    func (c *rawConn) Read(f func(uintptr) bool) error {
    	if err := c.file.checkValid("SyscallConn.Read"); err != nil {
    		return err
    	}
    	err := c.file.pfd.RawRead(f)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 993 bytes
    - Viewed (0)
  7. src/internal/profile/profile.go

    	zw := gzip.NewWriter(w)
    	defer zw.Close()
    	_, err := zw.Write(b)
    	return err
    }
    
    // CheckValid tests whether the profile is valid. Checks include, but are
    // not limited to:
    //   - len(Profile.Sample[n].value) == len(Profile.value_unit)
    //   - Sample.id has a corresponding Profile.Location
    func (p *Profile) CheckValid() error {
    	// Check that sample values are consistent
    	sampleLen := len(p.SampleType)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:57:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. src/os/file_plan9.go

    func (f *File) setWriteDeadline(time.Time) error {
    	if err := f.checkValid("SetWriteDeadline"); err != nil {
    		return err
    	}
    	return poll.ErrNoDeadline
    }
    
    // checkValid checks whether f is valid for use, but does not prepare
    // to actually use it. If f is not ready checkValid returns an appropriate
    // error, perhaps incorporating the operation name op.
    func (f *File) checkValid(op string) error {
    	if f == nil {
    		return ErrInvalid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:35:30 UTC 2024
    - 16K bytes
    - Viewed (0)
  9. src/encoding/json/scanner.go

    // scan is passed in for use by checkValid to avoid an allocation.
    // checkValid returns nil or a SyntaxError.
    func checkValid(data []byte, scan *scanner) error {
    	scan.reset()
    	for _, c := range data {
    		scan.bytes++
    		if scan.step(scan, c) == scanError {
    			return scan.err
    		}
    	}
    	if scan.eof() == scanError {
    		return scan.err
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  10. src/os/file.go

    // It returns the number of bytes read and any error encountered.
    // At end of file, Read returns 0, io.EOF.
    func (f *File) Read(b []byte) (n int, err error) {
    	if err := f.checkValid("read"); err != nil {
    		return 0, err
    	}
    	n, e := f.read(b)
    	return n, f.wrapErr("read", e)
    }
    
    // ReadAt reads len(b) bytes from the File starting at byte offset off.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
Back to top