Home
last modified time | relevance | path

Searched refs:fromInfo (Results 1 – 25 of 113) sorted by relevance

12345

/dports/java/berkeley-db/je-6.2.31/src/com/sleepycat/je/txn/
H A DWriteLockInfo.java113 public void copyAbortInfo(WriteLockInfo fromInfo) { in copyAbortInfo() argument
114 abortDb = fromInfo.abortDb; in copyAbortInfo()
115 abortLogSize = fromInfo.abortLogSize; in copyAbortInfo()
121 public void copyAllInfo(WriteLockInfo fromInfo) { in copyAllInfo() argument
122 abortLsn = fromInfo.abortLsn; in copyAllInfo()
123 abortKnownDeleted = fromInfo.abortKnownDeleted; in copyAllInfo()
124 copyAbortInfo(fromInfo); in copyAllInfo()
125 neverLocked = fromInfo.neverLocked; in copyAllInfo()
H A DLockResult.java54 public void copyWriteLockInfo(WriteLockInfo fromInfo) { in copyWriteLockInfo() argument
55 if (fromInfo != null && info != null) { in copyWriteLockInfo()
56 setAbortLsn(fromInfo.getAbortLsn(), in copyWriteLockInfo()
57 fromInfo.getAbortKnownDeleted()); in copyWriteLockInfo()
58 info.copyAbortInfo(fromInfo); in copyWriteLockInfo()
/dports/www/matomo/piwik/core/DataAccess/LogQueryBuilder/
H A DJoinTables.php245 foreach ($tables as $key => &$fromInfo) {
246 if (is_string($fromInfo)) {
247 $dependencies[$key] = $this->assumeImplicitJoinDependencies($tables, $fromInfo);
251 if (empty($fromInfo['joinOn'])) {
255 $table = isset($fromInfo['tableAlias']) ? $fromInfo['tableAlias'] : $fromInfo['table'];
256 $tablesInExpr = $this->parseSqlTables($fromInfo['joinOn'], $table);
/dports/sysutils/chezmoi/chezmoi-2.9.3/internal/chezmoi/
H A Dgitdiffsystem.go52 fromInfo, err := s.system.Stat(name)
56 if s.include.IncludeFileInfo(fromInfo) {
57 toMode := fromInfo.Mode().Type() | mode
59 if fromInfo.Mode().IsRegular() {
254 switch fromInfo, err := s.system.Lstat(absPath); {
258 case fromInfo.Mode().IsRegular():
263 fromMode = fromInfo.Mode()
264 case fromInfo.Mode().Type() == fs.ModeSymlink:
270 fromMode = fromInfo.Mode()
272 fromMode = fromInfo.Mode()
/dports/devel/app-builder/app-builder-3.4.2/pkg/fs/
H A Dcopier.go68 fromInfo, err := os.Lstat(from)
73 if fromInfo.IsDir() {
99 if (fromInfo.Mode() & os.ModeSymlink) != 0 {
102 return t.CopyFile(from, to, isCreateParentDirs, fromInfo)
106 func (t *FileCopier) CopyFile(from string, to string, isCreateParentDirs bool, fromInfo os.FileInfo…
117 return CopyFileAndRestoreNormalPermissions(from, to, fromInfo.Mode())
/dports/cad/sumo/sumo-1.2.0/src/utils/router/
H A DDijkstraRouter.h145 auto* const fromInfo = &(myEdgeInfos[from->getNumericalID()]); variable
146 fromInfo->effort = 0.;
147 fromInfo->prev = nullptr;
148 fromInfo->leaveTime = STEPS2TIME(msTime);
150 myExternalEffort->setInitialState(fromInfo->edge->getNumericalID());
152 myFrontierList.push_back(fromInfo);
H A DAStarRouter.h173 auto* const fromInfo = &(myEdgeInfos[from->getNumericalID()]); variable
174 fromInfo->effort = 0.;
175 fromInfo->heuristicEffort = 0.;
176 fromInfo->prev = nullptr;
177 fromInfo->leaveTime = STEPS2TIME(msTime);
178 myFrontierList.push_back(fromInfo);
/dports/security/keybase/client-v5.7.1/go/stellar/
H A Dbuild.go171 fromInfo := struct {
190 fromInfo.available = true
201 fromInfo.from = arg.From
202 fromInfo.available = true
206 if fromInfo.available {
207 res.From = fromInfo.from
290 if fromInfo.available {
324 if fromInfo.available {
325 bpaArg.From = &fromInfo.from
342 if fromInfo.available {
[all …]
/dports/math/vtk6/VTK-6.2.0/Common/ExecutionModel/
H A DvtkInformationDataObjectMetaDataKey.cxx34 vtkInformation* fromInfo, in CopyDefaultInformation() argument
39 this->ShallowCopy(fromInfo, toInfo); in CopyDefaultInformation()
H A DvtkInformationIntegerRequestKey.cxx35 vtkInformation* fromInfo, in CopyDefaultInformation() argument
40 this->ShallowCopy(fromInfo, toInfo); in CopyDefaultInformation()
/dports/math/vtk8/VTK-8.2.0/Common/ExecutionModel/
H A DvtkInformationDataObjectMetaDataKey.cxx32 vtkInformation* fromInfo, in CopyDefaultInformation() argument
37 this->ShallowCopy(fromInfo, toInfo); in CopyDefaultInformation()
H A DvtkInformationIntegerRequestKey.cxx33 vtkInformation* fromInfo, in CopyDefaultInformation() argument
38 this->ShallowCopy(fromInfo, toInfo); in CopyDefaultInformation()
H A DvtkStreamingDemandDrivenPipeline.cxx1109 vtkInformation* fromInfo = nullptr; in MarkOutputsGenerated() local
1112 fromInfo = outInfoVec->GetInformationObject(outputPort); in MarkOutputsGenerated()
1113 if (fromInfo->Has(UPDATE_PIECE_NUMBER())) in MarkOutputsGenerated()
1115 piece = fromInfo->Get(UPDATE_PIECE_NUMBER()); in MarkOutputsGenerated()
1117 if (fromInfo->Has(UPDATE_NUMBER_OF_PIECES())) in MarkOutputsGenerated()
1119 numPieces = fromInfo->Get(UPDATE_NUMBER_OF_PIECES()); in MarkOutputsGenerated()
1121 if (fromInfo->Has(UPDATE_NUMBER_OF_GHOST_LEVELS())) in MarkOutputsGenerated()
1123 ghostLevel = fromInfo->Get(UPDATE_NUMBER_OF_GHOST_LEVELS()); in MarkOutputsGenerated()
1192 else if (fromInfo->Has(UPDATE_TIME_STEP())) in MarkOutputsGenerated()
1199 if (fromInfo->Has(UPDATE_TIME_STEP())) in MarkOutputsGenerated()
[all …]
/dports/math/vtk9/VTK-9.1.0/Common/ExecutionModel/
H A DvtkInformationDataObjectMetaDataKey.cxx32 vtkInformation* request, vtkInformation* fromInfo, vtkInformation* toInfo) in CopyDefaultInformation() argument
36 this->ShallowCopy(fromInfo, toInfo); in CopyDefaultInformation()
H A DvtkInformationIntegerRequestKey.cxx33 vtkInformation* request, vtkInformation* fromInfo, vtkInformation* toInfo) in CopyDefaultInformation() argument
37 this->ShallowCopy(fromInfo, toInfo); in CopyDefaultInformation()
H A DvtkStreamingDemandDrivenPipeline.cxx1046 vtkInformation* fromInfo = nullptr; in MarkOutputsGenerated() local
1049 fromInfo = outInfoVec->GetInformationObject(outputPort); in MarkOutputsGenerated()
1050 if (fromInfo->Has(UPDATE_PIECE_NUMBER())) in MarkOutputsGenerated()
1052 piece = fromInfo->Get(UPDATE_PIECE_NUMBER()); in MarkOutputsGenerated()
1054 if (fromInfo->Has(UPDATE_NUMBER_OF_PIECES())) in MarkOutputsGenerated()
1056 numPieces = fromInfo->Get(UPDATE_NUMBER_OF_PIECES()); in MarkOutputsGenerated()
1058 if (fromInfo->Has(UPDATE_NUMBER_OF_GHOST_LEVELS())) in MarkOutputsGenerated()
1060 ghostLevel = fromInfo->Get(UPDATE_NUMBER_OF_GHOST_LEVELS()); in MarkOutputsGenerated()
1123 else if (fromInfo->Has(UPDATE_TIME_STEP())) in MarkOutputsGenerated()
1130 if (fromInfo->Has(UPDATE_TIME_STEP())) in MarkOutputsGenerated()
[all …]
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/containerd/containerd/contrib/snapshotservice/
H A Dservice.go106 return &snapshotsapi.StatSnapshotResponse{Info: fromInfo(info)}, nil
115 return &snapshotsapi.UpdateSnapshotResponse{Info: fromInfo(info)}, nil
128 buffer = append(buffer, fromInfo(info))
176 func fromInfo(info snapshots.Info) snapshotsapi.Info { func
/dports/misc/concourse/concourse-6.7.2/vendor/github.com/containerd/containerd/contrib/snapshotservice/
H A Dservice.go106 return &snapshotsapi.StatSnapshotResponse{Info: fromInfo(info)}, nil
115 return &snapshotsapi.UpdateSnapshotResponse{Info: fromInfo(info)}, nil
128 buffer = append(buffer, fromInfo(info))
176 func fromInfo(info snapshots.Info) snapshotsapi.Info { func
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/containerd/containerd/containerd-1.4.3/contrib/snapshotservice/
H A Dservice.go106 return &snapshotsapi.StatSnapshotResponse{Info: fromInfo(info)}, nil
115 return &snapshotsapi.UpdateSnapshotResponse{Info: fromInfo(info)}, nil
128 buffer = append(buffer, fromInfo(info))
189 func fromInfo(info snapshots.Info) snapshotsapi.Info { func
/dports/net-im/dendrite/dendrite-0.5.1/vendor/github.com/containerd/containerd/contrib/snapshotservice/
H A Dservice.go106 return &snapshotsapi.StatSnapshotResponse{Info: fromInfo(info)}, nil
115 return &snapshotsapi.UpdateSnapshotResponse{Info: fromInfo(info)}, nil
128 buffer = append(buffer, fromInfo(info))
189 func fromInfo(info snapshots.Info) snapshotsapi.Info { func
/dports/net-mgmt/promscale/promscale-0.6.2/vendor/github.com/containerd/containerd/contrib/snapshotservice/
H A Dservice.go106 return &snapshotsapi.StatSnapshotResponse{Info: fromInfo(info)}, nil
115 return &snapshotsapi.UpdateSnapshotResponse{Info: fromInfo(info)}, nil
128 buffer = append(buffer, fromInfo(info))
189 func fromInfo(info snapshots.Info) snapshotsapi.Info { func
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/containerd/containerd/contrib/snapshotservice/
H A Dservice.go106 return &snapshotsapi.StatSnapshotResponse{Info: fromInfo(info)}, nil
115 return &snapshotsapi.UpdateSnapshotResponse{Info: fromInfo(info)}, nil
128 buffer = append(buffer, fromInfo(info))
189 func fromInfo(info snapshots.Info) snapshotsapi.Info { func
/dports/sysutils/helm/helm-3.5.2/vendor/github.com/containerd/containerd/contrib/snapshotservice/
H A Dservice.go106 return &snapshotsapi.StatSnapshotResponse{Info: fromInfo(info)}, nil
115 return &snapshotsapi.UpdateSnapshotResponse{Info: fromInfo(info)}, nil
128 buffer = append(buffer, fromInfo(info))
189 func fromInfo(info snapshots.Info) snapshotsapi.Info { func
/dports/security/vault/vault-1.8.2/vendor/github.com/containerd/containerd/contrib/snapshotservice/
H A Dservice.go106 return &snapshotsapi.StatSnapshotResponse{Info: fromInfo(info)}, nil
115 return &snapshotsapi.UpdateSnapshotResponse{Info: fromInfo(info)}, nil
128 buffer = append(buffer, fromInfo(info))
189 func fromInfo(info snapshots.Info) snapshotsapi.Info { func
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/containerd/containerd/services/snapshots/
H A Dservice.go186 return &snapshotsapi.StatSnapshotResponse{Info: fromInfo(info)}, nil
201 return &snapshotsapi.UpdateSnapshotResponse{Info: fromInfo(info)}, nil
219 buffer = append(buffer, fromInfo(info))
268 func fromInfo(info snapshots.Info) snapshotsapi.Info { func

12345