Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 213 for fromlen (0.24 sec)

  1. android/guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

        public SortedMap<K, Collection<V>> subMap(
            @ParametricNullness K fromKey, @ParametricNullness K toKey) {
          return new SortedAsMap(sortedMap().subMap(fromKey, toKey));
        }
    
        @Override
        public SortedMap<K, Collection<V>> tailMap(@ParametricNullness K fromKey) {
          return new SortedAsMap(sortedMap().tailMap(fromKey));
        }
    
        @CheckForNull SortedSet<K> sortedKeySet;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 46.6K bytes
    - Viewed (0)
  2. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/CertificateAdapters.kt

          }
    
          override fun fromDer(reader: DerReader): Long {
            val peekHeader =
              reader.peekHeader()
                ?: throw ProtocolException("expected time but was exhausted at $reader")
    
            return when {
              peekHeader.tagClass == Adapters.UTC_TIME.tagClass &&
                peekHeader.tag == Adapters.UTC_TIME.tag -> {
                Adapters.UTC_TIME.fromDer(reader)
              }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. src/crypto/ecdsa/ecdsa_test.go

    			}
    		case strings.HasPrefix(line, "Qx = "):
    			pub.X = fromHex(line[5:])
    		case strings.HasPrefix(line, "Qy = "):
    			pub.Y = fromHex(line[5:])
    		case strings.HasPrefix(line, "R = "):
    			r = fromHex(line[4:])
    		case strings.HasPrefix(line, "S = "):
    			s = fromHex(line[4:])
    		case strings.HasPrefix(line, "Result = "):
    			expected := line[9] == 'P'
    			h.Reset()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:58 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  4. testing/soak/src/integTest/groovy/org/gradle/vfs/FileSystemWatchingSoakTest.groovy

                return 150
            } else {
                return 1000
            }
        }
    
        private static boolean detectOverflow(DaemonFixture daemon, long fromLine) {
            boolean overflowDetected = daemon.logContains(fromLine, FileWatcherRegistry.Type.OVERFLOW.toString())
            if (overflowDetected) {
                println "Detected overflow in watcher, no files will be retained for the next build"
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. src/mime/encodedword.go

    func readHexByte(a, b byte) (byte, error) {
    	var hb, lb byte
    	var err error
    	if hb, err = fromHex(a); err != nil {
    		return 0, err
    	}
    	if lb, err = fromHex(b); err != nil {
    		return 0, err
    	}
    	return hb<<4 | lb, nil
    }
    
    func fromHex(b byte) (byte, error) {
    	switch {
    	case b >= '0' && b <= '9':
    		return b - '0', nil
    	case b >= 'A' && b <= 'F':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Synchronized.java

        }
    
        @Override
        public SortedMap<K, V> subMap(K fromKey, K toKey) {
          synchronized (mutex) {
            return sortedMap(delegate().subMap(fromKey, toKey), mutex);
          }
        }
    
        @Override
        public SortedMap<K, V> tailMap(K fromKey) {
          synchronized (mutex) {
            return sortedMap(delegate().tailMap(fromKey), mutex);
          }
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 53.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Synchronized.java

        }
    
        @Override
        public SortedMap<K, V> subMap(K fromKey, K toKey) {
          synchronized (mutex) {
            return sortedMap(delegate().subMap(fromKey, toKey), mutex);
          }
        }
    
        @Override
        public SortedMap<K, V> tailMap(K fromKey) {
          synchronized (mutex) {
            return sortedMap(delegate().tailMap(fromKey), mutex);
          }
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 57.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/composite/whitelist.go

    // unkeyedLiteral is a white list of types in the standard packages
    // that are used with unkeyed literals we deem to be acceptable.
    var unkeyedLiteral = map[string]bool{
    	// These image and image/color struct types are frozen. We will never add fields to them.
    	"image/color.Alpha16": true,
    	"image/color.Alpha":   true,
    	"image/color.CMYK":    true,
    	"image/color.Gray16":  true,
    	"image/color.Gray":    true,
    	"image/color.NRGBA64": true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 00:08:36 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  9. src/os/stat_solaris.go

    // license that can be found in the LICENSE file.
    
    package os
    
    import (
    	"internal/filepathlite"
    	"syscall"
    	"time"
    )
    
    // These constants aren't in the syscall package, which is frozen.
    // Values taken from golang.org/x/sys/unix.
    const (
    	_S_IFNAM  = 0x5000
    	_S_IFDOOR = 0xd000
    	_S_IFPORT = 0xe000
    )
    
    func fillFileStatFromSys(fs *fileStat, name string) {
    	fs.name = filepathlite.Base(name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. src/crypto/rsa/pss_test.go

    			key.E = intFromHex(<-values)
    			// We don't care for d, p, q, dP, dQ or qInv.
    			for i := 0; i < 6; i++ {
    				<-values
    			}
    		case newSignatureMarker:
    			msg := fromHex(<-values)
    			<-values // skip salt
    			sig := fromHex(<-values)
    
    			h.Reset()
    			h.Write(msg)
    			hashed = h.Sum(hashed[:0])
    
    			if err := VerifyPSS(key, hash, hashed, sig, opts); err != nil {
    				t.Error(err)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top