Search Options

Results per page
Sort
Preferred Languages
Advance

Results 341 - 350 of 1,491 for msbuild (0.05 sec)

  1. src/main/java/org/codelibs/fess/helper/SearchHelper.java

        public long deleteByQuery(final HttpServletRequest request, final SearchRequestParams params) {
            final String query = ComponentUtil.getQueryStringBuilder().params(params).build();
    
            final QueryContext queryContext = ComponentUtil.getQueryHelper().build(params.getType(), query, context -> {
                context.skipRoleQuery();
            });
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/graph/StandardImmutableDirectedNetworkTest.java

                .immutable();
    
        return networkBuilder.build();
      }
    
      @Override
      void addNode(Integer n) {
        networkBuilder.addNode(n);
        network = networkBuilder.build();
      }
    
      @Override
      void addEdge(Integer n1, Integer n2, String e) {
        networkBuilder.addEdge(n1, n2, e);
        network = networkBuilder.build();
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Apr 09 17:01:22 UTC 2020
    - 2.8K bytes
    - Viewed (0)
  3. docs/en/docs/deployment/docker.md

    ```Dockerfile
    COPY ./app /code/app
    ```
    
    ### Build the Docker Image
    
    Now that all the files are in place, let's build the container image.
    
    * Go to the project directory (in where your `Dockerfile` is, containing your `app` directory).
    * Build your FastAPI image:
    
    <div class="termy">
    
    ```console
    $ docker build -t myimage .
    
    ---> 100%
    ```
    
    </div>
    
    /// tip
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Wed Sep 18 16:09:57 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ImmutableClassToInstanceMap.java

       *         .put(BarHandler.class, new SubBarHandler())
       *         .put(Handler.class, new QuuxHandler())
       *         .build();
       * }</pre>
       *
       * <p>After invoking {@link #build()} it is still possible to add more entries and build again.
       * Thus each map generated by this builder will be a superset of any map generated before it.
       *
       * @since 2.0
       */
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed May 10 21:56:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  5. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/goals/Init.java

            config.setDefaultDispatcher(null);
            config.getConfigurations().clear();
    
            Map<String, PromptResultItemIF> result = prompt.prompt(
                    context.header, dispatcherPrompt(prompt.getPromptBuilder()).build());
            if (result == null) {
                throw new InterruptedException();
            }
            if (NONE.equals(result.get("defaultDispatcher").getResult())) {
                context.terminal
                        .writer()
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. .github/workflows/codeql-analysis.yml

            # queries: ./path/to/local/query, your-org/your-repo/queries@main
    
        # Autobuild attempts to build any compiled languages  (C/C++, C#, or Java).
        # If this step fails, then you should remove it and run the build manually (see below)
        - name: Autobuild
          uses: github/codeql-action/autobuild@v1
    
        # ℹ️ Command-line programs to run using the OS shell.
    Registered: Thu Oct 31 02:32:13 UTC 2024
    - Last Modified: Fri Oct 02 13:24:14 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  7. impl/maven-core/src/main/java/org/apache/maven/AbstractMavenLifecycleParticipant.java

         */
        // TODO This is too early for build extensions, so maybe just remove it?
        public void afterSessionStart(MavenSession session) throws MavenExecutionException {
            // do nothing
        }
    
        /**
         * Invoked after all projects were built.
         *
         * This callback is intended to allow extensions to perform cleanup of any
         * allocated external resources after the build. It is invoked on best-effort
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. impl/maven-core/src/main/java/org/apache/maven/execution/ProjectDependencyGraph.java

         *
         * @since 3.5.0
         */
        List<MavenProject> getAllProjects();
    
        /**
         * Gets all projects in their intended build order, i.e. after topologically sorting the projects according to their
         * interdependencies.
         *
         * @return The projects in the build order, never {@code null}.
         */
        List<MavenProject> getSortedProjects();
    
        /**
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t02/ProjectInheritanceTest.java

            // ----------------------------------------------------------------------
    
            assertEquals("4.0.0", project4.getModelVersion());
    
            Build build = project4.getBuild();
            List<Plugin> plugins = build.getPlugins();
    
            Map<String, Integer> validPluginCounts = new HashMap<>();
    
            String testPluginArtifactId = "maven-compiler-plugin";
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. compat/maven-compat/src/test/resources/inheritance-repo/t09/p0/p1/pom.xml

          <artifactId>t09-a</artifactId>
        </dependency>
    
      </dependencies>
    
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-antrun-plugin</artifactId>
            <configuration>
              <tasks><echo>${project.parent.basedir}</echo></tasks>
            </configuration>
          </plugin>
        </plugins>
      </build>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 739 bytes
    - Viewed (0)
Back to top