Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 102 for selectgo (0.44 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/decompose_resource_ops.mlir

        // CHECK-DAG: %[[GT:.*]] = "tf.Greater"(%[[L1]], %[[ZERO]]) : (tensor<f32>, tensor<f32>) -> tensor<i1>
        // CHECK-DAG: %[[NUMERATOR:.*]] = "tf.SelectV2"(%[[GT]], %[[SIGNED:.*]], %[[PROX]]) : (tensor<i1>, tensor<4xf32>, tensor<4xf32>) -> tensor<4xf32>
        // CHECK-DAG: %[[SCALED_L2:.*]] = "tf.Mul"(%[[ADAGRAD_LR]], %[[L2]]) : (tensor<4xf32>, tensor<f32>) -> tensor<4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  2. src/go/types/expr.go

    	case *ast.ParenExpr:
    		// type inference doesn't go past parentheses (targe type T = nil)
    		kind := check.rawExpr(nil, x, e.X, nil, false)
    		x.expr = e
    		return kind
    
    	case *ast.SelectorExpr:
    		check.selector(x, e, nil, false)
    
    	case *ast.IndexExpr, *ast.IndexListExpr:
    		ix := typeparams.UnpackIndexExpr(e)
    		if check.indexExpr(x, ix) {
    			if !enableReverseTypeInference {
    				T = nil
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  3. src/time/time_test.go

    	{2036, 1, 1, 2036, 1}, {2037, 1, 1, 2037, 1}, {2038, 1, 1, 2037, 53},
    	{2039, 1, 1, 2038, 52}, {2040, 1, 1, 2039, 52},
    }
    
    func TestISOWeek(t *testing.T) {
    	// Selected dates and corner cases
    	for _, wt := range isoWeekTests {
    		dt := Date(wt.year, Month(wt.month), wt.day, 0, 0, 0, 0, UTC)
    		y, w := dt.ISOWeek()
    		if w != wt.wex || y != wt.yex {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/expr.go

    		// type inference doesn't go past parentheses (targe type T = nil)
    		kind := check.rawExpr(nil, x, e.X, nil, false)
    		x.expr = e
    		return kind
    
    	case *syntax.SelectorExpr:
    		check.selector(x, e, nil, false)
    
    	case *syntax.IndexExpr:
    		if check.indexExpr(x, e) {
    			if !enableReverseTypeInference {
    				T = nil
    			}
    			check.funcInst(T, e.Pos(), x, e, true)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    				}
    				defer cacher.Stop()
    
    				// prepare result and pred
    				parsedField, err := fields.ParseSelector("spec.nodeName=node-0")
    				if err != nil {
    					b.Fatalf("parse selector: %v", err)
    				}
    				pred := storage.SelectionPredicate{
    					Label: labels.Everything(),
    					Field: parsedField,
    				}
    
    				// now we start benchmarking
    				b.ResetTimer()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  6. src/go/build/build.go

    	BinDir        string   // command install directory ("" if unknown)
    	Goroot        bool     // package found in Go root
    	PkgObj        string   // installed .a file
    	AllTags       []string // tags that can influence file selection in this directory
    	ConflictDir   string   // this directory shadows Dir in $GOPATH
    	BinaryOnly    bool     // cannot be rebuilt from source (has //go:binary-only-package comment)
    
    	// Source files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/route/route_test.go

    					Name: "other-cookie",
    					Ttl:  nil,
    				},
    			},
    		}
    		g.Expect(routes[0].GetRoute().GetHashPolicy()).To(ConsistOf(hashPolicy))
    	})
    
    	t.Run("port selector based traffic policy", func(t *testing.T) {
    		g := NewWithT(t)
    
    		cg := core.NewConfigGenTest(t, core.TestOptions{
    			Services: exampleService,
    			Configs: []config.Config{{
    				Meta: config.Meta{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/MapMakerInternalMap.java

         * works well for hash tables since the bin lists tend to be short. (The average length is less
         * than two.)
         *
         * Read operations can thus proceed without locking, but rely on selected uses of volatiles to
         * ensure that completed write operations performed by other threads are noticed. For most
         * purposes, the "count" field, tracking the number of elements, serves as that volatile
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

         * works well for hash tables since the bin lists tend to be short. (The average length is less
         * than two.)
         *
         * Read operations can thus proceed without locking, but rely on selected uses of volatiles to
         * ensure that completed write operations performed by other threads are noticed. For most
         * purposes, the "count" field, tracking the number of elements, serves as that volatile
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    			t.Fatalf("Set failed: %v", err)
    		}
    		currentRV = preset[i].storedObj.ResourceVersion
    	}
    
    	// the first list call should try to get 2 items from etcd (and only those items should be returned)
    	// the field selector should result in it reading 3 items via the transformer
    	// the chunking should result in 2 etcd Gets
    	// there should be a continueValue because there is more data
    	out := &example.PodList{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
Back to top