Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 70 for pirates (0.28 sec)

  1. src/crypto/internal/edwards25519/scalar.go

    	}
    
    	// We have a value x of 512 bits, but our fiatScalarFromBytes function
    	// expects an input lower than l, which is a little over 252 bits.
    	//
    	// Instead of writing a reduction function that operates on wider inputs, we
    	// can interpret x as the sum of three shorter values a, b, and c.
    	//
    	//    x = a + b * 2^168 + c * 2^336  mod l
    	//
    	// We then precompute 2^168 and 2^336 modulo l, and perform the reduction
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

            }
        }
    
        /**
         * Filters the provided {@code unfiltered} additional classpath to only contain modules which are not already
         * present in {@code classpath} and {@code modulepath}. This operates in a two-step process. First, it attempts
         * to parse the names the jars in the provided classpath to quickly determine if the additional modules already
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/fsys/fsys.go

    		return nil
    	}
    	return err
    }
    
    // Lstat implements a version of os.Lstat that operates on the overlay filesystem.
    func Lstat(path string) (fs.FileInfo, error) {
    	Trace("Lstat", path)
    	return overlayStat(path, os.Lstat, "lstat")
    }
    
    // Stat implements a version of os.Stat that operates on the overlay filesystem.
    func Stat(path string) (fs.FileInfo, error) {
    	Trace("Stat", path)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/codec_factory.go

    	return f.CodecForVersions(encoder, nil, gv, nil)
    }
    
    // WithoutConversionCodecFactory is a CodecFactory that will explicitly ignore requests to perform conversion.
    // This wrapper is used while code migrates away from using conversion (such as external clients) and in the future
    // will be unnecessary when we change the signature of NegotiatedSerializer.
    type WithoutConversionCodecFactory struct {
    	CodecFactory
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/TreeMultiset.java

         *
         * For the header node, though, this field contains `null`, regardless of the type of the
         * multiset.
         *
         * Most code that operates on an AvlNode never operates on the header node. Such code can access
         * the elem field without a null check by calling getElement().
         */
        @CheckForNull private final E elem;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/hash/Striped64.java

       * only become known via CAS failures, convergence can be slow,
       * and because threads are typically not bound to CPUS forever,
       * may not occur at all. However, despite these limitations,
       * observed contention rates are typically low in these cases.
       *
       * It is possible for a Cell to become unused when threads that
       * once hashed to it terminate, as well as in the case where
       * doubling the table causes no thread to hash to it under
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. src/runtime/mgcpacer_test.go

    	t.Parallel()
    
    	const initialHeapBytes = 256 << 10
    	for _, e := range []*gcExecTest{
    		{
    			// The most basic test case: a steady-state heap.
    			// Growth to an O(MiB) heap, then constant heap size, alloc/scan rates.
    			name:          "Steady",
    			gcPercent:     100,
    			memoryLimit:   math.MaxInt64,
    			globalsBytes:  32 << 10,
    			nCores:        8,
    			allocRate:     constant(33.0),
    			scanRate:      constant(1024.0),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 13:53:21 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  8. cmd/bucket-metadata.go

    		}
    	}
    
    	// migrate unencrypted remote targets
    	if err = b.migrateTargetConfig(ctx, objectAPI); err != nil {
    		return b, err
    	}
    
    	return b, nil
    }
    
    // loadBucketMetadata loads and migrates to bucket metadata.
    func loadBucketMetadata(ctx context.Context, objectAPI ObjectLayer, bucket string) (BucketMetadata, error) {
    	return loadBucketMetadataParse(ctx, objectAPI, bucket, true)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/TreeMultiset.java

         *
         * For the header node, though, this field contains `null`, regardless of the type of the
         * multiset.
         *
         * Most code that operates on an AvlNode never operates on the header node. Such code can access
         * the elem field without a null check by calling getElement().
         */
        @CheckForNull private final E elem;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 34.6K bytes
    - Viewed (0)
  10. go.mod

    	github.com/mitchellh/copystructure v1.2.0
    	github.com/mitchellh/go-homedir v1.1.0
    	github.com/moby/buildkit v0.13.2
    	github.com/onsi/gomega v1.33.1
    	github.com/openshift/api v0.0.0-20240530053948-b01900f1982a
    	github.com/pires/go-proxyproto v0.7.0
    	github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2
    	github.com/prometheus/client_golang v1.19.1
    	github.com/prometheus/client_model v0.6.1
    	github.com/prometheus/common v0.54.0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top