Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 919 for squash (0.28 sec)

  1. src/crypto/internal/nistec/fiat/fiat_test.go

    		for i := 0; i < b.N; i++ {
    			v.Square(v)
    		}
    	})
    	b.Run("P384", func(b *testing.B) {
    		v := new(fiat.P384Element).One()
    		b.ReportAllocs()
    		b.ResetTimer()
    		for i := 0; i < b.N; i++ {
    			v.Square(v)
    		}
    	})
    	b.Run("P521", func(b *testing.B) {
    		v := new(fiat.P521Element).One()
    		b.ReportAllocs()
    		b.ResetTimer()
    		for i := 0; i < b.N; i++ {
    			v.Square(v)
    		}
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  2. src/go/printer/comment.go

    		} else {
    			line = "// " + line
    		}
    		out = append(out, &ast.Comment{
    			Slash: slash,
    			Text:  line,
    		})
    	}
    	if len(directives) > 0 {
    		out = append(out, &ast.Comment{
    			Slash: slash,
    			Text:  "//",
    		})
    		for _, c := range directives {
    			out = append(out, &ast.Comment{
    				Slash: slash,
    				Text:  c.Text,
    			})
    		}
    	}
    	return out
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 07:35:19 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/ModuleVersionNotFoundExceptionTest.groovy

            def versions = [
                    rejectedByAttributes('1.1', [color: ['red', 'red', true], shape: ['square', 'circle', false]]),
                    rejectedByAttributes('1.0', [color: ['red', 'green', false], shape: ['square', 'circle', false]]),
            ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top