Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 166 for pirates (0.21 sec)

  1. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/JavaClassUtil.java

    package org.gradle.internal.serialize;
    
    import java.io.DataInputStream;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.IOException;
    import java.io.InputStream;
    
    /**
     * Utility class which operates directly on Java class files.
     */
    public class JavaClassUtil {
    
        private static final int MAGIC_BYTES = 0xCAFEBABE;
    
        private JavaClassUtil() {
            // Private to prevent instantiation.
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/concurrent/IO.kt

        file.writeBytes(bytes)
    }
    
    
    /**
     * A scope for the scheduling of IO actions.
     *
     * [close] guarantees all scheduled IO actions are executed before returning.
     *
     * Each [IOScope] operates independently and failures in one [IOScope]
     * do not affect existing or future [IOScope]s.
     *
     * Each [IOScope] can only be used from a single thread at a time.
     */
    interface IOScope : IO, AutoCloseable
    
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/Function.java

       *
       * <p>Historically, {@code Function} instances in this library have implemented this method to
       * recognize certain cases where distinct {@code Function} instances would in fact behave
       * identically. However, as code migrates to {@code java.util.function}, that behavior will
       * disappear. It is best not to depend on it.
       */
      @Override
      boolean equals(@CheckForNull Object object);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu May 16 14:34:47 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/Function.java

       *
       * <p>Historically, {@code Function} instances in this library have implemented this method to
       * recognize certain cases where distinct {@code Function} instances would in fact behave
       * identically. However, as code migrates to {@code java.util.function}, that behavior will
       * disappear. It is best not to depend on it.
       */
      @Override
      boolean equals(@CheckForNull Object object);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Mar 20 18:30:19 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  5. src/internal/chacha8rand/chacha8_generic.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // ChaCha8 is ChaCha with 8 rounds.
    // See https://cr.yp.to/chacha/chacha-20080128.pdf.
    //
    // ChaCha8 operates on a 4x4 matrix of uint32 values, initially set to:
    //
    //	const1 const2 const3 const4
    //	seed   seed   seed   seed
    //	seed   seed   seed   seed
    //	counter64     0      0
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:32:54 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/p256_ordinv.go

    	_101 := new(p256OrdElement)
    	_111 := new(p256OrdElement)
    	_1111 := new(p256OrdElement)
    	_10101 := new(p256OrdElement)
    	_101111 := new(p256OrdElement)
    	t := new(p256OrdElement)
    
    	// This code operates in the Montgomery domain where R = 2²⁵⁶ mod n and n is
    	// the order of the scalar field. Elements in the Montgomery domain take the
    	// form a×R and p256OrdMul calculates (a × b × R⁻¹) mod n. RR is R in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. CITATION.cff

    title: TensorFlow, Large-scale machine learning on heterogeneous systems
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 06 15:26:23 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/managedfieldstest/testfieldmanager.go

    // ways.
    //
    // This is different from the TestFieldManager because it's not meant to
    // assert values, or hold the state, this acts like a normal
    // FieldManager.
    //
    // Also, this only operates on the main-resource, and sub-resource can't
    // be configured.
    func NewFakeFieldManager(typeConverter managedfields.TypeConverter, gvk schema.GroupVersionKind) *managedfields.FieldManager {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 16 20:03:48 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/robustio/robustio_flaky.go

    // Windows also provides a different system call, ReplaceFile,
    // that provides similar semantics, but perhaps preserves more metadata. (The
    // documentation on the differences between the two is very sparse.)
    //
    // Empirical error rates with MoveFileEx are lower under modest concurrency, so
    // for now we're sticking with what the os package already provides.
    func rename(oldpath, newpath string) (err error) {
    	return retry(func() (err error, mayRetry bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/escape/Escaper.java

     * string {@code "Foo<Bar>"}.
     *
     * <p>An {@code Escaper} instance is required to be stateless, and safe when used concurrently by
     * multiple threads.
     *
     * <p>Because, in general, escaping operates on the code points of a string and not on its
     * individual {@code char} values, it is not safe to assume that {@code escape(s)} is equivalent to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 01 16:02:17 UTC 2021
    - 4.6K bytes
    - Viewed (0)
Back to top