Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,021 for squash (0.2 sec)

  1. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    338A          ; mapped                 ; 0070 0066     # 1.1  SQUARE PF
    338B          ; mapped                 ; 006E 0066     # 1.1  SQUARE NF
    338C          ; mapped                 ; 03BC 0066     # 1.1  SQUARE MU F
    338D          ; mapped                 ; 03BC 0067     # 1.1  SQUARE MU G
    338E          ; mapped                 ; 006D 0067     # 1.1  SQUARE MG
    338F          ; mapped                 ; 006B 0067     # 1.1  SQUARE KG
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  2. src/crypto/ecdh/x25519.go

    		x2.Add(&x2, &z2)
    		z2.Add(&x3, &z3)
    		z3.Multiply(&tmp0, &x2)
    		z2.Multiply(&z2, &tmp1)
    		tmp0.Square(&tmp1)
    		tmp1.Square(&x2)
    		x3.Add(&z3, &z2)
    		z2.Subtract(&z3, &z2)
    		x2.Multiply(&tmp1, &tmp0)
    		tmp1.Subtract(&tmp1, &tmp0)
    		z2.Square(&z2)
    
    		z3.Mult32(&tmp1, 121666)
    		x3.Square(&x3)
    		tmp0.Add(&tmp0, &z3)
    		z3.Multiply(&x1, &z2)
    		z2.Multiply(&tmp1, &tmp0)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. docs/features/r8_proguard.md

    also need rules from [Okio][okio] which is a dependency of this library.
    
     [okhttp3_pro]: https://raw.githubusercontent.com/square/okhttp/master/okhttp/src/main/resources/META-INF/proguard/okhttp3.pro
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 607 bytes
    - Viewed (0)
  4. logo/usage_guidelines.md

    ## Links to logo images
    The Kubernetes logo is available in 2 formats (PNG & SVG), 3 layouts --
    horizontal (also known as landscape format), stacked (which is closer to
    square), and icon (which does not include the name and is square), and 5
    colors (color/black/white/all-blue/white-text) -- so over 20 versions -- in the
    CNCF [artwork](https://github.com/cncf/artwork/tree/master/projects/kubernetes)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 20:03:37 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  5. src/crypto/internal/nistec/fiat/generate.go

    func (e *{{ .Element }}) Mul(t1, t2 *{{ .Element }}) *{{ .Element }} {
    	{{ .Prefix }}Mul(&e.x, &t1.x, &t2.x)
    	return e
    }
    
    // Square sets e = t * t, and returns e.
    func (e *{{ .Element }}) Square(t *{{ .Element }}) *{{ .Element }} {
    	{{ .Prefix }}Square(&e.x, &t.x)
    	return e
    }
    
    // Select sets v to a if cond == 1, and to b if cond == 0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/p521.go

    	}
    
    	return p, nil
    }
    
    // p521Sqrt sets e to a square root of x. If x is not a square, p521Sqrt returns
    // false and e is unchanged. e and x can overlap.
    func p521Sqrt(e, x *fiat.P521Element) (isSquare bool) {
    	candidate := new(fiat.P521Element)
    	p521SqrtCandidate(candidate, x)
    	square := new(fiat.P521Element).Square(candidate)
    	if square.Equal(x) != 1 {
    		return false
    	}
    	e.Set(candidate)
    	return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 17K bytes
    - Viewed (0)
  7. docs/security/security.md

    | 4.x     | ✅                  | Android 5.0+ (API level 21+) and on Java 8+. |
    | 3.x     | ❌ Ended 2021-12-31 | Android 2.3+ (API level 9+) and Java 7+.     |
    
    
    ## Reporting a Vulnerability
    
    Square recognizes the important contributions the security research community
    can make. We therefore encourage reporting security issues with the code
    contained in this repository.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 27 10:19:17 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  8. samples/guide/src/main/java/okhttp3/guide/GetExample.java

    /*
     * Copyright (C) 2013 Square, Inc.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *      http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Apr 05 03:30:42 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. src/math/cmplx/sqrt.go

    //   ******@****.***
    
    // Complex square root
    //
    // DESCRIPTION:
    //
    // If z = x + iy,  r = |z|, then
    //
    //                       1/2
    // Re w  =  [ (r + x)/2 ]   ,
    //
    //                       1/2
    // Im w  =  [ (r - x)/2 ]   .
    //
    // Cancellation error in r-x or r+x is avoided by using the
    // identity  2 Re w Im w  =  y.
    //
    // Note that -w is also a square root of z. The root chosen
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 3K bytes
    - Viewed (0)
  10. docs/contribute/code_of_conduct.md

    After filing a report, a representative from the Square Code of Conduct committee will contact you
    personally. The committee will then review the incident, follow up with any additional questions,
    and make a decision as to how to respond.
    
    Anyone asked to stop unacceptable behavior is expected to comply immediately. If an individual
    engages in unacceptable behavior, the Square Code of Conduct committee may take any action they deem
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 5.1K bytes
    - Viewed (0)
Back to top