Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 360 for outReg (0.1 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/group_by_dialect.cc

      // All operations.
      llvm::DenseSet<Operation*> all_operations;
    
      // All results of all ops.
      llvm::DenseSet<Value> all_internal_results;
      for (Operation* outer : ops) {
        outer->walk([&](Operation* op) {
          all_operations.insert(op);
          for (Value result : op->getResults()) {
            all_internal_results.insert(result);
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 07:31:01 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. src/cmd/gofmt/simplify.go

    func (s simplifier) Visit(node ast.Node) ast.Visitor {
    	switch n := node.(type) {
    	case *ast.CompositeLit:
    		// array, slice, and map composite literals may be simplified
    		outer := n
    		var keyType, eltType ast.Expr
    		switch typ := outer.Type.(type) {
    		case *ast.ArrayType:
    			eltType = typ.Elt
    		case *ast.MapType:
    			keyType = typ.Key
    			eltType = typ.Value
    		}
    
    		if eltType != nil {
    			var ktyp reflect.Value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 20:06:14 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/MethodDescriptionTest.groovy

        }
    
        def "inner class name format"() {
            expect:
            MethodDescription.name('a').owner(Outer.Inner).toString() == 'org.gradle.internal.reflect.MethodDescriptionTest$Outer$Inner#a'
        }
    
        class Outer {
            static class Inner {
    
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. test/fixedbugs/bug354.go

    // issue 2086
    // was calling makeclosure twice on the closure
    
    package bug354
    
    type Inner struct {
    	F func() error
    }
    
    type Outer struct {
    	Inners []Inner
    }
    
    // calls makeclosure twice on same closure
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 434 bytes
    - Viewed (0)
  5. test/fixedbugs/issue43112.go

    type Symbol interface{}
    
    type Value interface {
    	String() string
    }
    
    type Object interface {
    	String() string
    }
    
    type Scope struct {
    	outer *Scope
    	elems map[string]Object
    }
    
    func (s *Scope) findouter(name string) (*Scope, Object) {
    	return s.outer.findouter(name)
    }
    
    func (s *Scope) Resolve(name string) (sym Symbol) {
    	if _, obj := s.findouter(name); obj != nil {
    		sym = obj.(Symbol)
    	}
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 14 03:21:35 UTC 2020
    - 723 bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/SynchronizedQueueTest.java

      protected Queue<String> create() {
        TestQueue<String> inner = new TestQueue<>();
        Queue<String> outer = Synchronized.queue(inner, null);
        inner.mutex = outer;
        outer.add("foo"); // necessary because we try to remove elements later on
        return outer;
      }
    
      private static final class TestQueue<E> implements Queue<E> {
        private final Queue<E> delegate = Lists.newLinkedList();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/MessageTest.groovy

            def outer = new RuntimeException("message", original)
    
            when:
            def transported = transport(outer)
    
            then:
            transported instanceof RuntimeException
            transported.class == RuntimeException.class
            transported.message == "message"
            transported.stackTrace == outer.stackTrace
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/closure.go

    	fn := clo.Func
    
    	args := make([]ir.Node, len(fn.ClosureVars))
    	for i, v := range fn.ClosureVars {
    		var outer ir.Node
    		outer = v.Outer
    		if !v.Byval() {
    			outer = typecheck.NodAddrAt(fn.Pos(), outer)
    		}
    		args[i] = typecheck.Expr(outer)
    	}
    	return args
    }
    
    func walkMethodValue(n *ir.SelectorExpr, init *ir.Nodes) ir.Node {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:56:08 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/base/CaseFormatTest.java

      }
    
      public void testConverter_nullConversions() {
        for (CaseFormat outer : CaseFormat.values()) {
          for (CaseFormat inner : CaseFormat.values()) {
            assertNull(outer.converterTo(inner).convert(null));
            assertNull(outer.converterTo(inner).reverse().convert(null));
          }
        }
      }
    
      public void testConverter_toString() {
        assertEquals(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu May 04 09:41:29 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  10. test/typeparam/geninline.dir/a.go

    }
    
    type privateVal[T comparable] struct {
    	val T
    }
    
    //go:noinline
    func (l *privateVal[T]) check(want T) {
    	if l.val != want {
    		panic("hi")
    	}
    }
    
    type Outer struct {
    	val privateVal[string]
    }
    
    func Test3() {
    	var o Outer
    	o.val.check("")
    	_ = IVal[string](&o.val)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 15 16:57:36 UTC 2021
    - 799 bytes
    - Viewed (0)
Back to top