Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 85 for fromlen (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/bytes/buffer_test.go

    			if !Equal(buf.Bytes()[0:startLen-readBytes], xBytes[readBytes:]) {
    				t.Errorf("bad initial data at %d %d", startLen, growLen)
    			}
    			if !Equal(buf.Bytes()[startLen-readBytes:startLen-readBytes+growLen], yBytes) {
    				t.Errorf("bad written data at %d %d", startLen, growLen)
    			}
    		}
    	}
    }
    
    func TestGrowOverflow(t *testing.T) {
    	defer func() {
    		if err := recover(); err != ErrTooLarge {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:31:36 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  6. platforms/jvm/jvm-services/src/main/java/org/gradle/jvm/toolchain/internal/EnvironmentVariableListInstallationSupplier.java

    import java.util.stream.Collectors;
    
    public class EnvironmentVariableListInstallationSupplier implements InstallationSupplier {
    
        public static final String JAVA_INSTALLATIONS_FROM_ENV_PROPERTY = "org.gradle.java.installations.fromEnv";
    
        private final ToolchainConfiguration buildOptions;
        private final FileResolver fileResolver;
        private final Map<String, String> environment;
    
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. api/README

    Files in this directory are data for Go's API checker ("go tool api", in src/cmd/api).
    
    Each file is a list of API features, one per line.
    
    go1.txt (and similarly named files) are frozen once a version has been
    shipped. Each file adds new lines but does not remove any.
    
    except.txt lists features that may disappear without breaking true
    compatibility.
    
    Starting with go1.19.txt, each API feature line must end in "#nnnnn"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 19:22:50 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. docs/de/docs/how-to/conditional-openapi.md

    * Stellen Sie sicher, dass Sie über gut definierte Pydantic-Modelle für Ihre Requestbodys und Responses verfügen.
    * Konfigurieren Sie alle erforderlichen Berechtigungen und Rollen mithilfe von Abhängigkeiten.
    * Speichern Sie niemals Klartext-Passwörter, sondern nur Passwort-Hashes.
    * Implementieren und verwenden Sie gängige kryptografische Tools wie Passlib und JWT-Tokens, usw.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:18:13 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/python/unfreeze_constants.cc

    // `checkpoint_dir`. `checkpoint_dir` will be created within this function. It
    // will return a non-OK status if it already exists or permission is denied.
    // TODO(b/261652258): Make sure this works for when there are non-frozen
    // variables in the model.
    absl::Status UnfreezeConstantsAndSaveVariables(
        const absl::string_view checkpoint_dir, mlir::MLIRContext &ctx,
        mlir::ModuleOp module_op) {
      TF_RETURN_IF_ERROR(RunPasses(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 11:07:03 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/hash/ChecksumHashFunction.java

             * cast won't lose any information and is necessary to return a HashCode of the correct
             * size.
             */
            return HashCode.fromInt((int) value);
          } else {
            return HashCode.fromLong(value);
          }
        }
      }
    
      @J2ObjCIncompatible
      @SuppressWarnings("unused")
      private static final class ChecksumMethodHandles {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 22:01:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top