Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 603 for squash (0.19 sec)

  1. samples/guide/src/main/java/okhttp3/recipes/PostMultipart.java

        RequestBody requestBody = new MultipartBody.Builder()
            .setType(MultipartBody.FORM)
            .addFormDataPart("title", "Square Logo")
            .addFormDataPart("image", "logo-square.png",
                RequestBody.create(
                    new File("docs/images/logo-square.png"),
                    MEDIA_TYPE_PNG))
            .build();
    
        Request request = new Request.Builder()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jun 24 12:59:42 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  2. samples/guide/src/main/java/okhttp3/recipes/kt/PostMultipart.kt

        val requestBody =
          MultipartBody.Builder()
            .setType(MultipartBody.FORM)
            .addFormDataPart("title", "Square Logo")
            .addFormDataPart(
              "image",
              "logo-square.png",
              File("docs/images/logo-square.png").asRequestBody(MEDIA_TYPE_PNG),
            )
            .build()
    
        val request =
          Request.Builder()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. build.gradle.kts

              url.set("https://github.com/square/okhttp")
            }
            developers {
              developer {
                name.set("Square, Inc.")
              }
            }
          }
        }
      }
    
      plugins.withId("binary-compatibility-validator") {
        configure<ApiValidationExtension> {
          ignoredPackages += "okhttp3.logging.internal"
          ignoredPackages += "mockwebserver3.internal"
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:32:42 UTC 2024
    - 8.9K bytes
    - Viewed (1)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top