Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,351 for a$ (0.11 sec)

  1. src/internal/types/testdata/check/decls0.go

    type (
    	p1 pi.foo /* ERROR "pi.foo is not a type" */
    	p2 unsafe.Pointer
    )
    
    
    type (
    	Pi pi /* ERROR "not a type" */
    
    	a /* ERROR "invalid recursive type" */ a
    	a /* ERROR "redeclared" */ int
    
    	b /* ERROR "invalid recursive type" */ c
    	c d
    	d e
    	e b
    
    	t *t
    
    	U V
    	V *W
    	W U
    
    	P1 *S2
    	P2 P1
    
    	S0 struct {
    	}
    	S1 struct {
    		a, b, c int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. src/net/dnsclient.go

    	if x.Length != y.Length {
    		return false
    	}
    	for i := 0; i < int(x.Length); i++ {
    		a := x.Data[i]
    		b := y.Data[i]
    		if 'A' <= a && a <= 'Z' {
    			a += 0x20
    		}
    		if 'A' <= b && b <= 'Z' {
    			b += 0x20
    		}
    		if a != b {
    			return false
    		}
    	}
    	return true
    }
    
    // isDomainName checks if a string is a presentation-format domain name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. docs/zh-hant/docs/fastapi-people.md

    {% endfor %}
    
    </div>
    {% endif %}
    
    ## 贊助者
    
    以下是**贊助者**。 😎
    
    他們主要透過 <a href="https://github.com/sponsors/tiangolo" class="external-link" target="_blank">GitHub Sponsors</a> 支持我在 **FastAPI**(以及其他項目)上的工作。
    
    {% if sponsors %}
    
    {% if sponsors.gold %}
    
    ### 金牌贊助商
    
    {% for sponsor in sponsors.gold -%}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 05 00:07:01 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. tools/istio-iptables/pkg/capture/testdata/ipnets.golden

    iptables -t nat -N ISTIO_OUTPUT
    iptables -t nat -A ISTIO_INBOUND -p tcp --dport 15008 -j RETURN
    iptables -t nat -A ISTIO_REDIRECT -p tcp -j REDIRECT --to-ports 15001
    iptables -t nat -A ISTIO_IN_REDIRECT -p tcp -j REDIRECT --to-ports 15006
    iptables -t nat -A OUTPUT -p tcp -j ISTIO_OUTPUT
    iptables -t nat -A ISTIO_OUTPUT -o lo -s 127.0.0.6/32 -j RETURN
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/coordination/v1/types.go

    }
    
    // LeaseSpec is a specification of a Lease.
    type LeaseSpec struct {
    	// holderIdentity contains the identity of the holder of a current lease.
    	// +optional
    	HolderIdentity *string `json:"holderIdentity,omitempty" protobuf:"bytes,1,opt,name=holderIdentity"`
    	// leaseDurationSeconds is a duration that candidates for a lease need
    	// to wait to force acquire it. This is measure against time of last
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/host_runtime/tfrt_ops.td

      let summary = "Loads a restored variable tensor as a tensor future";
    
      let description = [{
        This op loads a restored variable tensor as a tensor future. It is a
        replacement of `tf.ReadVariableOp`.
    
        This op returns a scalar string tensor containing the restored variable name, which 
        is composed from `container_name` and `shared_name` from a `var_handle` and can be
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/generic/webhook.go

    func (a *Webhook) SetExternalKubeInformerFactory(f informers.SharedInformerFactory) {
    	namespaceInformer := f.Core().V1().Namespaces()
    	a.namespaceMatcher.NamespaceLister = namespaceInformer.Lister()
    	a.hookSource = a.sourceFactory(f)
    	a.SetReadyFunc(func() bool {
    		return namespaceInformer.Informer().HasSynced() && a.hookSource.HasSynced()
    	})
    }
    
    func (a *Webhook) SetAuthorizer(authorizer authorizer.Authorizer) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. tools/istio-iptables/pkg/capture/testdata/ipnets-with-kube-virt-interfaces.golden

    iptables -t nat -I PREROUTING 1 -i eth2 -j RETURN
    iptables -t nat -A ISTIO_INBOUND -p tcp --dport 15008 -j RETURN
    iptables -t nat -A ISTIO_REDIRECT -p tcp -j REDIRECT --to-ports 15001
    iptables -t nat -A ISTIO_IN_REDIRECT -p tcp -j REDIRECT --to-ports 15006
    iptables -t nat -A OUTPUT -p tcp -j ISTIO_OUTPUT
    iptables -t nat -A ISTIO_OUTPUT -o lo -s 127.0.0.6/32 -j RETURN
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/background-tasks.md

    * Processing data:
        * For example, let's say you receive a file that must go through a slow process, you can return a response of "Accepted" (HTTP 202) and process it in the background.
    
    ## Using `BackgroundTasks`
    
    First, import `BackgroundTasks` and define a parameter in your *path operation function* with a type declaration of `BackgroundTasks`:
    
    ```Python hl_lines="1  13"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. src/testing/fstest/testfs_test.go

    		t.Fatal(err)
    	}
    
    	if err := TestFS(tmpfs, "hello", "hello.link"); err != nil {
    		t.Fatal(err)
    	}
    }
    
    func TestDash(t *testing.T) {
    	m := MapFS{
    		"a-b/a": {Data: []byte("a-b/a")},
    	}
    	if err := TestFS(m, "a-b/a"); err != nil {
    		t.Error(err)
    	}
    }
    
    type shuffledFS MapFS
    
    func (fsys shuffledFS) Open(name string) (fs.File, error) {
    	f, err := MapFS(fsys).Open(name)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top