This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| environment.controller = true | |
| #vraptor.simplemail.main.server = smtp-mail.outlook.com | |
| vraptor.simplemail.main.server = localhost | |
| vraptor.simplemail.main.port = 25 | |
| vraptor.simplemail.main.tls = true | |
| vraptor.simplemail.main.from = email@domain.com.br | |
| vraptor.simplemail.main.from.name = name | |
| #vraptor.simplemail.main.username = email@domain.com.br | |
| #vraptor.simplemail.main.password = password |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- Button to trigger modal --> | |
| <a href="#myModal" class="btn btn-primary" data-toggle="modal"> | |
| <fmt:message key="cadastros.produto.cadastrar"/> | |
| </a> | |
| <br/> | |
| <br/> | |
| <!-- Modal --> | |
| <div id="myModal" class="modal hide fade" tabindex="-1" > <!-- role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="controls"> | |
| <select id="categoria" name="produto.categoria" required> | |
| <c:forEach items="${categorias}" var="c"> | |
| <option value="${c }" >${c.descricao}</option> | |
| </c:forEach> | |
| </select> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- Button to trigger modal --> | |
| <a href="#myModal" class="btn btn-primary" data-toggle="modal"> | |
| <fmt:message key="cadastros.categoria.cadastrar"/> | |
| </a> | |
| <br/> | |
| <br/> | |
| <!-- Modal --> | |
| <div id="myModal" class="modal hide fade" tabindex="-1" > <!-- role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" --> |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /********************************************************* | |
| nn.c | |
| 1x4_8x35_16x16.NET.treinada | |
| Erro SSE:7.958807 Backpropagation FeedForward | |
| Servidor: Mesa | |
| setSeed() | |
| setInitFunc("Randomize_Weights", -1, 1) | |
| setSubShuffle (TRUE) | |
| setLearnFunc( "Std_Backpropagation", 0.2, 0.1) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * @param sobreposicaoX sobreposição eixo x laterais | |
| * @param sobreposicaoY sobreposição eixo y aspersores | |
| * @formula cuc possivel visualizar a formula em | |
| * https://dl.dropboxusercontent.com/u/10055997/cuc.gif | |
| */ | |
| public void calculoCuc(float sobreposicaoX, float sobreposicaoY) { | |
| //organiza em um array os valores sobrepostos | |
| List<Float> listaSobreposicao = listaSobreposicao(sobreposicoes, sobreposicaoX, sobreposicaoY); | |
| Float mediaSobreposicao; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package dr.ui.coleta; | |
| import dr.model.Coleta; | |
| import java.util.List; | |
| import javafx.application.Platform; | |
| import javafx.beans.property.SimpleFloatProperty; | |
| import javafx.collections.ObservableList; | |
| import javafx.scene.control.TableView; | |
| /** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package dr.ui.coleta; | |
| import dr.controller.PersistenceController; | |
| import dr.dao.ColetaDAO; | |
| import dr.dao.ColetaDAOImpl; | |
| import dr.model.Coleta; | |
| import dr.ui.ensaio.*; | |
| import dr.model.Ensaio; | |
| import dr.ui.coleta.ColetaTableView.ColetaItem; | |
| import dr.ui.table.cell.NumericEditableTableCell; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| using namespace std; | |
| int main () | |
| { | |
| /*váriavel para armazenar a quantidade de valores*/ | |
| int quantidade_valores; | |
| /*contador*/ | |
| int i=0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| using namespace std; | |
| int main () | |
| { | |
| /*váriavel para armazenar a quantidade de valores*/ | |
| int quantidade_valores; | |
| /*contador*/ | |
| int i=0; |
NewerOlder