Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,351 for a$ (0.1 sec)

  1. hack/testdata/prune/a.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: a
      labels:
        prune-group: "true"
    spec:
      containers:
      - name: kubernetes-pause
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 164 bytes
    - Viewed (0)
  2. src/cmd/internal/obj/loong64/a.out.go

    	// Check this here.
    	if REG_R0%32 != 0 {
    		panic("REG_R0 is not a multiple of 32")
    	}
    	if REG_F0%32 != 0 {
    		panic("REG_F0 is not a multiple of 32")
    	}
    	if REG_FCSR0%32 != 0 {
    		panic("REG_FCSR0 is not a multiple of 32")
    	}
    	if REG_FCC0%32 != 0 {
    		panic("REG_FCC0 is not a multiple of 32")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/capture/testdata/dns-uid-gid.golden

    iptables -t nat -A ISTIO_OUTPUT -m owner --gid-owner 2 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -p tcp --dport 53 -d 127.0.0.53/32 -j REDIRECT --to-ports 15053
    iptables -t nat -A ISTIO_OUTPUT -d 127.0.0.1/32 -j RETURN
    iptables -t nat -A OUTPUT -p udp -j ISTIO_OUTPUT
    iptables -t raw -A OUTPUT -p udp -j ISTIO_OUTPUT
    iptables -t nat -A ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 3 -j RETURN
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. tools/istio-iptables/pkg/capture/testdata/ipv6-dns-uid-gid.golden

    iptables -t nat -A ISTIO_OUTPUT -m owner --gid-owner 2 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -d 127.0.0.1/32 -j RETURN
    iptables -t nat -A OUTPUT -p udp -j ISTIO_OUTPUT
    iptables -t raw -A OUTPUT -p udp -j ISTIO_OUTPUT
    iptables -t nat -A ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 3 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 4 -j RETURN
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/utils/SublistMerger.kt

        }
    }
    
    public fun <A : Any> List<A>.mergeInto(destination: MutableList<A>, f: SublistMerger<A>.() -> Unit) {
        SublistMerger(this, destination).apply {
            f()
            finish()
        }
    }
    
    public fun <A : Any> List<A>.mergeWith(f: SublistMerger<A>.() -> Unit): List<A> =
        mutableListOf<A>().also { destination -> mergeInto(destination, f) }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. src/crypto/md5/md5block.go

    		b = c + bits.RotateLeft32((((d^a)&c)^a)+b+x7+0xfd469501, 22)
    		a = b + bits.RotateLeft32((((c^d)&b)^d)+a+x8+0x698098d8, 7)
    		d = a + bits.RotateLeft32((((b^c)&a)^c)+d+x9+0x8b44f7af, 12)
    		c = d + bits.RotateLeft32((((a^b)&d)^b)+c+xa+0xffff5bb1, 17)
    		b = c + bits.RotateLeft32((((d^a)&c)^a)+b+xb+0x895cd7be, 22)
    		a = b + bits.RotateLeft32((((c^d)&b)^d)+a+xc+0x6b901122, 7)
    		d = a + bits.RotateLeft32((((b^c)&a)^c)+d+xd+0xfd987193, 12)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. docs/en/docs/how-to/nosql-databases-couchbase.md

    The analogy in **MongoDB** would be a "collection".
    
    In the code, a `Bucket` represents the main entrypoint of communication with the database.
    
    This utility function will:
    
    * Connect to a **Couchbase** cluster (that might be a single machine).
        * Set defaults for timeouts.
    * Authenticate in the cluster.
    * Get a `Bucket` instance.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/defaulting/algorithm_test.go

    					},
    				},
    			},
    		}, `{"array":[{"a":1,"b":"B"},{"a":"A","b":2}],"object":{"a":1,"b":"O"},"additionalProperties":{"x":{"a":1,"b":"beta"},"y":{"a":"alpha","b":2}},"foo":"bar"}`},
    		{"empty and null", `[{},{"a":1},{"a":0},{"a":0.0},{"a":""},{"a":null},{"a":[]},{"a":{}}]`, &structuralschema.Structural{
    			Items: &structuralschema.Structural{
    				Properties: map[string]structuralschema.Structural{
    					"a": {
    						Generic: structuralschema.Generic{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. src/net/resolverdialfunc_test.go

    	a.rbuf.WriteByte('Y') // reserved header for beu16 length
    	builder := dnsmessage.NewBuilder(a.rbuf.Bytes(), resh)
    	a.builder = &builder
    	if hadQ {
    		a.q = q
    		a.builder.StartQuestions()
    		err := a.builder.Question(q)
    		if err != nil {
    			return 0, fmt.Errorf("Question: %w", err)
    		}
    		a.builder.StartAnswers()
    		switch q.Type {
    		case dnsmessage.TypeA:
    			if a.h.HandleA != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. src/internal/types/testdata/fixedbugs/issue67547.go

    }
    
    func _[P []int | struct{}]() {
    	type A = []int
    	var a A
    	var p P
    	// preserve target type name A in error messages when using Alias types
    	a = p // ERRORx `cannot assign struct{} \(in P\) to (A|\[\]int)`
    	_ = a
    }
    
    func _[P any]() {
    	type A = P
    	var x A
    	// keep "constrained by" for aliased type parameters in error messages
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top