Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 382 for Equate (0.17 sec)

  1. pilot/pkg/model/context.go

    		node.Labels = node.Metadata.Labels
    		return
    	}
    	labels := env.GetProxyWorkloadLabels(node)
    	if labels != nil {
    		node.Labels = make(map[string]string, len(labels)+len(node.Metadata.StaticLabels))
    		// we can't just equate proxy workload labels to node meta labels as it may be customized by user
    		// with `ISTIO_METAJSON_LABELS` env (pkg/bootstrap/config.go extractAttributesMetadata).
    		// so, we fill the `ISTIO_METAJSON_LABELS` as well.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  2. src/strconv/quote.go

    			continue
    		}
    		buf = appendEscapedRune(buf, r, quote, ASCIIonly, graphicOnly)
    	}
    	buf = append(buf, quote)
    	return buf
    }
    
    func appendQuotedRuneWith(buf []byte, r rune, quote byte, ASCIIonly, graphicOnly bool) []byte {
    	buf = append(buf, quote)
    	if !utf8.ValidRune(r) {
    		r = utf8.RuneError
    	}
    	buf = appendEscapedRune(buf, r, quote, ASCIIonly, graphicOnly)
    	buf = append(buf, quote)
    	return buf
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/crypto/internal/nistec/p384.go

    	}
    	t1.Mul(z, t1)
    	z.Square(t1)
    	z.Mul(x, z)
    	t2.Square(z)
    	for s := 1; s < 31; s++ {
    		t2.Square(t2)
    	}
    	t1.Mul(t1, t2)
    	t2.Square(t1)
    	for s := 1; s < 63; s++ {
    		t2.Square(t2)
    	}
    	t1.Mul(t1, t2)
    	t2.Square(t1)
    	for s := 1; s < 126; s++ {
    		t2.Square(t2)
    	}
    	t1.Mul(t1, t2)
    	for s := 0; s < 3; s++ {
    		t1.Square(t1)
    	}
    	t0.Mul(t0, t1)
    	for s := 0; s < 33; s++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 18K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/publicsuffix/PublicSuffixDatabaseTest.kt

        assertThat(publicSuffixDatabase.getEffectiveTldPlusOne("foo.bar.square.com"))
          .isEqualTo("bar.square.com")
        assertThat(publicSuffixDatabase.getEffectiveTldPlusOne("foo.my.square.com"))
          .isEqualTo("foo.my.square.com")
      }
    
      @Test fun wildcardMatch() {
        val buffer =
          Buffer()
            .writeUtf8("*.square.com\n")
            .writeUtf8("com\n")
            .writeUtf8("example.com\n")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. src/net/url/url.go

    // When the port is present, it is separated from the host with a colon.
    // When the host is an IPv6 address, it must be enclosed in square brackets:
    // "[fe80::1]:80". The [net.JoinHostPort] function combines a host and port
    // into a string suitable for the Host field, adding square brackets to
    // the host when necessary.
    //
    // Note that the Path field is stored in decoded form: /%47%6f%2f becomes /Go/.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
Back to top