Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,021 for squash (0.16 sec)

  1. regression-test/src/androidTest/java/okhttp/regression/compare/OkHttpClientTest.java

    /*
     * Copyright (C) 2020 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: Sat Nov 14 17:38:22 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. tensorflow/cc/framework/gradient_checker.h

    /// This function adds operations to the graph associated with 'scope'.
    ///
    /// Examples:
    /// if y = Square(x), where x (and so y) are DT_FLOAT,
    /// <X_T, Y_T, JAC_T> should be <float, float, float>
    ///
    /// if y = Square(x), where x (and so y) are DT_DOUBLE,
    /// <X_T, Y_T, JAC_T> should be <double, double, double>
    ///
    /// if y = Square(x), where x (and so y) are DT_COMPLEX64,
    /// <X_T, Y_T, JAC_T> should be <complex64, complex64, float>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 15:35:17 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testplugin/testdata/issue53989/main.go

    // crash.
    
    package main
    
    import (
    	"plugin"
    
    	"testplugin/issue53989/p"
    )
    
    func main() {
    	p.Square(7) // call the function in main executable
    
    	p, err := plugin.Open("issue53989.so")
    	if err != nil {
    		panic(err)
    	}
    	f, err := p.Lookup("Square")
    	if err != nil {
    		panic(err)
    	}
    	f.(func(int))(7) // call the plugin one
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 751 bytes
    - Viewed (0)
  7. samples/guide/src/main/java/okhttp3/recipes/kt/AccessHeaders.kt

    /*
     * Copyright (C) 2014 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: Mon Jan 08 01:13:22 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. tensorflow/cc/framework/gradient_checker_test.cc

    using ops::MatMul;
    using ops::Placeholder;
    using ops::Real;
    using ops::Split;
    using ops::Square;
    using ops::Stack;
    using ops::Sub;
    using ops::Unstack;
    
    TEST(GradientCheckerTest, BasicFloat) {
      Scope scope = Scope::NewRootScope();
      TensorShape shape({2, 4, 3});
      auto x = Placeholder(scope, DT_FLOAT, Placeholder::Shape(shape));
      auto y = Square(scope, x);
      float max_error;
      TF_ASSERT_OK((ComputeGradientError<float, float, float>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 06 15:54:08 UTC 2018
    - 6.7K bytes
    - Viewed (0)
  9. src/path/path.go

    // slashes are removed.
    // If the path is empty, Dir returns ".".
    // If the path consists entirely of slashes followed by non-slash bytes, Dir
    // returns a single slash. In any other case, the returned path does not end in a
    // slash.
    func Dir(path string) string {
    	dir, _ := Split(path)
    	return Clean(dir)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 23 17:33:57 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. docs/security/security_providers.md

    [GraalVM]: https://www.graalvm.org/
    [OpenJDK]: https://openjdk.java.net/groups/security/
    [OpenJSSE]: https://github.com/openjsse/openjsse
    [OpenSSL]: https://www.openssl.org/
    [bug5592]: https://github.com/square/okhttp/issues/5592
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 1.7K bytes
    - Viewed (0)
Back to top