Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 55 for 1435 (0.34 sec)

  1. docs/en/docs/tutorial/dependencies/dependencies-with-yield.md

    === "Python 3.9+"
    
        ```Python hl_lines="15-16"
        {!> ../../../docs_src/dependencies/tutorial008c_an_py39.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="14-15"
        {!> ../../../docs_src/dependencies/tutorial008c_an.py!}
        ```
    
    === "Python 3.8+ non-Annotated"
    
        !!! tip
            Prefer to use the `Annotated` version if possible.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Feb 24 23:06:37 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/batch/v1/generated.proto

      // more consecutive numbers are compressed and represented by the first and
      // last element of the series, separated by a hyphen.
      // For example, if the completed indexes are 1, 3, 4, 5 and 7, they are
      // represented as "1,3-5,7".
      // +optional
      optional string completedIndexes = 7;
    
      // uncountedTerminatedPods holds the UIDs of Pods that have terminated but
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	ENOTDIR            = Errno(135)
    	ENOTEMPTY          = Errno(136)
    	ENOTTY             = Errno(137)
    	ENXIO              = Errno(138)
    	EPERM              = Errno(139)
    	EPIPE              = Errno(140)
    	EROFS              = Errno(141)
    	ESPIPE             = Errno(142)
    	ESRCH              = Errno(143)
    	EXDEV              = Errno(144)
    	E2BIG              = Errno(145)
    	ELOOP              = Errno(146)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  4. src/net/dnsclient_unix.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // DNS client: see RFC 1035.
    // Has to be linked into package net for Dial.
    
    // TODO(rsc):
    //	Could potentially handle many outstanding lookups faster.
    //	Random UDP source port (net.Dial should do that for us).
    //	Random request IDs.
    
    package net
    
    import (
    	"context"
    	"errors"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/tests/compose-uniform-quantized-type.mlir

        %14 = stablehlo.subtract %9, %13 : tensor<1x3x3x4xf32>
        %15 = stablehlo.broadcast_in_dim %4, dims = [0, 1, 2, 3] : (tensor<1x1x1x4xf32>) -> tensor<1x3x3x4xf32>
        %16 = stablehlo.multiply %14, %15 : tensor<1x3x3x4xf32>
        %17 = call @uniform_quantize_1(%16, %5, %6) : (tensor<1x3x3x4xf32>, tensor<1x1x1x1xf32>, tensor<1x1x1x1xi8>) -> tensor<1x3x3x4xi8>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 37K bytes
    - Viewed (0)
  6. src/net/lookup.go

    	// port in the address parameter will be a literal port number
    	// and not a service name.
    	// If the Conn returned is also a PacketConn, sent and received DNS
    	// messages must adhere to RFC 1035 section 4.2.1, "UDP usage".
    	// Otherwise, DNS messages transmitted over Conn must adhere
    	// to RFC 7766 section 5, "Transport Protocol Selection".
    	// If nil, the default dialer is used.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  7. pilot/pkg/autoregistration/controller_test.go

    	p.Locality = n.Locality
    
    	var p2conn1 *fakeConn
    	p2 := fakeProxy("1.2.3.4", wgA, "nw2", "sa-a")
    	p2.Locality = n.Locality
    
    	var p3conn1 *fakeConn
    	p3 := fakeProxy("1.2.3.5", wgA, "nw1", "sa-a")
    	p3.Locality = n.Locality
    
    	t.Run("initial registration", func(t *testing.T) {
    		// simply make sure the entry exists after connecting
    		p1conn1 = makeConn(p, time.Now())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  8. pkg/controller/deployment/util/deployment_util_test.go

    		Name           string
    		sets           []*apps.ReplicaSet
    		expectedCount  int32
    		expectedActual int32
    	}{
    		{
    			"1:2 Replicas",
    			[]*apps.ReplicaSet{&rs1},
    			1,
    			2,
    		},
    		{
    			"3:5 Replicas",
    			[]*apps.ReplicaSet{&rs1, &rs2},
    			3,
    			5,
    		},
    	}
    
    	for _, test := range tests {
    		t.Run(test.Name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  9. src/slices/slices_test.go

    		[]int{1, 2, 3, 4},
    		-1,
    	},
    	{
    		[]int{1, 2, 3, 4},
    		[]int{1, 2, 3},
    		+1,
    	},
    	{
    		[]int{1, 2, 3},
    		[]int{1, 4, 3},
    		-1,
    	},
    	{
    		[]int{1, 4, 3},
    		[]int{1, 2, 3},
    		+1,
    	},
    	{
    		[]int{1, 4, 3},
    		[]int{1, 2, 3, 8, 9},
    		+1,
    	},
    }
    
    var compareFloatTests = []struct {
    	s1, s2 []float64
    	want   int
    }{
    	{
    		[]float64{},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:06 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  10. cmd/xl-storage-format-v2_test.go

    				10: {vObj},             // disk 10
    				11: {vDelMarker, vObj}, // disk 11
    				12: {vDelMarker, vObj}, // disk 12
    				13: {vDelMarker, vObj}, // disk 13
    				14: {vDelMarker, vObj}, // disk 14
    				15: {vDelMarker, vObj}, // disk 15
    			},
    			quorum:      7,
    			reqVersions: 0,
    			want:        []xlMetaV2ShallowVersion{vDelMarker, vObj},
    		},
    	}
    	for _, test := range testCases {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 36.4K bytes
    - Viewed (0)
Back to top