Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,469 for Equate (0.25 sec)

  1. okhttp/src/test/java/okhttp3/osgi/OsgiTest.kt

     * limitations under the License.
     */
    package okhttp3.osgi
    
    import aQute.bnd.build.Project
    import aQute.bnd.build.Workspace
    import aQute.bnd.build.model.BndEditModel
    import aQute.bnd.deployer.repository.LocalIndexedRepo
    import aQute.bnd.osgi.Constants
    import aQute.bnd.service.RepositoryPlugin
    import biz.aQute.resolve.Bndrun
    import java.io.File
    import okio.FileSystem
    import okio.Path
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. src/text/template/parse/lex_test.go

    	{"block", `{{block "foo" .}}`, []item{
    		tLeft, tBlock, tSpace, mkItem(itemString, `"foo"`), tSpace, tDot, tRight, tEOF,
    	}},
    	{"quote", `{{"abc \n\t\" "}}`, []item{tLeft, tQuote, tRight, tEOF}},
    	{"raw quote", "{{" + raw + "}}", []item{tLeft, tRawQuote, tRight, tEOF}},
    	{"raw quote with newline", "{{" + rawNL + "}}", []item{tLeft, tRawQuoteNL, tRight, tEOF}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 15:03:43 UTC 2022
    - 13.9K 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 (0)
  4. buildSrc/src/main/kotlin/Osgi.kt

    /*
     * Copyright (C) 2021 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
     *
     *    https://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 Jan 20 10:30:28 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/fess/it/stopwords.txt

    vostre
    mi
    ti
    ci
    vi
    lo
    la
    li
    le
    gli
    ne
    il
    un
    uno
    una
    ma
    ed
    se
    perché
    anche
    come
    dov
    dove
    che
    chi
    cui
    non
    più
    quale
    quanto
    quanti
    quanta
    quante
    quello
    quelli
    quella
    quelle
    questo
    questi
    questa
    queste
    si
    tutto
    tutti
    a
    c
    e
    i
    l
    o
    ho
    hai
    ha
    abbiamo
    avete
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/-CacheControlCommon.kt

            if (pos < value.length && value[pos] == '\"') {
              // Quoted string.
              pos++ // Consume '"' open quote.
              val parameterStart = pos
              pos = value.indexOf('"', pos)
              parameter = value.substring(parameterStart, pos)
              pos++ // Consume '"' close quote (if necessary).
            } else {
              // Unquoted string.
              val parameterStart = pos
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/fiat/p256_invert.go

    	var t1 = new(P256Element)
    
    	z.Square(x)
    	z.Mul(x, z)
    	z.Square(z)
    	z.Mul(x, z)
    	t0.Square(z)
    	for s := 1; s < 3; s++ {
    		t0.Square(t0)
    	}
    	t0.Mul(z, t0)
    	t1.Square(t0)
    	for s := 1; s < 6; s++ {
    		t1.Square(t1)
    	}
    	t0.Mul(t0, t1)
    	for s := 0; s < 3; s++ {
    		t0.Square(t0)
    	}
    	z.Mul(z, t0)
    	t0.Square(z)
    	t0.Mul(x, t0)
    	t1.Square(t0)
    	for s := 1; s < 16; s++ {
    		t1.Square(t1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  8. src/crypto/internal/edwards25519/field/fe.go

    	z2.Square(z)             // 2
    	t.Square(&z2)            // 4
    	t.Square(&t)             // 8
    	z9.Multiply(&t, z)       // 9
    	z11.Multiply(&z9, &z2)   // 11
    	t.Square(&z11)           // 22
    	z2_5_0.Multiply(&t, &z9) // 31 = 2^5 - 2^0
    
    	t.Square(&z2_5_0) // 2^6 - 2^1
    	for i := 0; i < 4; i++ {
    		t.Square(&t) // 2^10 - 2^5
    	}
    	z2_10_0.Multiply(&t, &z2_5_0) // 2^10 - 2^0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. src/crypto/internal/nistec/fiat/p384_invert.go

    	var t3 = new(P384Element)
    
    	z.Square(x)
    	z.Mul(x, z)
    	z.Square(z)
    	t1.Mul(x, z)
    	z.Square(t1)
    	for s := 1; s < 3; s++ {
    		z.Square(z)
    	}
    	z.Mul(t1, z)
    	t0.Square(z)
    	for s := 1; s < 6; s++ {
    		t0.Square(t0)
    	}
    	t0.Mul(z, t0)
    	t2.Square(t0)
    	for s := 1; s < 12; s++ {
    		t2.Square(t2)
    	}
    	t0.Mul(t0, t2)
    	for s := 0; s < 6; s++ {
    		t0.Square(t0)
    	}
    	z.Mul(z, t0)
    	t0.Square(z)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/fiat/p521_invert.go

    	var t0 = new(P521Element)
    
    	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)
    	t0.Square(z)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 1.8K bytes
    - Viewed (0)
Back to top