Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 296 for squash (0.17 sec)

  1. okhttp/src/test/java/okhttp3/RequestTest.kt

      fun nullRemovesTag() {
        val request =
          Request.Builder()
            .url("https://square.com")
            .tag("a")
            .tag(null)
            .build()
        assertThat(request.tag()).isNull()
      }
    
      @Test
      fun removeAbsentTag() {
        val request =
          Request.Builder()
            .url("https://square.com")
            .tag(null)
            .build()
        assertThat(request.tag()).isNull()
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/RequestCommonTest.kt

      fun nullRemovesTag() {
        val request =
          Request.Builder()
            .url("https://square.com")
            .tag("a" as Any)
            .tag(null)
            .build()
        assertThat(request.tag<Any>()).isNull()
      }
    
      @Test
      fun removeAbsentTag() {
        val request =
          Request.Builder()
            .url("https://square.com")
            .tag(null)
            .build()
        assertThat(request.tag<String>()).isNull()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/p256.go

    	//
    	var t0 = new(fiat.P256Element)
    
    	z.Square(x)
    	z.Mul(x, z)
    	t0.Square(z)
    	for s := 1; s < 2; s++ {
    		t0.Square(t0)
    	}
    	z.Mul(z, t0)
    	t0.Square(z)
    	for s := 1; s < 4; s++ {
    		t0.Square(t0)
    	}
    	z.Mul(z, t0)
    	t0.Square(z)
    	for s := 1; s < 8; s++ {
    		t0.Square(t0)
    	}
    	z.Mul(z, t0)
    	t0.Square(z)
    	for s := 1; s < 16; s++ {
    		t0.Square(t0)
    	}
    	z.Mul(z, t0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/crypto/internal/nistec/generate.go

    	}
    
    	return p, nil
    }
    
    // {{.p}}Sqrt sets e to a square root of x. If x is not a square, {{.p}}Sqrt returns
    // false and e is unchanged. e and x can overlap.
    func {{.p}}Sqrt(e, x *{{ .Element }}) (isSquare bool) {
    	candidate := new({{ .Element }})
    	{{.p}}SqrtCandidate(candidate, x)
    	square := new({{ .Element }}).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: Mon Mar 04 17:29:44 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  7. tests/test_tuples.py

        y: float
    
    
    @app.post("/model-with-tuple/")
    def post_model_with_tuple(item_group: ItemGroup):
        return item_group
    
    
    @app.post("/tuple-of-models/")
    def post_tuple_of_models(square: Tuple[Coordinate, Coordinate]):
        return square
    
    
    @app.post("/tuple-form/")
    def hello(values: Tuple[int, int] = Form()):
        return values
    
    
    client = TestClient(app)
    
    
    def test_model_with_tuple_valid():
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. docs/features/https.md

          }
        ```
    
     [CustomTrustJava]: https://github.com/square/okhttp/blob/master/samples/guide/src/main/java/okhttp3/recipes/CustomTrust.java
     [CustomTrustKotlin]: https://github.com/square/okhttp/blob/master/samples/guide/src/main/java/okhttp3/recipes/kt/CustomTrust.kt
     [CertificatePinningJava]: https://github.com/square/okhttp/blob/master/samples/guide/src/main/java/okhttp3/recipes/CertificatePinning.java
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 24 00:16:30 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  9. src/crypto/internal/nistec/p224.go

    	}
    
    	return p, nil
    }
    
    // p224Sqrt sets e to a square root of x. If x is not a square, p224Sqrt returns
    // false and e is unchanged. e and x can overlap.
    func p224Sqrt(e, x *fiat.P224Element) (isSquare bool) {
    	candidate := new(fiat.P224Element)
    	p224SqrtCandidate(candidate, x)
    	square := new(fiat.P224Element).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
    - 15.9K bytes
    - Viewed (0)
  10. src/crypto/internal/edwards25519/edwards25519.go

    	return v
    }
    
    // Doubling.
    
    func (v *projP1xP1) Double(p *projP2) *projP1xP1 {
    	var XX, YY, ZZ2, XplusYsq field.Element
    
    	XX.Square(&p.X)
    	YY.Square(&p.Y)
    	ZZ2.Square(&p.Z)
    	ZZ2.Add(&ZZ2, &ZZ2)
    	XplusYsq.Add(&p.X, &p.Y)
    	XplusYsq.Square(&XplusYsq)
    
    	v.Y.Add(&YY, &XX)
    	v.Z.Subtract(&YY, &XX)
    
    	v.X.Subtract(&XplusYsq, &v.Y)
    	v.T.Subtract(&ZZ2, &v.Z)
    	return v
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 13 19:21:54 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top