Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 382 for solve (0.68 sec)

  1. test/solitaire.go

    	board[pos+2*dir] = '○'
    }
    
    // solve tries to find a sequence of moves such that there is only one peg left
    // at the end; if center is >= 0, that last peg must be in the center position.
    // If a solution is found, solve prints the board after each move in a backward
    // fashion (i.e., the last board position is printed first, all the way back to
    // the starting board position).
    func solve() bool {
    	var last, n int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:48:19 UTC 2012
    - 2.9K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/CapabilityResolutionDetails.java

        /**
         * Returns the list of components which are in conflict on this capability
         */
        List<ComponentVariantIdentifier> getCandidates();
    
        /**
         * Selects a particular candidate to solve the conflict. It is recommended to
         * provide a human-readable explanation to the choice by calling the {@link #because(String)} method
         *
         * @param candidate the selected candidate
         * @return this details instance
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  3. docs/en/docs/help-fastapi.md

    * In many cases, it's better to understand their **underlying problem or use case**, because there might be a better way to solve it than what they are trying to do.
    
    ### Ask to close
    
    If they reply, there's a high chance you would have solved their problem, congrats, **you're a hero**! 🦸
    
    * Now, if that solved their problem, you can ask them to:
    
        * In GitHub Discussions: mark the comment as the **answer**.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. .github/ISSUE_TEMPLATE/feature_request.md

    ---
    name: Feature request
    about: Suggest an idea
    title: ''
    labels: enhancement
    assignees: ''
    
    ---
    
    Start by telling us what problem you’re trying to solve. Often a solution already exists!
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 30 18:42:51 UTC 2018
    - 350 bytes
    - Viewed (0)
  5. test/235.go

    // run
    
    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Solve the 2,3,5 problem (print all numbers with 2, 3, or 5 as factor) using channels.
    // Test the solution, silently.
    
    package main
    
    type T chan uint64
    
    func M(f uint64) (in, out T) {
    	in = make(T, 100)
    	out = make(T, 100)
    	go func(in, out T, f uint64) {
    		for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 02:19:43 UTC 2012
    - 1.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_capability_conflict.adoc

    [[sub:selecting-preferred-capability-provider]]
    === Selecting between different capability candidates
    
    In the relocation example above, Gradle was able to tell you that you have two versions of the same API on classpath: an "old" module and a "relocated" one.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  7. futures/listenablefuture9999/pom.xml

        conflict with the copy of ListenableFuture in guava itself. If users are
        using an older version of Guava or a build system other than Gradle, they
        may see class conflicts. If so, they can solve them by manually excluding
        the listenablefuture artifact or manually forcing their build systems to
        use 9999.0-....
      </description>
      <build>
        <plugins>
          <plugin>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 12 21:42:09 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/dsl/DependencyResultSpec.java

            this.stringNotation = stringNotation;
        }
    
        @Override
        public boolean isSatisfiedBy(DependencyResult candidate) {
            //The matching is very simple at the moment but it should solve majority of cases.
            //It operates using String#contains and it tests either requested or selected module.
            if (candidate instanceof ResolvedDependencyResult) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 05 20:58:39 UTC 2018
    - 2.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/ConsoleRenderer.java

        public String asClickableFileUrl(File path) {
            // File.toURI().toString() leads to a URL like this on Mac: file:/reports/index.html
            // This URL is not recognized by the Mac console (too few leading slashes). We solve
            // this be creating an URI with an empty authority.
            try {
                return new URI("file", "", path.toURI().getPath(), null, null).toASCIIString();
            } catch (URISyntaxException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/InlineDelegatedPropertyAccessorsAnalyzer.kt

        // IDE tries to acquire its bytecode via the index, however,
        // the index doesn't cover classfiles from compiler output,
        // so the lowering fails.
        //
        // To solve the problem, we need to find all delegated properties with inline accessors
        // reachable from files that will be compiled, and include files these inline accessors
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top