Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 166 for elts (0.89 sec)

  1. guava/src/com/google/common/collect/Ordering.java

       * Collections#reverseOrder(Comparator)}.
       *
       * <p><b>Java 8+ users:</b> Use {@code thisComparator.reversed()} instead.
       */
      // type parameter <S> lets us avoid the extra <String> in statements like:
      // Ordering<String> o = Ordering.<String>natural().reverse();
      @GwtCompatible(serializable = true)
      public <S extends T> Ordering<S> reverse() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  2. src/crypto/x509/x509.go

    				if err != nil {
    					return nil, err
    				}
    
    				exts = append(exts, pkix.Extension{
    					Id:    oidExtensionReasonCode,
    					Value: reasonBytes,
    				})
    			}
    
    			if len(exts) > 0 {
    				rc.Extensions = exts
    			}
    			revokedCerts[i] = rc
    		}
    	}
    
    	aki, err := asn1.Marshal(authKeyId{Id: issuer.SubjectKeyId})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/config/initconfiguration.go

    			return err
    		}
    		if port == "" {
    			cfg.ControlPlaneEndpoint = net.JoinHostPort(host, strconv.FormatInt(int64(localAPIEndpoint.BindPort), 10))
    		}
    	}
    
    	// Downcase SANs. Some domain names (like ELBs) have capitals in them.
    	LowercaseSANs(cfg.APIServer.CertSANs)
    	return nil
    }
    
    // DefaultedStaticInitConfiguration returns the internal InitConfiguration with static defaults.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 12:41:16 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/io/TempFileCreator.java

      }
    
      /**
       * Creates the permissions normally used for Windows filesystems, looking up the user afresh, even
       * if previous calls have initialized the {@code PermissionSupplier} fields.
       *
       * <p>This lets us test the effects of different values of the {@code user.name} system property
       * without needing a separate VM or classloader.
       */
      @IgnoreJRERequirement // used only when Path is available (and only from tests)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 06 17:11:11 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  5. src/crypto/ecdh/nist.go

    	}
    
    	// Copy the values into a fixed-size preallocated little-endian buffer.
    	// 72 bytes is enough for every scalar in this package, and having a fixed
    	// size lets us avoid heap allocations.
    	if len(a) > 72 {
    		panic("crypto/ecdh: internal error: isLess input too large")
    	}
    	bufA, bufB := make([]byte, 72), make([]byte, 72)
    	for i := range a {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. src/strconv/atoi.go

    	if nerr, ok := err.(*NumError); ok {
    		nerr.Func = fnAtoi
    	}
    	return int(i64), err
    }
    
    // underscoreOK reports whether the underscores in s are allowed.
    // Checking them in this one function lets all the parsers skip over them simply.
    // Underscore must appear only between digits or between a base prefix and a digit.
    func underscoreOK(s string) bool {
    	// saw tracks the last character (class) we saw:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:24:26 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. src/runtime/pinner.go

    			p.pinner = new(pinner)
    			p.refs = p.refStore[:0]
    
    			// We set this finalizer once and never clear it. Thus, if the
    			// pinner gets cached, we'll reuse it, along with its finalizer.
    			// This lets us avoid the relatively expensive SetFinalizer call
    			// when reusing from the cache. The finalizer however has to be
    			// resilient to an empty pinner being finalized, which is done
    			// by checking p.refs' length.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/crypto/internal/poly1305/sum_generic.go

    		t2, c := bits.Add64(m2.lo, m1.hi, c)
    		t3, _ := bits.Add64(m3.lo, m2.hi, c)
    
    		// Now we have the result as 4 64-bit limbs, and we need to reduce it
    		// modulo 2¹³⁰ - 5. The special shape of this Crandall prime lets us do
    		// a cheap partial reduction according to the reduction identity
    		//
    		//     c * 2¹³⁰ + n  =  c * 5 + n  mod  2¹³⁰ - 5
    		//
    		// because 2¹³⁰ = 5 mod 2¹³⁰ - 5. Partial reduction since the result is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. SECURITY.md

    vulnerabilities.
    
    ## Security properties of execution modes
    
    TensorFlow has several execution modes, with Eager-mode being the default in v2.
    Eager mode lets users write imperative-style statements that can be easily
    inspected and debugged and it is intended to be used during the development
    phase.
    
    As part of the differences that make Eager mode easier to debug, the [shape
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Oct 01 06:06:35 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  10. src/internal/diff/diff.go

    func tgs(x, y []string) []pair {
    	// Count the number of times each string appears in a and b.
    	// We only care about 0, 1, many, counted as 0, -1, -2
    	// for the x side and 0, -4, -8 for the y side.
    	// Using negative numbers now lets us distinguish positive line numbers later.
    	m := make(map[string]int)
    	for _, s := range x {
    		if c := m[s]; c > -2 {
    			m[s] = c - 1
    		}
    	}
    	for _, s := range y {
    		if c := m[s]; c > -8 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 14:13:04 UTC 2023
    - 7.5K bytes
    - Viewed (0)
Back to top