Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TPGLFONTAINE
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Fontaine Paul
TPGLFONTAINE
Commits
03fab6cc
Commit
03fab6cc
authored
Oct 25, 2022
by
Clémentine Nebut
Browse files
Options
Downloads
Patches
Plain Diff
initial commit branch feat1
parent
0e1cd69c
Branches
feat1
No related tags found
No related merge requests found
Pipeline
#633
failed
Oct 26, 2022
Stage: build
Stage: test
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
pom.xml
+17
-0
17 additions, 0 deletions
pom.xml
src/main/java/Foo.java
+18
-0
18 additions, 0 deletions
src/main/java/Foo.java
with
35 additions
and
0 deletions
pom.xml
0 → 100644
+
17
−
0
View file @
03fab6cc
<?xml version="1.0" encoding="UTF-8"?>
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<modelVersion>
4.0.0
</modelVersion>
<groupId>
fr.umfds
</groupId>
<artifactId>
agl22tpnote
</artifactId>
<version>
1.0-SNAPSHOT
</version>
<properties>
<maven.compiler.source>
11
</maven.compiler.source>
<maven.compiler.target>
11
</maven.compiler.target>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
</properties>
</project>
This diff is collapsed.
Click to expand it.
src/main/java/Foo.java
0 → 100644
+
18
−
0
View file @
03fab6cc
import
com.google.common.collect.HashBasedTable
;
public
class
Foo
{
private
String
id
;
public
Foo
(
String
id
)
{
this
.
id
=
id
;
}
public
String
bar
(
String
s
){
return
s
+
id
;
}
public
float
bar2
(){
HashBasedTable
<
Integer
,
String
,
Float
>
at
=
HashBasedTable
.
create
();
return
at
.
get
(
0
,
id
);
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment