Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for fordi (0.12 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/DependencyScope.java

        private static final Map<String, DependencyScope> IDS = Collections.unmodifiableMap(
                Stream.of(DependencyScope.values()).collect(Collectors.toMap(s -> s.id, s -> s)));
    
        public static DependencyScope forId(String id) {
            return IDS.get(id);
        }
    
        private final String id;
        private final boolean transitive;
    
        DependencyScope(String id, boolean transitive) {
            this.id = id;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Mar 27 14:46:12 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  2. docs/az/docs/fastapi-people.md

    {% for sponsor in sponsors.bronze -%}
    <a href="{{ sponsor.url }}" target="_blank" title="{{ sponsor.title }}"><img src="{{ sponsor.img }}" style="border-radius:15px"></a>
    {% endfor %}
    {% endif %}
    
    {% endif %}
    
    ### Fərdi Sponsorlar
    
    {% if github_sponsors %}
    {% for group in github_sponsors.sponsors %}
    
    <div class="user-list user-list-center">
    
    {% for user in group %}
    {% if user.login not in sponsors_badge.logins %}
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 6.9K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

        /**
         * Obtain the {@link DependencyScope} from the specified {@code id}.
         * <p>
         * Shortcut for {@code DependencyScope.forId(...)}.
         *
         * @see org.apache.maven.api.DependencyScope#forId(String)
         */
        @Nonnull
        DependencyScope requireDependencyScope(@Nonnull String id);
    
        /**
         * Obtain the {@link PathScope} from the specified {@code id}.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 30.2K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/internal/impl/AbstractSession.java

            return getService(ProjectScopeRegistry.class).require(id);
        }
    
        @Override
        public DependencyScope requireDependencyScope(String id) {
            return DependencyScope.forId(nonNull(id, "id"));
        }
    
        @Override
        public PathScope requirePathScope(String id) {
            return getService(PathScopeRegistry.class).require(id);
        }
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 21.7K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/AbstractSession.java

            return getService(ProjectScopeRegistry.class).require(id);
        }
    
        @Override
        public DependencyScope requireDependencyScope(String id) {
            return DependencyScope.forId(nonNull(id, "id"));
        }
    
        @Override
        public PathScope requirePathScope(String id) {
            return getService(PathScopeRegistry.class).require(id);
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 16:33:18 GMT 2024
    - 27.2K bytes
    - Viewed (0)
Back to top