Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 139 for Kuper (0.15 sec)

  1. android/guava/src/com/google/common/collect/Comparators.java

      @IgnoreJRERequirement // Users will use this only if they're already using streams.
      @Beta // TODO: b/288085449 - Remove.
      public static <T extends @Nullable Object> Collector<T, ?, List<T>> least(
          int k, Comparator<? super T> comparator) {
        checkNonnegative(k, "k");
        checkNotNull(comparator);
        return Collector.of(
            () -> TopKSelector.<T>least(k, comparator),
            TopKSelector::offer,
            TopKSelector::combine,
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 10.2K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/ExtensibleEnumRegistries.java

                implements PathScopeRegistry {
    
            @Inject
            public DefaultPathScopeRegistry(List<PathScopeProvider> providers) {
                super(
                        providers,
                        PathScope.MAIN_COMPILE,
                        PathScope.MAIN_RUNTIME,
                        PathScope.TEST_COMPILE,
                        PathScope.TEST_RUNTIME);
            }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelResolverException.java

         * @param cause The cause, may be {@code null}.
         */
        public ModelResolverException(String message, String groupId, String artifactId, String version, Throwable cause) {
            super(message, cause);
            this.groupId = (groupId != null) ? groupId : "";
            this.artifactId = (artifactId != null) ? artifactId : "";
            this.version = (version != null) ? version : "";
        }
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderResult.java

         * the list denotes the model on which the model builder was originally invoked. The last identifier will always be
         * an empty string that by definition denotes the super POM.
         *
         * @return The model identifiers from the lineage of models, never {@code null}.
         */
        @Nonnull
        List<String> getModelIds();
    
        /**
         * Gets the file model.
         *
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4.5K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelTransformerException.java

    /**
     *
     * @since 4.0.0
     */
    public class ModelTransformerException extends MavenException {
    
        public ModelTransformerException(Exception e) {
            super(e);
        }
    
        public ModelTransformerException(String message, Throwable exception) {
            super(message, exception);
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  6. maven-compat/src/test/java/org/apache/maven/project/TestProjectBuilder.java

                RepositorySystem repoSystem,
                RemoteRepositoryManager repositoryManager,
                ProjectDependenciesResolver dependencyResolver,
                RootLocator rootLocator) {
            super(
                    modelBuilder,
                    modelProcessor,
                    projectBuildingHelper,
                    repositorySystem,
                    repoSystem,
                    repositoryManager,
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  7. tests/test_tutorial/test_dependencies/test_tutorial006_an_py39.py

            "/items/", headers={"X-Token": "fake-super-secret-token", "X-Key": "invalid"}
        )
        assert response.status_code == 400, response.text
        assert response.json() == {"detail": "X-Key header invalid"}
    
    
    @needs_py39
    def test_get_valid_headers(client: TestClient):
        response = client.get(
            "/items/",
            headers={
                "X-Token": "fake-super-secret-token",
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:40:57 GMT 2024
    - 5.3K bytes
    - Viewed (0)
  8. maven-compat/src/test/java/org/apache/maven/project/inheritance/t05/ProjectInheritanceTest.java

        // ----------------------------------------------------------------------
        //
        // p1 inherits from p0
        // p0 inherits from super model
        //
        // or we can show it graphically as:
        //
        // p1 ---> p0 --> super model
        //
        // ----------------------------------------------------------------------
    
        @Test
        void testDependencyManagement() throws Exception {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 2.8K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirDataFlowInfoProvider.kt

            override fun visitFunction(function: FirFunction) {
                firFunctionDeclarations.add(function)
                super.visitFunction(function)
            }
    
            override fun visitLoop(loop: FirLoop) {
                firLoopStatements.add(loop)
                super.visitLoop(loop)
            }
    
            override fun visitReturnExpression(returnExpression: FirReturnExpression) {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Apr 16 06:40:43 GMT 2024
    - 22.9K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilderResult.java

        }
    
        @Override
        public List<String> getModelIds() {
            return modelIds;
        }
    
        public DefaultModelBuilderResult addModelId(String modelId) {
            // Intentionally notNull because Super POM may not contain a modelId
            Objects.requireNonNull(modelId, "modelId cannot be null");
    
            modelIds.add(modelId);
    
            return this;
        }
    
        @Override
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 7.1K bytes
    - Viewed (0)
Back to top