Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SetWrapper (0.45 sec)

  1. guava-testlib/test/com/google/common/testing/ClassSanityTesterTest.java

          return wrapped.hashCode();
        }
    
        @Override
        public String toString() {
          return wrapped.toString();
        }
      }
    
      private static class SetWrapper extends Wrapper {
        public SetWrapper(Set<NotInstantiable> wrapped) {
          super(wrapped);
        }
      }
    
      static class InstantiableConstructorChosen {
        final String name;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ir/func.go

    func (f *Func) IsPackageInit() bool            { return f.flags&funcPackageInit != 0 }
    
    func (f *Func) SetDupok(b bool)                    { f.flags.set(funcDupok, b) }
    func (f *Func) SetWrapper(b bool)                  { f.flags.set(funcWrapper, b) }
    func (f *Func) SetABIWrapper(b bool)               { f.flags.set(funcABIWrapper, b) }
    func (f *Func) SetNeedctxt(b bool)                 { f.flags.set(funcNeedctxt, b) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top