Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for cop (0.06 sec)

  1. test/rotate.go

    			return x ^ y
    		},
    	}
    	cop = [2]byte{'|', '^'}
    )
    
    func gentest(b *bufio.Writer, bits uint, unsigned, inverted bool) {
    	fmt.Fprintf(b, "func init() {\n")
    	defer fmt.Fprintf(b, "}\n")
    	n := 0
    
    	// Generate tests for left/right and right/left.
    	for l := uint(0); l <= bits; l++ {
    		for r := uint(0); r <= bits; r++ {
    			for o, op := range cop {
    				typ := fmt.Sprintf("int%d", bits)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 3.3K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/scope_test.cc

      EXPECT_EQ(names3[4], "c");
    }
    
    TEST(ScopeTest, SingleUseScope) {
      Scope root = Scope::NewRootScope();
      auto cop_scopes = root.GetCompositeOpScopes("cop");
      // cop_scopes.last is a single use scope
      EXPECT_EQ(cop_scopes.last.GetUniqueNameForOp("foo"), "cop");
      cop_scopes.last.GetUniqueNameForOp("foo");
      // Error status should be set on cop_scopes.last
      EXPECT_FALSE(cop_scopes.last.ok());
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 08:17:37 UTC 2019
    - 5.5K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/base/AbstractIteratorTest.java

          iter.hasNext();
          fail();
        } catch (IllegalStateException expected) {
        }
      }
    
      // Technically we should test other reentrant scenarios (4 combinations of
      // hasNext/next), but we'll cop out for now, knowing that
      // next() both start by invoking hasNext() anyway.
    
      /** Throws an undeclared checked exception. */
      private static void sneakyThrow(Throwable t) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu May 04 09:41:29 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/prove.go

    	cop := OpConst64
    	switch v.Op {
    	case OpAdd32, OpSub32:
    		cop = OpConst32
    	case OpAdd16, OpSub16:
    		cop = OpConst16
    	case OpAdd8, OpSub8:
    		cop = OpConst8
    	}
    	switch v.Op {
    	case OpAdd64, OpAdd32, OpAdd16, OpAdd8:
    		if v.Args[0].Op == cop {
    			return v.Args[1], v.Args[0].AuxInt
    		}
    		if v.Args[1].Op == cop {
    			return v.Args[0], v.Args[1].AuxInt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"cook_islands":                         "\U0001f1e8\U0001f1f0",
    	"cookie":                               "\U0001f36a",
    	"cool":                                 "\U0001f192",
    	"cop":                                  "\U0001f46e",
    	"copyright":                            "\u00a9\ufe0f",
    	"corn":                                 "\U0001f33d",
    	"costa_rica":                           "\U0001f1e8\U0001f1f7",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    							break;
    						default:
    							p.cp = p.p;
    							p.cr = p.r;
    							break;
    					}
    				}
    				p.np = p.cr == -1 ? p.rt.get_container() : p.cr;
    				p.op = p.ot._get_parent(p.o);
    				p.cop = p.o.index();
    				if(p.op === -1) { p.op = p.ot ? p.ot.get_container() : this.get_container(); }
    				if(!/^(before|after)$/.test(p.p) && p.op && p.np && p.op[0] === p.np[0] && p.o.index() < p.cp) { p.cp++; }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
Back to top