Home
last modified time | relevance | path

Searched refs:newCore (Results 1 – 14 of 14) sorted by relevance

/dports/net-im/dendrite/dendrite-0.5.1/vendor/github.com/ipfs/go-log/v2/
H A Dcore_test.go41 core := newCore(tc.format, ws, LevelDebug)
58 core1 := newCore(PlaintextOutput, zapcore.AddSync(buf1), LevelDebug)
62 core2 := newCore(ColorizedOutput, zapcore.AddSync(buf2), LevelDebug)
94 core1 := newCore(PlaintextOutput, zapcore.AddSync(buf1), LevelDebug)
109 core2 := newCore(ColorizedOutput, zapcore.AddSync(buf2), LevelDebug)
145 core1 := newCore(PlaintextOutput, zapcore.AddSync(buf1), LevelDebug)
160 core2 := newCore(ColorizedOutput, zapcore.AddSync(buf2), LevelDebug)
H A Dpipe.go55 core: newCore(opt.format, zapcore.AddSync(w), opt.level),
H A Dcore.go103 func newCore(format LogFormat, ws zapcore.WriteSyncer, level LogLevel) zapcore.Core { func
H A Dsetup.go114 newPrimaryCore := newCore(primaryFormat, ws, LevelDebug) // the main core needs to log everything.
/dports/science/rdkit/rdkit-Release_2021_03_5/Code/GraphMol/RGroupDecomposition/
H A DRGroupDecomp.cpp277 RWMol newCore(mol); in add() local
281 Atom *newCoreAtm = newCore.getAtomWithIdx(mvpair.second); in add()
289 newCore.beginBatchEdit(); in add()
290 for (const auto atom : newCore.atoms()) { in add()
292 newCore.removeAtom(atom); in add()
295 newCore.commitBatchEdit(); in add()
296 if (newCore.getNumAtoms()) { in add()
297 std::string newCoreSmi = MolToSmiles(newCore, true); in add()
303 data->cores[core_idx] = RCore(newCore); in add()
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/go.elastic.co/apm/module/apmzap/
H A Dcore.go116 newCore := &contextCore{
120 newCore.traceContext.fields(fields)
121 return newCore
/dports/devel/hapy/Hapy-0.0.8/doc/
H A Dactions.cc136 Rule newCore = before >> realCore; in ex6() local
146 Rule newCore = before >> realCore; in ex6i() local
/dports/games/libretro-desmume2015/desmume2015-d6128e6/desmume/src/libretro/
H A Dlibretro.cpp1130 static void Change3DCoreWithFallback(int newCore) in Change3DCoreWithFallback() argument
1132 if( (newCore < 0) in Change3DCoreWithFallback()
1134 || (newCore > GPU3D_OPENGL_OLD) in Change3DCoreWithFallback()
1137 newCore = GPU3D_SWRAST; in Change3DCoreWithFallback()
1139 printf("Attempting change to 3d core to: %s\n",core3DList[newCore]->name); in Change3DCoreWithFallback()
1142 if(newCore == GPU3D_OPENGL_OLD) in Change3DCoreWithFallback()
1146 if(newCore == GPU3D_SWRAST) in Change3DCoreWithFallback()
1149 if(newCore == GPU3D_NULL) in Change3DCoreWithFallback()
/dports/devel/p5-Class-Prototyped/Class-Prototyped-1.13/lib/Class/
H A DPrototyped.pm70 $class->newCore('new', undef, @_);
79 $class->newCore('newPackage', $package, @_);
88 $original->newCore('clone', undef, @_);
97 $original->newCore('clonePackage', $package, @_);
101 sub newCore { subroutine
/dports/games/libretro-desmume2015/desmume2015-d6128e6/desmume/src/
H A Drender3D.h56 bool NDS_3D_ChangeCore(int newCore);
H A Drender3D.cpp71 bool NDS_3D_ChangeCore(int newCore) in NDS_3D_ChangeCore() argument
75 Render3DInterface *newRenderInterface = core3DList[newCore]; in NDS_3D_ChangeCore()
97 cur3DCore = newCore; in NDS_3D_ChangeCore()
/dports/security/vault/vault-1.8.2/vault/
H A Dtesting.go1596 …cleanup, c, localConfig, handler := testCluster.newCore(t, i, coreConfig, opts, listeners[i], test…
1737 …cleanup, newCore, localConfig, coreHandler := cluster.newCore(t, idx, tcc.CoreConfig, opts, tcc.Li…
1744 tcc.Core = newCore
1749 t, idx, newCore, tcc.CoreConfig,
1766 func (testCluster *TestCluster) newCore(t testing.T, idx int, coreConfig *CoreConfig, opts *TestClu… func
/dports/devel/p5-Class-Prototyped/Class-Prototyped-1.13/
H A DREADME630 Note that "new" calls "newCore", so if you want to override "new", but
632 "clone", and "clonePackage", you may wish to override "newCore".
697 It calls "newCore" to create the new object*, so if you have overriden
700 implemented. Or simply override "newCore".
710 newCore()
726 may make sense to override "newCore" so that you implement the code in
H A DChanges24 clone and newPackage) and newCore (implements core object instantiation