bugged stringlengths 6 599k | fixed stringlengths 10 599k | __index_level_0__ int64 0 1.13M |
|---|---|---|
StreamSession authenticate(final String sessionId, final InetAddress sessionAddress) { synchronized (SESSIONS) { final ServerSession session = SESSIONS.get(sessionId); if (session.getInetAddress().equals(sessionAddress)) { return session; } else { ... | StreamSession authenticate(final String sessionId, final InetAddress sessionAddress) { synchronized (SESSIONS) { final ServerSession session = SESSIONS.get(sessionId); final InetAddress inetAddress = session.getInetAddress(); if (null == inetAddress) { return s... | 1,114,560 |
StreamSession authenticate(final String sessionId, final InetAddress sessionAddress) { synchronized (SESSIONS) { final ServerSession session = SESSIONS.get(sessionId); if (session.getInetAddress().equals(sessionAddress)) { return session; } else { ... | StreamSession authenticate(final String sessionId, final InetAddress sessionAddress) { synchronized (SESSIONS) { final ServerSession session = SESSIONS.get(sessionId); if (session.getInetAddress().equals(sessionAddress)) { return session; } else { ... | 1,114,561 |
void initialize(final ServerSession session) { Assert.assertNotNull("Session is null.", session); Assert.assertNotNull("Session buffer size is null.", session.getBufferSize()); Assert.assertNotNull("Session charset is null.", session.getCharset()); Assert.assertNotNull("Session environme... | void initialize(final ServerSession session) { Assert.assertNotNull("Session is null.", session); Assert.assertNotNull("Session buffer size is null.", session.getBufferSize()); Assert.assertNotNull("Session charset is null.", session.getCharset()); Assert.assertNotNull("Session environme... | 1,114,562 |
public void procesarEvento(){ String claveAlumno= (String)this.getSesion().getAttribute("claveAlumno"); ObjetoBean alumnoEdicion= (ObjetoBean)(this.getSesion().getAttribute("beanAlumno")); alumnoEdicion.cambiaValor(Constantes.ID_ISALUMNO_ISUSUARIO_DNI,claveAlumno); this.getSesion().setAttribute("beanAlumno",alum... | public void procesarEvento(){ String claveAlumno= (String)this.getSesion().getAttribute("claveAlumno"); ObjetoBean alumnoEdicion= (ObjetoBean)(this.getSesion().getAttribute("beanAlumno")); alumnoEdicion.cambiaValor(Constantes.ID_ISALUMNO_ISUSUARIO_DNI,claveAlumno); this.getSesion().setAttribute("beanAlumno",alum... | 1,114,563 |
public Object getElement(final Object input) { // TODO Create a statistics model to obtain and build // reports try { return dModel.list().size(); } catch(final ParityException px) { throw new RuntimeException(px); } } | public Object getElement(final Object input) { // TODO Create a statistics model to obtain and build // reports try { return sModel.readContact(); } catch(final ParityException px) { throw new RuntimeException(px); } } | 1,114,564 |
public Object getElement(final Object input) { return countProvider.getElement(input); } | public Object getElement(final Object input) { return countProvider.getElement(input); } | 1,114,565 |
private void syncDocuments() { // sync the documents with the visible documents visibleDocuments.clear(); visibleDocuments.addAll(documents); ModelFilterManager.filter(visibleDocuments, documentFilter); // sync visible documents with the swing list's model ListItem li; ... | private void syncDocuments() { // sync the documents with the visible documents visibleDocuments.clear(); visibleDocuments.addAll(documents); ModelFilterManager.filter(visibleDocuments, documentFilter); // sync visible documents with the swing list's model ListItem li; ... | 1,114,566 |
private void syncDocuments() { // sync the documents with the visible documents visibleDocuments.clear(); visibleDocuments.addAll(documents); ModelFilterManager.filter(visibleDocuments, documentFilter); // sync visible documents with the swing list's model ListItem li; ... | private void syncDocuments() { // sync the documents with the visible documents visibleDocuments.clear(); visibleDocuments.addAll(documents); ModelFilterManager.filter(visibleDocuments, documentFilter); // sync visible documents with the swing list's model ListItem li; ... | 1,114,567 |
private void syncDocuments() { // sync the documents with the visible documents visibleDocuments.clear(); visibleDocuments.addAll(documents); ModelFilterManager.filter(visibleDocuments, documentFilter); // sync visible documents with the swing list's model ListItem li; ... | private void syncDocuments() { // sync the documents with the visible documents visibleDocuments.clear(); visibleDocuments.addAll(documents); ModelFilterManager.filter(visibleDocuments, documentFilter); // sync visible documents with the swing list's model ListItem li; ... | 1,114,568 |
void login(final String username, final String password) throws ParityException { final String host = preferences.getServerHost(); final Integer port = preferences.getServerPort(); synchronized(xmppHelperLock) { try { xmppHelper.login(host, port, username, password); preferences.setUsername(xmppHelper.getUs... | void login(final String username, final String password) throws ParityException { final String host = preferences.getServerHost(); final Integer port = preferences.getServerPort(); synchronized(xmppHelperLock) { try { xmppHelper.login(host, port, username, password); if(!preferences.isSetUsername()) { prefe... | 1,114,569 |
public static JMenuItem createCheckBox(final String text, final Integer mnemonic) { synchronized(singletonLock) { return singleton.doCreateCheckBox(text, mnemonic); } } | public static JMenuItem createCheckBox(final String text, final Integer mnemonic) { synchronized(singletonLock) { return singleton.doCreateCheckBox(text, mnemonic); } } | 1,114,570 |
private JMenuItem doCreateCheckBox(final String text, final Integer mnemonic) { logger.debug(text); final JMenuItem jMenuItem = new JCheckBoxMenuItem(text); applyDefaultFont(jMenuItem); applyMnemonic(jMenuItem, mnemonic); return jMenuItem; } | private JMenuItem doCreateCheckBox(final String text, final Integer mnemonic) { logger.debug(text); final JMenuItem jMenuItem = new JCheckBoxMenuItem(text); applyDefaultFont(jMenuItem); applyMnemonic(jMenuItem, mnemonic); return jMenuItem; } | 1,114,571 |
public void bind() { bound = true; color = new Color(255, 255, 255); } | public void bind() { bound = true; color = new Color(255, 255, 127); } | 1,114,573 |
private Double keplerRotation(Double r) { return (1 / Math.sqrt(r * r * r)) * 1000.0; } | private Double keplerRotation(Double r) { Double r2 = r * 1.5; return (1 / Math.sqrt(r2 * r2 * r2)) * 1000.0; } | 1,114,574 |
public Component getListCellRendererComponent(final JList list, final Object value, final int index, final boolean isSelected, final boolean cellHasFocus) { final AbstractContentCell cell = (AbstractContentCell) value; textJLabel.setText(cell.getText()); final Icon icon = ... | public Component getListCellRendererComponent(final JList list, final Object value, final int index, final boolean isSelected, final boolean cellHasFocus) { final AbstractContentCell cell = (AbstractContentCell) value; textJLabel.setText(cell.getText()); final Icon icon = ... | 1,114,575 |
protected StreamClient(final StreamSession session) { super(); this.logger = new Log4JWrapper(); this.session = session; final Environment environment = session.getEnvironment(); this.socketAddress = new InetSocketAddress( environment.getStreamHost(), environment.ge... | protected StreamClient(final StreamSession session) { super(); this.session = session; final Environment environment = session.getEnvironment(); this.socketAddress = new InetSocketAddress( environment.getStreamHost(), environment.getStreamPort()); if (enviro... | 1,114,576 |
protected final void connect(final Type type) { try { doConnect(); write(new StreamHeader(StreamHeader.Type.SESSION_BEGIN, session.getId())); write(new StreamHeader(StreamHeader.Type.SESSION_TYPE, type.name())); } catch (final IOException iox) { if (isConnec... | protected final void connect(final Type type) { try { doConnect(); write(new StreamHeader(StreamHeader.Type.SESSION_BEGIN, session.getId())); write(new StreamHeader(StreamHeader.Type.SESSION_TYPE, type.name())); } catch (final IOException iox) { if (isConnec... | 1,114,577 |
protected final void disconnect() { try { doDisconnect(); } catch (final IOException iox) { throw new StreamException(iox); } } | protected final void disconnect() { try { doDisconnect(); } catch (final IOException iox) { throw new StreamException(iox); } } | 1,114,578 |
protected final void write(final InputStream stream) { logger.logApiId(); try { StreamUtil.copy(stream, output, session.getBufferSize()); output.flush(); } catch (final IOException iox) { throw new StreamException(iox); } } | protected final void write(final InputStream stream, final Long streamSize) { logger.logApiId(); try { StreamUtil.copy(stream, output, session.getBufferSize()); output.flush(); } catch (final IOException iox) { throw new StreamException(iox); } } | 1,114,579 |
protected final void write(final InputStream stream) { logger.logApiId(); try { StreamUtil.copy(stream, output, session.getBufferSize()); output.flush(); } catch (final IOException iox) { throw new StreamException(iox); } } | protected final void write(final InputStream stream) { logger.logApiId(); try { StreamUtil.copy(stream, output, session.getBufferSize()); output.flush(); } catch (final IOException iox) { throw new StreamException(iox); } } | 1,114,580 |
public List<DocumentVersion> readDocumentVersions(final UUID uniqueId, final Long versionId, final UUID documentUniqueId); | public List<DocumentVersion> readDocumentVersions(final UUID uniqueId, final Long versionId); | 1,114,581 |
void addBookmark(final Long containerId) { logger.logApiId(); logger.logVariable("containerId", containerId); try { getInternalArtifactModel().applyFlagBookmark(containerId); notifyContainerUpdated(read(containerId), localEventGenerator); } catch (final Throwable t)... | void addBookmark(final Long containerId) { logger.logApiId(); logger.logVariable("containerId", containerId); try { getArtifactModel().applyFlagBookmark(containerId); notifyContainerUpdated(read(containerId), localEventGenerator); } catch (final Throwable t) { ... | 1,114,582 |
Container create(final String name) { logger.logApiId(); logger.logVariable("name", name); try { final Container container = new Container(); container.setCreatedBy(localUserId()); container.setCreatedOn(currentDateTime()); container.setName(name); ... | Container create(final String name) { logger.logApiId(); logger.logVariable("name", name); try { final Container container = new Container(); container.setCreatedBy(localUserId()); container.setCreatedOn(currentDateTime()); container.setName(name); ... | 1,114,583 |
ContainerDraft createDraft(final Long containerId) { logger.logApiId(); logger.logVariable("containerId", containerId); try { assertContainerDraftDoesNotExist(containerId); if (isFirstDraft(containerId)) { createFirstDraft(containerId, localTeamMember(contai... | ContainerDraft createDraft(final Long containerId) { logger.logApiId(); logger.logVariable("containerId", containerId); try { assertContainerDraftDoesNotExist(containerId); if (isFirstDraft(containerId)) { createFirstDraft(containerId, localTeamMember(contai... | 1,114,584 |
private TeamMember createTeam(final Long containerId) { final List<TeamMember> team = getInternalArtifactModel().createTeam(containerId); return team.get(0); } | private TeamMember createTeam(final Long containerId) { final List<TeamMember> team = getArtifactModel().createTeam(containerId); return team.get(0); } | 1,114,585 |
void delete(final Long containerId) { logger.logApiId(); logger.logVariable("containerId", containerId); try { final Container container = read(containerId); if (isDistributed(container.getId())) { final TeamMember localTeamMember = localTeamMember(container... | void delete(final Long containerId) { logger.logApiId(); logger.logVariable("containerId", containerId); try { final Container container = read(containerId); if (isDistributed(container.getId())) { final TeamMember localTeamMember = localTeamMember(container... | 1,114,586 |
private void deleteLocal(final Long containerId) { // delete the draft final ContainerDraft draft = readDraft(containerId); if (null != draft) { for(final Artifact artifact : draft.getArtifacts()) { containerIO.deleteDraftArtifactRel(containerId, artifact.getId()); ... | private void deleteLocal(final Long containerId) { // delete the draft final ContainerDraft draft = readDraft(containerId); if (null != draft) { for(final Artifact artifact : draft.getArtifacts()) { containerIO.deleteDraftArtifactRel(containerId, artifact.getId()); ... | 1,114,587 |
private void doPublishVersion(final PublishMonitor monitor, final Long containerId, final Long versionId, final List<Contact> contacts, final List<TeamMember> teamMembers) throws IOException { final Container container = read(containerId); final ContainerVersion versio... | private void doPublishVersion(final PublishMonitor monitor, final Long containerId, final Long versionId, final List<Contact> contacts, final List<TeamMember> teamMembers) throws IOException { final Container container = read(containerId); final ContainerVersion versio... | 1,114,588 |
private void doPublishVersion(final PublishMonitor monitor, final Long containerId, final Long versionId, final List<Contact> contacts, final List<TeamMember> teamMembers) throws IOException { final Container container = read(containerId); final ContainerVersion versio... | private void doPublishVersion(final PublishMonitor monitor, final Long containerId, final Long versionId, final List<Contact> contacts, final List<TeamMember> teamMembers) throws IOException { final Container container = read(containerId); final ContainerVersion versio... | 1,114,589 |
void handleArtifactPublished(final ContainerArtifactPublishedEvent event) { logger.logApiId(); logger.logVariable("event", event); try { // determine the existance of the container and the version. final InternalArtifactModel artifactModel = getInternalArtifactModel(); ... | void handleArtifactPublished(final ContainerArtifactPublishedEvent event) { logger.logApiId(); logger.logVariable("event", event); try { // determine the existance of the container and the version. final InternalArtifactModel artifactModel = getArtifactModel(); ... | 1,114,590 |
void handlePublished(final ContainerPublishedEvent event) { logger.logApiId(); logger.logVariable("event", event); try { final InternalArtifactModel artifactModel = getInternalArtifactModel(); final Long containerId = artifactModel.readId(event.getUniqueId()); /... | void handlePublished(final ContainerPublishedEvent event) { logger.logApiId(); logger.logVariable("event", event); try { final InternalArtifactModel artifactModel = getArtifactModel(); final Long containerId = artifactModel.readId(event.getUniqueId()); // add to... | 1,114,591 |
Boolean isDistributed(final Long containerId) { logger.logApiId(); logger.logVariable("containerId", containerId); try { return getInternalArtifactModel().doesVersionExist(containerId, Versioning.START); } catch (final Throwable t) { throw translateError(t); ... | Boolean isDistributed(final Long containerId) { logger.logApiId(); logger.logVariable("containerId", containerId); try { return getArtifactModel().doesVersionExist(containerId, Versioning.START); } catch (final Throwable t) { throw translateError(t); } } | 1,114,593 |
void publishVersion(final Long containerId, final Long versionId, final List<Contact> contacts) { logger.logApiId(); logger.logVariable("containerId", containerId); logger.logVariable("versionId", versionId); logger.logVariable("contacts", contacts); try { //... | void publishVersion(final Long containerId, final Long versionId, final List<Contact> contacts) { logger.logApiId(); logger.logVariable("containerId", containerId); logger.logVariable("versionId", versionId); logger.logVariable("contacts", contacts); try { //... | 1,114,594 |
List<TeamMember> readTeam(final Long containerId) { logger.logApiId(); logger.logVariable("containerId", containerId); return getInternalArtifactModel().readTeam(containerId, UserComparatorFactory.createName(Boolean.TRUE), FilterManager.createDefault()); } | List<TeamMember> readTeam(final Long containerId) { logger.logApiId(); logger.logVariable("containerId", containerId); return getArtifactModel().readTeam(containerId, UserComparatorFactory.createName(Boolean.TRUE), FilterManager.createDefault()); } | 1,114,595 |
void removeBookmark(final Long containerId) { logger.logApiId(); logger.logVariable("containerId", containerId); try { getInternalArtifactModel().removeFlagBookmark(containerId); notifyContainerUpdated(read(containerId), localEventGenerator); } catch (final Throwabl... | void removeBookmark(final Long containerId) { logger.logApiId(); logger.logVariable("containerId", containerId); try { getArtifactModel().removeFlagBookmark(containerId); notifyContainerUpdated(read(containerId), localEventGenerator); } catch (final Throwable t) { ... | 1,114,596 |
void restore(final UUID uniqueId) { logger.logApiId(); logger.logVariable("uniqueId", uniqueId); try { final InternalArchiveModel archiveModel = getArchiveModel(); // restore container info final Container container = archiveModel.readContainer(uniqueId); ... | void restore(final UUID uniqueId) { logger.logApiId(); logger.logVariable("uniqueId", uniqueId); try { final InternalArchiveModel archiveModel = getArchiveModel(); // restore container info final Container container = archiveModel.readContainer(uniqueId); ... | 1,114,597 |
void restore(final UUID uniqueId) { logger.logApiId(); logger.logVariable("uniqueId", uniqueId); try { final InternalArchiveModel archiveModel = getArchiveModel(); // restore container info final Container container = archiveModel.readContainer(uniqueId); ... | void restore(final UUID uniqueId) { logger.logApiId(); logger.logVariable("uniqueId", uniqueId); try { final InternalArchiveModel archiveModel = getArchiveModel(); // restore container info final Container container = archiveModel.readContainer(uniqueId); ... | 1,114,598 |
public List<DocumentVersion> readDocumentVersions( final UUID uniqueId, final Long versionId, final UUID documentUniqueId) { return archiveModel.readDocumentVersions(uniqueId, versionId, documentUniqueId); ... | public List<DocumentVersion> readDocumentVersions( final UUID uniqueId, final Long versionId, final UUID documentUniqueId) { return archiveModel.readDocumentVersions(uniqueId, versionId, documentUniqueId); ... | 1,114,599 |
public List<DocumentVersion> readDocumentVersions( final UUID uniqueId, final Long versionId, final UUID documentUniqueId) { return archiveModel.readDocumentVersions(uniqueId, versionId, documentUniqueId); ... | public List<DocumentVersion> readDocumentVersions( final UUID uniqueId, final Long versionId, final UUID documentUniqueId) { return archiveModel.readDocumentVersions(uniqueId, versionId); } | 1,114,600 |
void restoreBackup() { logger.logApiId(); try { final List<Container> containers = read(); if (0 < containers.size()) { logger.logWarning("{0} containers will be deleted.", containers.size()); for (final Container container : containers) { ... | void restoreBackup() { logger.logApiId(); try { final List<Container> containers = read(); if (0 < containers.size()) { logger.logWarning("{0} containers will be deleted.", containers.size()); for (final Container container : containers) { ... | 1,114,601 |
void restoreBackup() { logger.logApiId(); try { final List<Container> containers = read(); if (0 < containers.size()) { logger.logWarning("{0} containers will be deleted.", containers.size()); for (final Container container : containers) { ... | void restoreBackup() { logger.logApiId(); try { final List<Container> containers = read(); if (0 < containers.size()) { logger.logWarning("{0} containers will be deleted.", containers.size()); for (final Container container : containers) { ... | 1,114,602 |
public List<DocumentVersion> readDocumentVersions( final UUID uniqueId, final Long versionId, final UUID documentUniqueId) { return backupModel.readDocumentVersions(uniqueId, versionId, docume... | public List<DocumentVersion> readDocumentVersions( final UUID uniqueId, final Long versionId, final UUID documentUniqueId) { return backupModel.readDocumentVersions(uniqueId, versionId, docume... | 1,114,603 |
public List<DocumentVersion> readDocumentVersions( final UUID uniqueId, final Long versionId, final UUID documentUniqueId) { return backupModel.readDocumentVersions(uniqueId, versionId, docume... | public List<DocumentVersion> readDocumentVersions( final UUID uniqueId, final Long versionId, final UUID documentUniqueId) { return backupModel.readDocumentVersions(uniqueId, versionId); ... | 1,114,604 |
void close(final Long documentId) throws ParityException { logger.info("[LMODEL] [DOCUMENT MODE] [CLOSE]"); logger.debug(documentId); assertOnline("[LMODEL] [DOCUMENT MODE] [CLOSE] [USER IS NOT ONLINE]"); assertIsKeyHolder("[LMODEL] [DOCUMENT MODE] [CLOSE] [USER IS NOT KEY HOLDER]", documentId); ... | void close(final Long documentId) throws ParityException { logger.info("[LMODEL] [DOCUMENT MODE] [CLOSE]"); logger.debug(documentId); assertOnline("[LMODEL] [DOCUMENT MODE] [CLOSE] [USER IS NOT ONLINE]"); assertIsKeyHolder("[LMODEL] [DOCUMENT MODE] [CLOSE] [USER IS NOT KEY HOLDER]", documentId); ... | 1,114,605 |
private Fixture(final ArtifactModel aModel, final JabberId closedBy, final DocumentModelImpl dMImpl, final DocumentModel dModel, final Long documentId) { this.aModel = aModel; this.closedBy = closedBy; this.dMImpl = dMImpl; this.dModel = dModel; this.... | private Fixture(final ArtifactModel aModel, final JabberId closedBy, final DocumentModelImpl dMImpl, final DocumentModel dModel, final Long documentId, final Integer eTeamSize) { this.aModel = aModel; this.closedBy = closedBy; this.dMImpl = dMImpl; this... | 1,114,606 |
protected void setUp() throws Exception { super.setUp(); data = new LinkedList<Fixture>(); final ArtifactModel aModel = getArtifactModel(); final DocumentModel dModel = getDocumentModel(); final DocumentModelImpl dMImpl = getImpl(); final SessionModel sModel = getSessionModel(); final ModelTes... | protected void setUp() throws Exception { super.setUp(); data = new LinkedList<Fixture>(); final ArtifactModel aModel = getArtifactModel(); final DocumentModel dModel = getDocumentModel(); final DocumentModelImpl dMImpl = getImpl(); final SessionModel sModel = getSessionModel(); final ModelTes... | 1,114,608 |
public void testHandleClose() { testLogger.info("[LMODEL] [DOCUMENT] [TEST HANDLE CLOSE]"); Document document; Set<User> team; for(final Fixture datum : data) { try { datum.dMImpl.handleClose(datum.documentId, datum.closedBy); } catch(final ParityException px) { fail(c... | public void testHandleClose() { testLogger.info("[LMODEL] [DOCUMENT] [TEST HANDLE CLOSE]"); Document document; Set<User> team; for(final Fixture datum : data) { try { datum.dMImpl.handleClose(datum.documentId, datum.closedBy); } catch(final ParityException px) { fail(c... | 1,114,609 |
public Boolean confirmSynchronize() { final ConfirmSynchronize confirmSynchronize = new ConfirmSynchronize(); openWindow(confirmSynchronize); return confirmSynchronize.didConfirm(); } | public Boolean confirmSynchronize() { final ConfirmSynchronize confirmSynchronize = new ConfirmSynchronize(); openWindow(confirmSynchronize); return confirmSynchronize.didConfirm(); } | 1,114,610 |
public final void setVisibleAndWait() { addWindowListener(new WindowAdapter() { public void windowClosed(final WindowEvent e) { synchronized(this) { notifyAll(); } } }); try { SwingUtilities.invokeAndWait(new Runn... | public final void setVisibleAndWait() { addWindowListener(new WindowAdapter() { public void windowClosed(final WindowEvent e) { synchronized(this) { notifyAll(); } } }); try { SwingUtilities.invokeAndWait(new Runn... | 1,114,611 |
public final void setVisibleAndWait() { addWindowListener(new WindowAdapter() { public void windowClosed(final WindowEvent e) { synchronized(this) { notifyAll(); } } }); try { SwingUtilities.invokeAndWait(new Runn... | public final void setVisibleAndWait() { addWindowListener(new WindowAdapter() { public void windowClosed(final WindowEvent e) { synchronized(this) { notifyAll(); } } }); try { SwingUtilities.invokeAndWait(new Runn... | 1,114,612 |
public final void setVisibleAndWait() { addWindowListener(new WindowAdapter() { public void windowClosed(final WindowEvent e) { synchronized(this) { notifyAll(); } } }); try { SwingUtilities.invokeAndWait(new Runn... | public final void setVisibleAndWait() { addWindowListener(new WindowAdapter() { public void windowClosed(final WindowEvent e) { synchronized(this) { notifyAll(); } } }); try { SwingUtilities.invokeAndWait(new Runn... | 1,114,613 |
protected void setUp() throws Exception { super.setUp(); data = new Vector<Fixture>(getInputFilesLength()); final DocumentModel documentModel = getDocumentModel(OpheliaTestUser.JUNIT); Document document; Long documentId; for(File testFile : getInputFiles()) { document = create(OpheliaTestUser.JUNIT, testFile... | protected void setUp() throws Exception { super.setUp(); data = new Vector<Fixture>(getInputFilesLength()); final DocumentModel documentModel = getDocumentModel(OpheliaTestUser.JUNIT); Document document; Long documentId; for(File testFile : getInputFiles()) { document = create(OpheliaTestUser.JUNIT, testFile... | 1,114,614 |
public static final int pow (int base, int power) { return base^power; } | public static final int pow (int base, int power) { return (int)java.lang.Math.pow(base, power); } | 1,114,615 |
public void testRestore() { // test final Container c = createContainer(datum.junit_z, "Backup Test: Restore backup 1"); addDocument(datum.junit_z, c.getId(), "JUnitTestFramework.doc"); addDocument(datum.junit_z, c.getId(), "JUnitTestFramework.pdf"); addDocument(datum.junit_z, c.g... | public void testRestore() { // test final Container c = createContainer(datum.junit_z, "Backup Test: Restore backup 1"); addDocument(datum.junit_z, c.getId(), "JUnitTestFramework.doc"); addDocument(datum.junit_z, c.getId(), "JUnitTestFramework.pdf"); addDocument(datum.junit_z, c.g... | 1,114,616 |
private void processQueue() { sysApp.logger.info("[LBROWSER] [APPLICATION] [SYSTEM] [PROCESS QUEUE (" + getQueueTotal() + ")]"); if(0 < getQueueTotal()) { TrayNotification notification; for(final Iterator<TrayNotification> i = queue.iterator(); i.hasNext();) { notification... | private void processQueue() { sysApp.logger.info("[LBROWSER] [APPLICATION] [SYSTEM] [PROCESS QUEUE (" + getQueueTotal() + ")]"); if(0 < getQueueTotal()) { TrayNotification notification; for(final Iterator<TrayNotification> i = queue.iterator(); i.hasNext();) { notification... | 1,114,617 |
protected AbstractXMPP(final XMPPCore xmppCore) { super(); this.listeners = new ArrayList<T>(); this.xmppCore = xmppCore; this.xmppEventManager = XMPPEventManager.getInstance(xmppCore); this.xstream = new XStream(); } | protected AbstractXMPP(final XMPPCore xmppCore) { super(); this.xmppCore = xmppCore; this.xmppEventManager = XMPPEventManager.getInstance(xmppCore); this.xstream = new XStream(); } | 1,114,618 |
protected AbstractXMPP(final XMPPCore xmppCore) { super(); this.listeners = new ArrayList<T>(); this.xmppCore = xmppCore; this.xmppEventManager = XMPPEventManager.getInstance(xmppCore); this.xstream = new XStream(); } | protected AbstractXMPP(final XMPPCore xmppCore) { super(); this.listeners = new ArrayList<T>(); this.xmppCore = xmppCore; this.xstream = new XStream(); } | 1,114,619 |
void run() throws IOException { final HeaderReader headerReader = new HeaderReader(); final StreamHeader sessionId = headerReader.readNext(); if (null != sessionId) { final StreamSession streamSession = streamServer.authenticate(sessionId.getValue(), ... | void run() throws IOException { final HeaderReader headerReader = new HeaderReader(); final StreamHeader sessionId = headerReader.readNext(); if (null != sessionId) { final StreamSession streamSession = streamServer.authenticate(sessionId.getValue(), ... | 1,114,621 |
void run() throws IOException { final HeaderReader headerReader = new HeaderReader(); final StreamHeader sessionId = headerReader.readNext(); if (null != sessionId) { final StreamSession streamSession = streamServer.authenticate(sessionId.getValue(), ... | void run() throws IOException { final HeaderReader headerReader = new HeaderReader(); final StreamHeader sessionId = headerReader.readNext(); if (null != sessionId) { final StreamSession streamSession = streamServer.authenticate(sessionId.getValue(), ... | 1,114,622 |
protected void initVelocity( ServletConfig config ) throws ServletException { // Try reading Velocity configuration try { Properties p = super.loadConfiguration(config); Velocity.setExtendedProperties(ExtendedProperties.convertProperties(p)); } cat... | protected void initVelocity( ServletConfig config ) throws ServletException { // Try reading Velocity configuration try { Properties p = super.loadConfiguration(config); Velocity.setExtendedProperties(ExtendedProperties.convertProperties(p)); } cat... | 1,114,624 |
public String doRender(Object o) { if(null == o) { return new StringBuffer(PREFIX) .append(IRendererConstants.NULL) .append(IRendererConstants.SUFFIX).toString(); } else { final Packet p = (Packet) o; return new StringBuffer(PREFIX) .append(IRendererConstants.ID).append(p.getPacketID()) .append(T... | public String doRender(Object o) { if(null == o) { return new StringBuffer(PREFIX) .append(IRendererConstants.NULL) .append(IRendererConstants.SUFFIX).toString(); } else { final Packet p = (Packet) o; return new StringBuffer(PREFIX) .append(IRendererConstants.ID).append(p.getPacketID()) .append(T... | 1,114,626 |
public String doRender(Object o) { if(null == o) { return new StringBuffer(PREFIX) .append(IRendererConstants.NULL) .append(IRendererConstants.SUFFIX).toString(); } else { final Packet p = (Packet) o; return new StringBuffer(PREFIX) .append(IRendererConstants.ID).append(p.getPacketID()) .append(T... | public String doRender(Object o) { if(null == o) { return new StringBuffer(PREFIX) .append(IRendererConstants.NULL) .append(IRendererConstants.SUFFIX).toString(); } else { final Packet p = (Packet) o; return new StringBuffer(PREFIX) .append(IRendererConstants.ID).append(p.getPacketID()) .append(T... | 1,114,627 |
private void tabJListMouseClicked(java.awt.event.MouseEvent e) {//GEN-FIRST:event_tabJListMouseClicked if (1 == e.getClickCount()) { if (e.getButton()==MouseEvent.BUTTON1) { if (isMouseEventWithinCell(e)) { triggerExpand(getSelectedCell()); } ... | private void tabJListMouseClicked(java.awt.event.MouseEvent e) {//GEN-FIRST:event_tabJListMouseClicked if (1 == e.getClickCount()) { if (e.getButton()==MouseEvent.BUTTON1) { if (isMouseEventWithinCell(e)) { triggerExpand(getSelectedCell()); } ... | 1,114,629 |
private void tabJListMouseClicked(java.awt.event.MouseEvent e) {//GEN-FIRST:event_tabJListMouseClicked if (1 == e.getClickCount()) { if (e.getButton()==MouseEvent.BUTTON1) { if (isMouseEventWithinCell(e)) { triggerExpand(getSelectedCell()); } ... | private void tabJListMouseClicked(java.awt.event.MouseEvent e) {//GEN-FIRST:event_tabJListMouseClicked if (1 == e.getClickCount()) { if (e.getButton()==MouseEvent.BUTTON1) { if (isMouseEventWithinCell(e)) { triggerExpand(getSelectedCell()); } ... | 1,114,630 |
private void tabJListMouseReleased(java.awt.event.MouseEvent e) {//GEN-FIRST:event_tabJListMouseReleased if(e.isPopupTrigger()) { // Desired behavior: if click on an entry in the list then trigger a popup for that entry. // If click in the blank area below the last entry in the list the... | private void tabJListMouseReleased(java.awt.event.MouseEvent e) {//GEN-FIRST:event_tabJListMouseReleased if (!MenuFactory.isPopupMenu() && e.isPopupTrigger()) { // Desired behavior: if click on an entry in the list then trigger a popup for that entry. // If click in the blank area below... | 1,114,631 |
private void addContainerPanel(final Container container) { addContainerPanel(containerPanels.size() == 0 ? 0 : containerPanels .size() - 1, container); } | private void addContainerPanel(final Container container) { addContainerPanel(containerPanels.size() == 0 ? 0 : containerPanels .size() - 1, container); } | 1,114,632 |
public void applySearch(final String searchExpression) { debug(); if (searchExpression.equals(this.searchExpression)) { return; } else { this.searchExpression = searchExpression; this.searchResults = readSearchResults(); synchronize(); } } | public void applySearch(final String searchExpression) { debug(); if (searchExpression.equals(this.searchExpression)) { return; } else { this.searchExpression = searchExpression; applySearchResults(); synchronize(); } } | 1,114,633 |
private void clearPanels() { containerPanels.clear(); } | private void clearPanels() { panels.clear(); } | 1,114,634 |
public void debug() { logger.logDebug("{0} container panels.", containerPanels.size()); logger.logDebug("{0} visible panels.", visiblePanels.size()); for (final TabPanel visiblePanel : visiblePanels) { logger.logVariable("visiblePanel.getId()", visiblePanel.getId()); } ... | public void debug() { logger.logDebug("{0} container panels.", panels.size()); logger.logDebug("{0} visible panels.", visiblePanels.size()); for (final TabPanel visiblePanel : visiblePanels) { logger.logVariable("visiblePanel.getId()", visiblePanel.getId()); } logger.lo... | 1,114,635 |
private int lookupIndex(final Long containerId) { for (int i = 0; i < containerPanels.size(); i++) if (((ContainerPanel) containerPanels.get(i)).getContainer() .getId().equals(containerId)) return i; return -1; } | private int lookupIndex(final Long containerId) { for (int i = 0; i < containerPanels.size(); i++) if (((ContainerPanel) containerPanels.get(i)).getContainer() .getId().equals(containerId)) return i; return -1; } | 1,114,636 |
private void removeContainerPanel(final Long containerId, final boolean removeExpandedState) { Long lookupContainerId; for (final Iterator<Long> iLookupValues = containerIdLookup.values().iterator(); iLookupValues.hasNext(); ) { lookupContainerId = iLookupValues.next()... | private void removeContainerPanel(final Long containerId, final boolean removeExpandedState) { Long lookupContainerId; for (final Iterator<Long> iLookupValues = containerIdLookup.values().iterator(); iLookupValues.hasNext(); ) { lookupContainerId = iLookupValues.next()... | 1,114,637 |
private void removeContainerPanel(final Long containerId, final boolean removeExpandedState) { Long lookupContainerId; for (final Iterator<Long> iLookupValues = containerIdLookup.values().iterator(); iLookupValues.hasNext(); ) { lookupContainerId = iLookupValues.next()... | private void removeContainerPanel(final Long containerId, final boolean removeExpandedState) { Long lookupContainerId; for (final Iterator<Long> iLookupValues = containerIdLookup.values().iterator(); iLookupValues.hasNext(); ) { lookupContainerId = iLookupValues.next()... | 1,114,638 |
public void removeSearch() { debug(); // if the member search expression is already null; then there is no // search applied -> do nothing if (null == searchExpression) { return; } else { searchExpression = null; searchResults = null; sy... | public void removeSearch() { debug(); // if the member search expression is already null; then there is no // search applied -> do nothing if (null == searchExpression) { return; } else { searchExpression = null; searchResults.clear(); s... | 1,114,639 |
protected void synchronize() { debug(); /* add container panels and container version panels to the visibility list */ visiblePanels.clear(); for (final TabPanel containerPanel : containerPanels) { visiblePanels.add(containerPanel); } // add newly visib... | protected void synchronize() { debug(); /* add container panels and container version panels to the visibility list */ visiblePanels.clear(); for (final TabPanel containerPanel : containerPanels) { visiblePanels.add(containerPanel); } // add newly visib... | 1,114,641 |
private Fixture(final InputStream stream, final String streamId, final StreamSession streamSession) { super(); this.stream = stream; this.streamId = streamId; this.streamSession = streamSession; } | private Fixture(final InputStream stream, final String streamId, final StreamSession streamSession, final Long streamSize) { super(); this.stream = stream; this.streamId = streamId; this.streamSession = streamSession; } | 1,114,644 |
protected void setUp() throws Exception { super.setUp(); final File workingDirectory = new File(getOutputDirectory(), "working"); Assert.assertTrue(workingDirectory.mkdir(), "Could not create directory {0}.", workingDirectory); final File streamFile = getInputFiles()[3]; final Str... | protected void setUp() throws Exception { super.setUp(); final File workingDirectory = new File(getOutputDirectory(), "working"); Assert.assertTrue(workingDirectory.mkdir(), "Could not create directory {0}.", workingDirectory); final File streamFile = getInputFiles()[3]; final Str... | 1,114,646 |
public void testWriter() { final StreamWriter writer = new StreamWriter(datum.streamSession); try { writer.open(); writer.write(datum.streamId, datum.stream); } finally { writer.close(); } } | public void testWriter() { final StreamWriter writer = new StreamWriter(datum.streamSession); try { writer.open(); writer.write(datum.streamId, datum.stream, datum.streamSize); } catch (final IOException iox) { fail(createFailMessage(iox)); } finally { writer.cl... | 1,114,647 |
public void testWriter() { final StreamWriter writer = new StreamWriter(datum.streamSession); try { writer.open(); writer.write(datum.streamId, datum.stream); } finally { writer.close(); } } | public void testWriter() { final StreamWriter writer = new StreamWriter(datum.streamSession); try { writer.open(); writer.write(datum.streamId, datum.stream); } finally { try { datum.stream.close(); writer.close(); } catch (final IOException iox2) { fail(createF... | 1,114,648 |
protected AbstractModelImpl(final Workspace workspace) { this(workspace, null); } | protected AbstractModelImpl(final Workspace workspace) { super(); this.context = new Context(getClass()); this.l18n = new Localization(LocalizationContext.MODEL); this.logger = LoggerFactory.getLogger(getClass()); this.workspace = workspace; this.preferences = (null == workspace ? null : workspace.getPreferences()); ... | 1,114,649 |
public BooleanTypeConverterImpl(ValueFactory factory) { super(factory); } | public BooleanTypeConverterImpl(ValueFactory factory) { super(factory); } | 1,114,650 |
public void run() { Message message; while (Thread.currentThread() == thread) { if ((message = plug.waitForNewMessage(100)) != null) { callback.airBrushReceiveMessage(message); } } } | public void run() { Message message; while (Thread.currentThread() == thread) { if ((message = plug.waitForNewMessage(100)) != null) { if (!callback.airBrushReceiveMessage(message)) { System.out.println("Note: Unhandled callback for: " + message.type + " to: " + message.to); ... | 1,114,652 |
public static void notmain(String[] args) throws Exception { if(DEBUG) verbose = true; parseArgs(args); printlnVerbose("Processing: " + dmgFile); RandomAccessFile dmgRaf = new RandomAccessFile(dmgFile, "r"); RandomAccessFile isoRaf = null; boolean testOnly = false; if(isoFile != null) { isoRaf = new RandomAcce... | public static void notmain(String[] args) throws Exception { if(debug) verbose = true; parseArgs(args); printlnVerbose("Processing: " + dmgFile); RandomAccessFile dmgRaf = new RandomAccessFile(dmgFile, "r"); RandomAccessFile isoRaf = null; boolean testOnly = false; if(isoFile != null) { isoRaf = new RandomAcce... | 1,114,653 |
public static void notmain(String[] args) throws Exception { if(DEBUG) verbose = true; parseArgs(args); printlnVerbose("Processing: " + dmgFile); RandomAccessFile dmgRaf = new RandomAccessFile(dmgFile, "r"); RandomAccessFile isoRaf = null; boolean testOnly = false; if(isoFile != null) { isoRaf = new RandomAcce... | public static void notmain(String[] args) throws Exception { if(DEBUG) verbose = true; parseArgs(args); printlnVerbose("Processing: " + dmgFile); RandomAccessFile dmgRaf = new RandomAccessFile(dmgFile, "r"); RandomAccessFile isoRaf = null; boolean testOnly = false; if(isoFile != null) { isoRaf = new RandomAcce... | 1,114,654 |
public static void notmain(String[] args) throws Exception { if(DEBUG) verbose = true; parseArgs(args); printlnVerbose("Processing: " + dmgFile); RandomAccessFile dmgRaf = new RandomAccessFile(dmgFile, "r"); RandomAccessFile isoRaf = null; boolean testOnly = false; if(isoFile != null) { isoRaf = new RandomAcce... | public static void notmain(String[] args) throws Exception { if(DEBUG) verbose = true; parseArgs(args); printlnVerbose("Processing: " + dmgFile); RandomAccessFile dmgRaf = new RandomAccessFile(dmgFile, "r"); RandomAccessFile isoRaf = null; boolean testOnly = false; if(isoFile != null) { isoRaf = new RandomAcce... | 1,114,655 |
public static void notmain(String[] args) throws Exception { if(DEBUG) verbose = true; parseArgs(args); printlnVerbose("Processing: " + dmgFile); RandomAccessFile dmgRaf = new RandomAccessFile(dmgFile, "r"); RandomAccessFile isoRaf = null; boolean testOnly = false; if(isoFile != null) { isoRaf = new RandomAcce... | public static void notmain(String[] args) throws Exception { if(DEBUG) verbose = true; parseArgs(args); printlnVerbose("Processing: " + dmgFile); RandomAccessFile dmgRaf = new RandomAccessFile(dmgFile, "r"); RandomAccessFile isoRaf = null; boolean testOnly = false; if(isoFile != null) { isoRaf = new RandomAcce... | 1,114,656 |
public static void notmain(String[] args) throws Exception { if(DEBUG) verbose = true; parseArgs(args); printlnVerbose("Processing: " + dmgFile); RandomAccessFile dmgRaf = new RandomAccessFile(dmgFile, "r"); RandomAccessFile isoRaf = null; boolean testOnly = false; if(isoFile != null) { isoRaf = new RandomAcce... | public static void notmain(String[] args) throws Exception { if(DEBUG) verbose = true; parseArgs(args); printlnVerbose("Processing: " + dmgFile); RandomAccessFile dmgRaf = new RandomAccessFile(dmgFile, "r"); RandomAccessFile isoRaf = null; boolean testOnly = false; if(isoFile != null) { isoRaf = new RandomAcce... | 1,114,657 |
public static void notmain(String[] args) throws Exception { if(DEBUG) verbose = true; parseArgs(args); printlnVerbose("Processing: " + dmgFile); RandomAccessFile dmgRaf = new RandomAccessFile(dmgFile, "r"); RandomAccessFile isoRaf = null; boolean testOnly = false; if(isoFile != null) { isoRaf = new RandomAcce... | public static void notmain(String[] args) throws Exception { if(DEBUG) verbose = true; parseArgs(args); printlnVerbose("Processing: " + dmgFile); RandomAccessFile dmgRaf = new RandomAccessFile(dmgFile, "r"); RandomAccessFile isoRaf = null; boolean testOnly = false; if(isoFile != null) { isoRaf = new RandomAcce... | 1,114,658 |
public static void notmain(String[] args) throws Exception { if(DEBUG) verbose = true; parseArgs(args); printlnVerbose("Processing: " + dmgFile); RandomAccessFile dmgRaf = new RandomAccessFile(dmgFile, "r"); RandomAccessFile isoRaf = null; boolean testOnly = false; if(isoFile != null) { isoRaf = new RandomAcce... | public static void notmain(String[] args) throws Exception { if(DEBUG) verbose = true; parseArgs(args); printlnVerbose("Processing: " + dmgFile); RandomAccessFile dmgRaf = new RandomAccessFile(dmgFile, "r"); RandomAccessFile isoRaf = null; boolean testOnly = false; if(isoFile != null) { isoRaf = new RandomAcce... | 1,114,659 |
public static void notmain(String[] args) throws Exception { if(DEBUG) verbose = true; parseArgs(args); printlnVerbose("Processing: " + dmgFile); RandomAccessFile dmgRaf = new RandomAccessFile(dmgFile, "r"); RandomAccessFile isoRaf = null; boolean testOnly = false; if(isoFile != null) { isoRaf = new RandomAcce... | public static void notmain(String[] args) throws Exception { if(DEBUG) verbose = true; parseArgs(args); printlnVerbose("Processing: " + dmgFile); RandomAccessFile dmgRaf = new RandomAccessFile(dmgFile, "r"); RandomAccessFile isoRaf = null; boolean testOnly = false; if(isoFile != null) { isoRaf = new RandomAcce... | 1,114,660 |
public static void notmain(String[] args) throws Exception { if(DEBUG) verbose = true; parseArgs(args); printlnVerbose("Processing: " + dmgFile); RandomAccessFile dmgRaf = new RandomAccessFile(dmgFile, "r"); RandomAccessFile isoRaf = null; boolean testOnly = false; if(isoFile != null) { isoRaf = new RandomAcce... | public static void notmain(String[] args) throws Exception { if(DEBUG) verbose = true; parseArgs(args); printlnVerbose("Processing: " + dmgFile); RandomAccessFile dmgRaf = new RandomAccessFile(dmgFile, "r"); RandomAccessFile isoRaf = null; boolean testOnly = false; if(isoFile != null) { isoRaf = new RandomAcce... | 1,114,661 |
public static void notmain(String[] args) throws Exception { if(DEBUG) verbose = true; parseArgs(args); printlnVerbose("Processing: " + dmgFile); RandomAccessFile dmgRaf = new RandomAccessFile(dmgFile, "r"); RandomAccessFile isoRaf = null; boolean testOnly = false; if(isoFile != null) { isoRaf = new RandomAcce... | public static void notmain(String[] args) throws Exception { if(DEBUG) verbose = true; parseArgs(args); printlnVerbose("Processing: " + dmgFile); RandomAccessFile dmgRaf = new RandomAccessFile(dmgFile, "r"); RandomAccessFile isoRaf = null; boolean testOnly = false; if(isoFile != null) { isoRaf = new RandomAcce... | 1,114,662 |
public static void notmain(String[] args) throws Exception { if(DEBUG) verbose = true; parseArgs(args); printlnVerbose("Processing: " + dmgFile); RandomAccessFile dmgRaf = new RandomAccessFile(dmgFile, "r"); RandomAccessFile isoRaf = null; boolean testOnly = false; if(isoFile != null) { isoRaf = new RandomAcce... | public static void notmain(String[] args) throws Exception { if(DEBUG) verbose = true; parseArgs(args); printlnVerbose("Processing: " + dmgFile); RandomAccessFile dmgRaf = new RandomAccessFile(dmgFile, "r"); RandomAccessFile isoRaf = null; boolean testOnly = false; if(isoFile != null) { isoRaf = new RandomAcce... | 1,114,663 |
public static void notmain(String[] args) throws Exception { if(DEBUG) verbose = true; parseArgs(args); printlnVerbose("Processing: " + dmgFile); RandomAccessFile dmgRaf = new RandomAccessFile(dmgFile, "r"); RandomAccessFile isoRaf = null; boolean testOnly = false; if(isoFile != null) { isoRaf = new RandomAcce... | public static void notmain(String[] args) throws Exception { if(DEBUG) verbose = true; parseArgs(args); printlnVerbose("Processing: " + dmgFile); RandomAccessFile dmgRaf = new RandomAccessFile(dmgFile, "r"); RandomAccessFile isoRaf = null; boolean testOnly = false; if(isoFile != null) { isoRaf = new RandomAcce... | 1,114,664 |
public static void notmain(String[] args) throws Exception { if(DEBUG) verbose = true; parseArgs(args); printlnVerbose("Processing: " + dmgFile); RandomAccessFile dmgRaf = new RandomAccessFile(dmgFile, "r"); RandomAccessFile isoRaf = null; boolean testOnly = false; if(isoFile != null) { isoRaf = new RandomAcce... | public static void notmain(String[] args) throws Exception { if(DEBUG) verbose = true; parseArgs(args); printlnVerbose("Processing: " + dmgFile); RandomAccessFile dmgRaf = new RandomAccessFile(dmgFile, "r"); RandomAccessFile isoRaf = null; boolean testOnly = false; if(isoFile != null) { isoRaf = new RandomAcce... | 1,114,665 |
public static void notmain(String[] args) throws Exception { if(DEBUG) verbose = true; parseArgs(args); printlnVerbose("Processing: " + dmgFile); RandomAccessFile dmgRaf = new RandomAccessFile(dmgFile, "r"); RandomAccessFile isoRaf = null; boolean testOnly = false; if(isoFile != null) { isoRaf = new RandomAcce... | public static void notmain(String[] args) throws Exception { if(DEBUG) verbose = true; parseArgs(args); printlnVerbose("Processing: " + dmgFile); RandomAccessFile dmgRaf = new RandomAccessFile(dmgFile, "r"); RandomAccessFile isoRaf = null; boolean testOnly = false; if(isoFile != null) { isoRaf = new RandomAcce... | 1,114,666 |
public static void notmain(String[] args) throws Exception { if(DEBUG) verbose = true; parseArgs(args); printlnVerbose("Processing: " + dmgFile); RandomAccessFile dmgRaf = new RandomAccessFile(dmgFile, "r"); RandomAccessFile isoRaf = null; boolean testOnly = false; if(isoFile != null) { isoRaf = new RandomAcce... | public static void notmain(String[] args) throws Exception { if(DEBUG) verbose = true; parseArgs(args); printlnVerbose("Processing: " + dmgFile); RandomAccessFile dmgRaf = new RandomAccessFile(dmgFile, "r"); RandomAccessFile isoRaf = null; boolean testOnly = false; if(isoFile != null) { isoRaf = new RandomAcce... | 1,114,667 |
public static void notmain(String[] args) throws Exception { if(DEBUG) verbose = true; parseArgs(args); printlnVerbose("Processing: " + dmgFile); RandomAccessFile dmgRaf = new RandomAccessFile(dmgFile, "r"); RandomAccessFile isoRaf = null; boolean testOnly = false; if(isoFile != null) { isoRaf = new RandomAcce... | public static void notmain(String[] args) throws Exception { if(DEBUG) verbose = true; parseArgs(args); printlnVerbose("Processing: " + dmgFile); RandomAccessFile dmgRaf = new RandomAccessFile(dmgFile, "r"); RandomAccessFile isoRaf = null; boolean testOnly = false; if(isoFile != null) { isoRaf = new RandomAcce... | 1,114,668 |
public static void notmain(String[] args) throws Exception { if(DEBUG) verbose = true; parseArgs(args); printlnVerbose("Processing: " + dmgFile); RandomAccessFile dmgRaf = new RandomAccessFile(dmgFile, "r"); RandomAccessFile isoRaf = null; boolean testOnly = false; if(isoFile != null) { isoRaf = new RandomAcce... | public static void notmain(String[] args) throws Exception { if(DEBUG) verbose = true; parseArgs(args); printlnVerbose("Processing: " + dmgFile); RandomAccessFile dmgRaf = new RandomAccessFile(dmgFile, "r"); RandomAccessFile isoRaf = null; boolean testOnly = false; if(isoFile != null) { isoRaf = new RandomAcce... | 1,114,669 |
public static void notmain(String[] args) throws Exception { if(DEBUG) verbose = true; parseArgs(args); printlnVerbose("Processing: " + dmgFile); RandomAccessFile dmgRaf = new RandomAccessFile(dmgFile, "r"); RandomAccessFile isoRaf = null; boolean testOnly = false; if(isoFile != null) { isoRaf = new RandomAcce... | public static void notmain(String[] args) throws Exception { if(DEBUG) verbose = true; parseArgs(args); printlnVerbose("Processing: " + dmgFile); RandomAccessFile dmgRaf = new RandomAccessFile(dmgFile, "r"); RandomAccessFile isoRaf = null; boolean testOnly = false; if(isoFile != null) { isoRaf = new RandomAcce... | 1,114,670 |
public static void notmain(String[] args) throws Exception { if(DEBUG) verbose = true; parseArgs(args); printlnVerbose("Processing: " + dmgFile); RandomAccessFile dmgRaf = new RandomAccessFile(dmgFile, "r"); RandomAccessFile isoRaf = null; boolean testOnly = false; if(isoFile != null) { isoRaf = new RandomAcce... | public static void notmain(String[] args) throws Exception { if(DEBUG) verbose = true; parseArgs(args); printlnVerbose("Processing: " + dmgFile); RandomAccessFile dmgRaf = new RandomAccessFile(dmgFile, "r"); RandomAccessFile isoRaf = null; boolean testOnly = false; if(isoFile != null) { isoRaf = new RandomAcce... | 1,114,671 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.