Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for GetLabel (0.75 sec)

  1. maven-core/src/test/java/org/apache/maven/project/GraphTest.java

            Vertex c = graph.getVertex("c");
            Vertex d = graph.getVertex("d");
            assertEquals("a", a.getLabel());
            assertEquals("b", b.getLabel());
            assertEquals("c", c.getLabel());
            assertEquals("d", d.getLabel());
            assertFalse(hasEdge(graph, "b", "a"));
            assertFalse(hasEdge(graph, "a", "c"));
            assertFalse(hasEdge(graph, "a", "d"));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 06:02:04 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/TestPageGenerator.java

            public void renderCommitLink(Html html) {
                html.a().classAttr("commit-link").href(getUrl()).text(getLabel()).end();
            }
    
            public String getUrl() {
                return String.format("https://github.com/%s/commit/%s", repo, hash);
            }
    
            public String getLabel() {
                return formatHash(hash);
            }
    
            private String formatHash(String hash) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/ProjectSorter.java

        }
    
        public List<String> getDependents(String id) {
            return graph.getVertex(id).getParents().stream().map(Vertex::getLabel).collect(Collectors.toList());
        }
    
        public List<String> getDependencies(String id) {
            return graph.getVertex(id).getChildren().stream().map(Vertex::getLabel).collect(Collectors.toList());
        }
    
        public static String getId(MavenProject project) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 06:02:04 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java

            private String value;
    
            private String[] permissions;
    
            private String virtualHost;
    
            private Locale locale;
    
            public String getLabel() {
                return label;
            }
    
            public void setLabel(final String label) {
                this.label = label;
            }
    
            public String getValue() {
                return value;
            }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalProblemAggregationDetailsV2.java

        @Nullable
        InternalDocumentationLink getDocumentationLink();
    
        InternalSeverity getSeverity();
    
        List<InternalProblemContextDetails> getProblems();
    
        InternalLabel getLabel();
    
        InternalProblemCategory getCategory();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:01:32 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/Line.java

            this.data = IntStream.range(0, points.size())
                .mapToObj(index -> Arrays.<Number>asList(index, points.get(index)))
                .collect(Collectors.toList());
        }
    
        public String getLabel() {
            return label;
        }
    
        public List<List<Number>> getData() {
            return data;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/problem/InternalLabel.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.tooling.internal.protocol.problem;
    
    public interface InternalLabel {
    
        String getLabel();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 15:06:35 UTC 2023
    - 731 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/templates/problems-api-usage/sample-ide/src/main/java/org/gradle/sample/SampleIde.java

                System.out.println("Problem:");
                System.out.println(" - category: " + toString(problem.getCategory()));
                System.out.println(" - label: " + problem.getLabel().getLabel());
                System.out.println(" - details: " + problem.getDetails().getDetails());
                System.out.println(" - severity: " + toString(problem.getSeverity()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 08:50:13 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalProblemAggregation.java

    import org.gradle.tooling.internal.protocol.problem.InternalProblemCategory;
    
    @NonNullApi
    public interface InternalProblemAggregation {
    
        InternalProblemCategory getCategory();
    
        InternalLabel getLabel();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:01:32 UTC 2024
    - 978 bytes
    - Viewed (0)
  10. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultLabel.java

    public class DefaultLabel implements InternalLabel, Serializable {
    
        private final String label;
    
        public DefaultLabel(String label) {
            this.label = label;
        }
    
        @Override
        public String getLabel() {
            return label;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 14:13:55 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top