Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 360 for boop (0.15 sec)

  1. src/html/template/escape_test.go

    		},
    		{
    			"{{range .Items}}<a{{end}}",
    			`z:1: on range loop re-entry: "<" in attribute name: "<a"`,
    		},
    		{
    			"\n{{range .Items}} x='<a{{end}}",
    			"z:2:8: on range loop re-entry: {{range}} branches",
    		},
    		{
    			"{{range .Items}}<a{{if .X}}{{break}}{{end}}>{{end}}",
    			"z:1:29: at range loop break: {{range}} branches end in different contexts",
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      Env* env_;
      OptimizerOptions::GlobalJitLevel global_jit_level_;
      bool cpu_global_jit_;
      const std::string cluster_name_prefix_;
      absl::flat_hash_map<const Cluster*, bool> should_compile_cluster_cache_;
      jit::DeviceInfoCache device_info_cache_;
    
      bool initialized_ = false;
      bool edges_contracted_ = false;
      bool clusters_created_ = false;
    
      std::vector<std::unique_ptr<Cluster>> cluster_storage_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/deadness_analysis_test.cc

                  "{#true,&,*iv0/cond:0}<loop>");
        EXPECT_EQ(predicate_map[ControlOutputFor(dependent_iv0)],
                  "{#true,&,(iv0/iv:0 & *iv0/cond:0)}<loop>");
        EXPECT_EQ(predicate_map[ControlOutputFor(dependent_iv1)],
                  "{#true,&,(iv0/iv:0 & *iv0/cond:0)}<loop>");
        EXPECT_EQ(predicate_map[ControlOutputFor(add0)],
                  "{#true,&,(iv0/iv:0 & *iv0/cond:0)}<loop>");
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/deadness_analysis.cc

    //
    // `X` may contain symbolic predicates and the operations corresponding to these
    // symbolic predicates are either in frame `loop` or outside it.  The symbols
    // that are inside frame `loop` are loop variant (i.e. can have different
    // liveness in each loop iteration) and the symbols that are outside frame
    // `loop` are loop invariant (i.e. have the same liveness across all
    // iterations).
    class AndRecurrencePredicate : public Predicate {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

            symbol_table(symbol_table) {}
    
      bool isLegalToInline(Operation* call, Operation* callable,
                           bool wouldBeCloned) const override {
        return true;
      }
      bool isLegalToInline(Region* dest, Region* src, bool wouldBeCloned,
                           IRMapping& valueMapping) const override {
        return true;
      }
      bool isLegalToInline(Operation* op, Region* dest, bool wouldBeCloned,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  6. src/encoding/xml/marshal_test.go

    	Float float64 `xml:",attr"`
    	Uint8 uint8   `xml:",attr"`
    	Bool  bool    `xml:",attr"`
    	Str   string  `xml:",attr"`
    	Bytes []byte  `xml:",attr"`
    }
    
    type AttrsTest struct {
    	Attrs []Attr  `xml:",any,attr"`
    	Int   int     `xml:",attr"`
    	Named int     `xml:"int,attr"`
    	Float float64 `xml:",attr"`
    	Uint8 uint8   `xml:",attr"`
    	Bool  bool    `xml:",attr"`
    	Str   string  `xml:",attr"`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  7. src/encoding/json/decode_test.go

    }
    
    type B struct {
    	B bool `json:",string"`
    }
    
    type DoublePtr struct {
    	I **int
    	J **int
    }
    
    var unmarshalTests = []struct {
    	CaseName
    	in                    string
    	ptr                   any // new(type)
    	out                   any
    	err                   error
    	useNumber             bool
    	golden                bool
    	disallowUnknownFields bool
    }{
    	// basic types
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      // The resources captured for While loop fall into two categories:
      // (a) read-only. These reads can be replaced by a hoisted read created
      //        before the WhileOp (similar to if and case).
      // (b) written: since the value is written in the loop (which can only in
      //        loop body, all these will become loop variables. Since all resource
      //        variables are removed from the loop variabled during
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. pkg/kubelet/pod_workers.go

    	// it has been started.
    	observedRuntime bool
    }
    
    func (s *podSyncStatus) IsWorking() bool              { return s.working }
    func (s *podSyncStatus) IsTerminationRequested() bool { return !s.terminatingAt.IsZero() }
    func (s *podSyncStatus) IsTerminationStarted() bool   { return s.startedTerminating }
    func (s *podSyncStatus) IsTerminated() bool           { return !s.terminatedAt.IsZero() }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  10. src/runtime/pprof/pprof_test.go

    func blockChanClose(t *testing.T) {
    	c := make(chan bool)
    	go func() {
    		awaitBlockedGoroutine(t, "chan receive", "blockChanClose", 1)
    		close(c)
    	}()
    	<-c
    }
    
    func blockSelectRecvAsync(t *testing.T) {
    	const numTries = 3
    	c := make(chan bool, 1)
    	c2 := make(chan bool, 1)
    	go func() {
    		for i := 0; i < numTries; i++ {
    			awaitBlockedGoroutine(t, "select", "blockSelectRecvAsync", 1)
    			c <- true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
Back to top