Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of about 10,000 for internally (0.34 sec)

  1. test/bigmap.go

    // run
    
    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Internally a map holds elements in up to 255 bytes of key+value.
    // When key or value or both are too large, it uses pointers to key+value
    // instead.  Test all the combinations.
    
    package main
    
    func seq(x, y int) [1000]byte {
    	var r [1000]byte
    	for i := 0; i < len(r); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 25 02:41:07 UTC 2012
    - 2.5K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycles.java

        public Map<String, Lifecycle> getPhaseToLifecycleMap() {
            // If people are going to make their own lifecycles then we need to tell people how to namespace them correctly
            // so that they don't interfere with internally defined lifecycles.
    
            Map<String, Lifecycle> phaseToLifecycleMap = new HashMap<>();
    
            for (Lifecycle lifecycle : getLifeCycles()) {
                logger.debug("Lifecycle {}", lifecycle);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/fiat/p384.go

    import (
    	"crypto/subtle"
    	"errors"
    )
    
    // P384Element is an integer modulo 2^384 - 2^128 - 2^96 + 2^32 - 1.
    //
    // The zero value is a valid zero element.
    type P384Element struct {
    	// Values are represented internally always in the Montgomery domain, and
    	// converted in Bytes and SetBytes.
    	x p384MontgomeryDomainFieldElement
    }
    
    const p384ElementLen = 48
    
    type p384UntypedFieldElement = [6]uint64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  4. src/crypto/internal/nistec/fiat/p521.go

    package fiat
    
    import (
    	"crypto/subtle"
    	"errors"
    )
    
    // P521Element is an integer modulo 2^521 - 1.
    //
    // The zero value is a valid zero element.
    type P521Element struct {
    	// Values are represented internally always in the Montgomery domain, and
    	// converted in Bytes and SetBytes.
    	x p521MontgomeryDomainFieldElement
    }
    
    const p521ElementLen = 66
    
    type p521UntypedFieldElement = [9]uint64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  5. src/crypto/internal/nistec/fiat/p224.go

    package fiat
    
    import (
    	"crypto/subtle"
    	"errors"
    )
    
    // P224Element is an integer modulo 2^224 - 2^96 + 1.
    //
    // The zero value is a valid zero element.
    type P224Element struct {
    	// Values are represented internally always in the Montgomery domain, and
    	// converted in Bytes and SetBytes.
    	x p224MontgomeryDomainFieldElement
    }
    
    const p224ElementLen = 28
    
    type p224UntypedFieldElement = [4]uint64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  6. common-protos/k8s.io/apimachinery/pkg/api/resource/generated.proto

    //
    // The sign will be omitted unless the number is negative.
    //
    // Examples:
    //
    // - 1.5 will be serialized as "1500m"
    // - 1.5Gi will be serialized as "1536Mi"
    //
    // Note that the quantity will NEVER be internally represented by a
    // floating point number. That is the whole point of this exercise.
    //
    // Non-canonical values will still parse as long as they are well formed,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/scopeProvider/TestScopeRenderer.kt

     * But this is not a good reason for a lack of tests, as the scope implementation is not forced to use these name sets internally, and
     * the contained names are still part of the public API.
     */
    fun PrettyPrinter.renderNamesContainedInScope(scope: KaScopeLike) {
        appendLine("Classifier names:")
        withIndent {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. src/go/internal/gcimporter/support.go

    func (t anyType) String() string         { return "any" }
    
    // See cmd/compile/internal/noder.derivedInfo.
    type derivedInfo struct {
    	idx    pkgbits.Index
    	needed bool
    }
    
    // See cmd/compile/internal/noder.typeInfo.
    type typeInfo struct {
    	idx     pkgbits.Index
    	derived bool
    }
    
    // See cmd/compile/internal/types.SplitVargenSuffix.
    func splitVargenSuffix(name string) (base, suffix string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. android/guava-tests/benchmark/com/google/common/base/JoinerBenchmark.java

        int dummy = 0;
        for (int i = 0; i < reps; i++) {
          dummy ^= JOINER_ON_CHARACTER.join(components).length();
        }
        return dummy;
      }
    
      /**
       * Mimics what the {@link Joiner} class does internally when no extra options like ignoring {@code
       * null} values are used.
       */
      @Benchmark
      int joinerInlined(int reps) {
        int dummy = 0;
        for (int i = 0; i < reps; i++) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.9K bytes
    - Viewed (0)
  10. src/os/exec_unix.go

    		return ErrProcessDone
    	}
    	return err
    }
    
    func (p *Process) release() error {
    	// We clear the Pid field only for API compatibility. On Unix, Release
    	// has always set Pid to -1. Internally, the implementation relies
    	// solely on statusReleased to determine that the Process is released.
    	p.Pid = pidReleased
    
    	switch p.mode {
    	case modeHandle:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top