Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 118 for Answers (0.14 sec)

  1. test/ken/complit.go

    			test("mc[i][j]", mc[i][j]);
    			test("mm[i][j]", mm[i][j]);
    		}
    	}
    
    }
    
    var	ref	= 0;
    
    func
    test(xs string, x int) {
    
    	if ref >= len(answers) {
    		println(xs, x);
    		return;
    	}
    
    	if x != answers[ref] {
    		println(xs, "is", x, "should be", answers[ref])
    	}
    	ref++;
    }
    
    
    var	a	= [3]int{1001, 1002, 1003}
    var	s	= S{1101, 1102, 1103}
    var	c	= []int{1201, 1202, 1203}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 4.3K bytes
    - Viewed (0)
  2. src/math/rand/v2/example_test.go

    		"Cannot predict now",
    		"Concentrate and ask again",
    		"Don't count on it",
    		"My reply is no",
    		"My sources say no",
    		"Outlook not so good",
    		"Very doubtful",
    	}
    	fmt.Println("Magic 8-Ball says:", answers[rand.IntN(len(answers))])
    }
    
    // This example shows the use of each of the methods on a *Rand.
    // The use of the global functions is the same, without the receiver.
    func Example_rand() {
    	// Create and seed the generator.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 17:09:26 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. src/math/rand/example_test.go

    		"Cannot predict now",
    		"Concentrate and ask again",
    		"Don't count on it",
    		"My reply is no",
    		"My sources say no",
    		"Outlook not so good",
    		"Very doubtful",
    	}
    	fmt.Println("Magic 8-Ball says:", answers[rand.Intn(len(answers))])
    }
    
    // This example shows the use of each of the methods on a *Rand.
    // The use of the global functions is the same, without the receiver.
    func Example_rand() {
    	// Create and seed the generator.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 16:24:57 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  4. docs/uk/docs/fastapi-people.md

    {% for user in people.maintainers %}
    
    <div class="user"><a href="{{ user.url }}" target="_blank"><div class="avatar-wrapper"><img src="{{ user.avatarUrl }}"/></div><div class="title">@{{ user.login }}</div></a> <div class="count">Answers: {{ user.answers }}</div><div class="count">Pull Requests: {{ user.prs }}</div></div>
    {% endfor %}
    
    </div>
    {% endif %}
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/ForwardingObjectTester.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package com.google.common.util.concurrent;
    
    import static org.mockito.Answers.CALLS_REAL_METHODS;
    import static org.mockito.Mockito.doReturn;
    import static org.mockito.Mockito.mock;
    
    import com.google.common.base.Function;
    import com.google.common.collect.ForwardingObject;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 05 19:41:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/ForwardingObjectTester.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package com.google.common.util.concurrent;
    
    import static org.mockito.Answers.CALLS_REAL_METHODS;
    import static org.mockito.Mockito.doReturn;
    import static org.mockito.Mockito.mock;
    
    import com.google.common.base.Function;
    import com.google.common.collect.ForwardingObject;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 05 19:41:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. test/noinit.go

    var ca = [][3]int{[3]int{4001, 4002, 4003}, [3]int{4004, 4005, 4006}, [3]int{4007, 4008, 4009}}
    var cs = []S{S{4101, 4102, 4103}, S{4104, 4105, 4106}, S{4107, 4108, 4109}}
    
    var answers = [...]int{
    	// s
    	1101, 1102, 1103,
    
    	// ss
    	3101, 3102, 3103,
    	3104, 3105, 3106,
    	3107, 3108, 3109,
    
    	// [0]
    	1001, 1201, 1301,
    	2101, 2102, 2103,
    	4101, 4102, 4103,
    	5101, 5102, 5103,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 17:57:36 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  8. docs/ru/docs/fastapi-people.md

    {% for user in people.maintainers %}
    
    <div class="user"><a href="{{ user.url }}" target="_blank"><div class="avatar-wrapper"><img src="{{ user.avatarUrl }}"/></div><div class="title">@{{ user.login }}</div></a> <div class="count">Answers: {{ user.answers }}</div><div class="count">Pull Requests: {{ user.prs }}</div></div>
    {% endfor %}
    
    </div>
    {% endif %}
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ComponentSelectionReason.java

     */
    
    package org.gradle.api.artifacts.result;
    
    import org.gradle.internal.HasInternalProtocol;
    import org.gradle.internal.scan.UsedByScanPlugin;
    
    import java.util.List;
    
    /**
     * Answers the question why a component was selected during the dependency resolution.
     *
     * @since 1.3
     */
    @UsedByScanPlugin
    @HasInternalProtocol
    public interface ComponentSelectionReason {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Aug 28 21:50:20 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  10. docs/de/docs/fastapi-people.md

    {% for user in people.maintainers %}
    
    <div class="user"><a href="{{ user.url }}" target="_blank"><div class="avatar-wrapper"><img src="{{ user.avatarUrl }}"/></div><div class="title">@{{ user.login }}</div></a> <div class="count">Answers: {{ user.answers }}</div><div class="count">Pull Requests: {{ user.prs }}</div></div>
    {% endfor %}
    
    </div>
    {% endif %}
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:10:01 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top