Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for t_cc (0.06 sec)

  1. tensorflow/c/c_api_test.cc

      TF_DeleteTensor(a);
      TF_DeleteTensor(b);
    }
    
    TEST(CAPI, TestFromProto) {
      Tensor t_cc(DT_FLOAT, TensorShape({2, 3}));
      t_cc.flat<float>().setConstant(1.0);
      tensorflow::TensorProto t_proto;
      t_cc.AsProtoField(&t_proto);
    
      TF_Buffer* t_buffer = TF_NewBuffer();
      TF_CHECK_OK(MessageToBuffer(t_proto, t_buffer));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/build_defs.bzl

            srcs = [":" + registered_op],
        )
    
        tf_gen_op_wrapper_py(
            name = "gen_" + name,
            out = "gen_" + name + ".py",
            py_lib_rule = py_strict_library,
            deps = [
                ":%s_cc" % name,
            ],
            extra_py_deps = [
                "//tensorflow/python:pywrap_tfe",
                "//tensorflow/python/util:dispatch",
                "//tensorflow/python/util:deprecation",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/text/unicode/norm/forminfo.go

    // the sequence is followed by a trailing ccc, and for v >= firstLeadingCC
    // there is an additional leading ccc. The value of tccc itself is the
    // trailing CCC shifted left 2 bits. The two least-significant bits of tccc
    // are the number of trailing non-starters.
    
    const (
    	qcInfoMask      = 0x3F // to clear all but the relevant bits in a qcInfo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/unicode/norm/forminfo.go

    // the sequence is followed by a trailing ccc, and for v >= firstLeadingCC
    // there is an additional leading ccc. The value of tccc itself is the
    // trailing CCC shifted left 2 bits. The two least-significant bits of tccc
    // are the number of trailing non-starters.
    
    const (
    	qcInfoMask      = 0x3F // to clear all but the relevant bits in a qcInfo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. src/internal/types/testdata/spec/assignability.go

    	)
    
    	var (
    		_ _CC = C // ERRORx `cannot use C .* as _CC value`
    		_ _SC = C // ERRORx `cannot use C .* as _SC value`
    		_ _RC = C // ERRORx `cannot use C .* as _RC value`
    
    		_ CC = _CC /* ERRORx `cannot use _CC\(nil\) .* as CC value` */ (nil)
    		_ SC = _CC /* ERRORx `cannot use _CC\(nil\) .* as SC value` */ (nil)
    		_ RC = _CC /* ERRORx `cannot use _CC\(nil\) .* as RC value` */ (nil)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:24:42 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/bootstrap.go

    	tcc, err := bootstrap.NewTokenCleaner(
    		controllerContext.ClientBuilder.ClientOrDie("token-cleaner"),
    		controllerContext.InformerFactory.Core().V1().Secrets(),
    		bootstrap.DefaultTokenCleanerOptions(),
    	)
    	if err != nil {
    		return nil, true, fmt.Errorf("error creating TokenCleaner controller: %v", err)
    	}
    	go tcc.Run(ctx)
    	return nil, true, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 11:28:02 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. src/text/tabwriter/example_test.go

    	// second cell of each line, belong to different columns.
    	w := tabwriter.NewWriter(os.Stdout, 0, 0, 1, '.', tabwriter.AlignRight|tabwriter.Debug)
    	fmt.Fprintln(w, "a\tb\tc")
    	fmt.Fprintln(w, "aa\tbb\tcc")
    	fmt.Fprintln(w, "aaa\t") // trailing tab
    	fmt.Fprintln(w, "aaaa\tdddd\teeee")
    	w.Flush()
    
    	// output:
    	// ....a|..b|c
    	// ...aa|.bb|cc
    	// ..aaa|
    	// .aaaa|.dddd|eeee
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 23 22:09:32 UTC 2016
    - 2K bytes
    - Viewed (0)
  8. pkg/controller/bootstrap/tokencleaner_test.go

    	cl := fake.NewSimpleClientset()
    	informerFactory := informers.NewSharedInformerFactory(cl, options.SecretResync)
    	secrets := informerFactory.Core().V1().Secrets()
    	tcc, err := NewTokenCleaner(cl, secrets, options)
    	if err != nil {
    		return nil, nil, nil, err
    	}
    	return tcc, cl, secrets, nil
    }
    
    func TestCleanerNoExpiration(t *testing.T) {
    	cleaner, cl, secrets, err := newTokenCleaner()
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/text/unicode/norm/iter.go

    					i.next = nextMulti
    					return nextMulti(i)
    				}
    				// We are in the last segment.  Treat as normal decomposition.
    				d = i.multiSeg
    				i.multiSeg = nil
    				p = len(d)
    			}
    			prevCC := i.info.tccc
    			if i.p += sz; i.p >= i.rb.nsrc {
    				i.setDone()
    				i.info = Properties{} // Force BoundaryBefore to succeed.
    			} else {
    				i.info = i.rb.f.info(i.rb.src, i.p)
    			}
    			switch i.rb.ss.next(i.info) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 11K bytes
    - Viewed (0)
  10. src/math/big/float_test.go

    		// inf
    		{"Inf", float32(math.Inf(+1)), Exact},
    	} {
    		for i := 0; i < 2; i++ {
    			// test both signs
    			tx, tout, tacc := test.x, test.out, test.acc
    			if i != 0 {
    				tx = "-" + tx
    				tout = -tout
    				tacc = -tacc
    			}
    
    			// conversion should match strconv where syntax is agreeable
    			if f, err := strconv.ParseFloat(tx, 32); err == nil && !alike32(float32(f), tout) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
Back to top