Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 108 for xlim (0.06 sec)

  1. src/main/java/jcifs/util/Encdec.java

            int start = di, ch;
            int strlen = str.length();
    
            for ( int i = 0; di < dlim && i < strlen; i++ ) {
                ch = str.charAt(i);
                if ( ( ch >= 0x0001 ) && ( ch <= 0x007F ) ) {
                    dst[ di++ ] = (byte) ch;
                }
                else if ( ch > 0x07FF ) {
                    if ( ( dlim - di ) < 3 ) {
                        break;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 11K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/util/Encdec.java

            int start = di, ch;
            int strlen = str.length();
    
            for( int i = 0; di < dlim && i < strlen; i++ ) {
                ch = str.charAt( i );
                if ((ch >= 0x0001) && (ch <= 0x007F)) {
                    dst[di++] = (byte)ch;
                } else if (ch > 0x07FF) {
                    if((dlim - di) < 3 ) {
                        break;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 10.9K bytes
    - Viewed (0)
  3. src/syscall/syscall_linux_386.go

    	}
    
    	if rl.Cur == rlimInf32 {
    		rlim.Cur = rlimInf64
    	} else {
    		rlim.Cur = uint64(rl.Cur)
    	}
    
    	if rl.Max == rlimInf32 {
    		rlim.Max = rlimInf64
    	} else {
    		rlim.Max = uint64(rl.Max)
    	}
    	return
    }
    
    //sysnb setrlimit1(resource int, rlim *rlimit32) (err error) = SYS_SETRLIMIT
    
    func setrlimit(resource int, rlim *Rlimit) (err error) {
    	err = prlimit(0, resource, rlim, nil)
    	if err != ENOSYS {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/deadstore.go

    			}
    			return
    		case OpVarDef:
    			// v should be eliminated if we eliminate the auto.
    			n, ok := v.Aux.(*ir.Name)
    			if !ok || n.Class != ir.PAUTO {
    				return
    			}
    			if elim[v] == nil {
    				elim[v] = n
    				changed = true
    			}
    			return
    		case OpVarLive:
    			// Don't delete the auto if it needs to be kept alive.
    
    			// We depend on this check to keep the autotmp stack slots
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. src/time/zoneinfo_test.go

    	wantName   string
    	wantOffset int
    }{
    	{
    		// 2020b slim tzdata for Europe/Berlin.
    		zoneName:   "Europe/Berlin",
    		fileName:   "2020b_Europe_Berlin",
    		date:       func(loc *time.Location) time.Time { return time.Date(2020, time.October, 29, 15, 30, 0, 0, loc) },
    		wantName:   "CET",
    		wantOffset: 3600,
    	},
    	{
    		// 2021a slim tzdata for America/Nuuk.
    		zoneName:   "America/Nuuk",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 13 17:06:56 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  6. src/net/textproto/reader.go

    // readLineSlice reads a single line from r,
    // up to lim bytes long (or unlimited if lim is less than 0),
    // eliding the final \r or \r\n from the returned string.
    func (r *Reader) readLineSlice(lim int64) ([]byte, error) {
    	r.closeDot()
    	var line []byte
    	for {
    		l, more, err := r.R.ReadLine()
    		if err != nil {
    			return nil, err
    		}
    		if lim >= 0 && int64(len(line))+int64(len(l)) > lim {
    			return nil, errMessageTooLarge
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/base/Utf8Test.java

       * @param lim the limit of bytes to process encoded as a long as big-endian, or -1 to mean the max
       *     limit for numBytes
       */
      @GwtIncompatible // java.nio.charset.Charset
      private static void testBytes(int numBytes, long expectedCount, long start, long lim) {
        byte[] bytes = new byte[numBytes];
        if (lim == -1) {
          lim = 1L << (numBytes * 8);
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. plugin/pkg/admission/limitranger/admission.go

    	req, reqExists := request[api.ResourceName(resourceName)]
    	lim, limExists := limit[api.ResourceName(resourceName)]
    	observedReqValue, observedLimValue, enforcedValue := requestLimitEnforcedValues(req, lim, enforced)
    
    	if !reqExists {
    		return fmt.Errorf("minimum %s usage per %s is %s.  No request is specified", resourceName, limitType, enforced.String())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 13:04:39 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  9. src/encoding/base32/base32_test.go

    func (b *badReader) Read(p []byte) (int, error) {
    	lim := len(p)
    	if b.limit != 0 && b.limit < lim {
    		lim = b.limit
    	}
    	if len(b.data) < lim {
    		lim = len(b.data)
    	}
    	for i := range p[:lim] {
    		p[i] = b.data[i]
    	}
    	b.data = b.data[lim:]
    	err := io.EOF
    	if b.called < len(b.errs) {
    		err = b.errs[b.called]
    	}
    	b.called++
    	return lim, err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 26K bytes
    - Viewed (0)
  10. src/unicode/utf8/utf8.go

    	if r < RuneSelf {
    		return r, 1
    	}
    	// guard against O(n^2) behavior when traversing
    	// backwards through strings with long sequences of
    	// invalid UTF-8.
    	lim := end - UTFMax
    	if lim < 0 {
    		lim = 0
    	}
    	for start--; start >= lim; start-- {
    		if RuneStart(p[start]) {
    			break
    		}
    	}
    	if start < 0 {
    		start = 0
    	}
    	r, size = DecodeRune(p[start:end])
    	if start+size != end {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:36 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top