Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 345 for convenient (0.46 sec)

  1. android/guava-testlib/pom.xml

        <version>HEAD-android-SNAPSHOT</version>
      </parent>
      <artifactId>guava-testlib</artifactId>
      <name>Guava Testing Library</name>
      <description>
        Guava testlib is a set of java classes used for more convenient
        unit testing - particularly to assist the tests for Guava itself.
      </description>
      <dependencies>
        <dependency>
          <groupId>com.google.code.findbugs</groupId>
          <artifactId>jsr305</artifactId>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 31 18:55:22 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. guava-testlib/pom.xml

        <version>HEAD-jre-SNAPSHOT</version>
      </parent>
      <artifactId>guava-testlib</artifactId>
      <name>Guava Testing Library</name>
      <description>
        Guava testlib is a set of java classes used for more convenient
        unit testing - particularly to assist the tests for Guava itself.
      </description>
      <dependencies>
        <dependency>
          <groupId>com.google.code.findbugs</groupId>
          <artifactId>jsr305</artifactId>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 31 18:55:22 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. guava-testlib/README.md

    # Guava Testlib: Google Testing Libraries for Java
    
    Guava testlib is a set of Java classes for more convenient
    unit testing.
    
    ## Adding Guava Testlib to your build
    
    Guava testlib's Maven group ID is `com.google.guava` and its artifact ID is `guava-testlib`.
    
    To add a dependency on Guava testlib using Maven, use the following:
    
    ```xml
    <dependency>
      <groupId>com.google.guava</groupId>
      <artifactId>guava-testlib</artifactId>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 31 17:43:52 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ArtifactHandlerScope.kt

    import org.gradle.api.artifacts.PublishArtifact
    import org.gradle.api.artifacts.dsl.ArtifactHandler
    
    import org.gradle.kotlin.dsl.support.delegates.ArtifactHandlerDelegate
    
    
    /**
     * Receiver for `artifacts` block providing convenient utilities for configuring artifacts.
     *
     * @see ArtifactHandler
     */
    class ArtifactHandlerScope
    private constructor(
        val artifacts: ArtifactHandler
    ) : ArtifactHandlerDelegate() {
    
        companion object {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. pilot/pkg/security/authz/model/util.go

    	return matcher.MetadataListValueMatcher(filters.EnvoyJwtFilterName, append([]string{filters.EnvoyJwtFilterPayload}, claims...), value, true)
    }
    
    // MetadataMatcherForJWTClaims is a convenient method for generating metadata matcher for JWT claims.
    func MetadataMatcherForJWTClaims(claims []string, value *matcherpb.StringMatcher, useExtendedJwt bool) *matcherpb.MetadataMatcher {
    	if useExtendedJwt {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. src/net/textproto/textproto.go

    // key: value headers, lines wrapped with leading spaces
    // on continuation lines, and whole text blocks ending
    // with a dot on a line by itself.
    //
    // [Writer], to write dot-encoded text blocks.
    //
    // [Conn], a convenient packaging of [Reader], [Writer], and [Pipeline] for use
    // with a single network connection.
    package textproto
    
    import (
    	"bufio"
    	"fmt"
    	"io"
    	"net"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/ops/gen/cpp/renderers/renderer.h

      }
    
      // Append a multiline string of source code, left-justified (not indented).
      // Note: Trims leading/trailing whitespace including newlines, making this
      //       method convenient for multiline raw strings.
      // Newlines ('\n') are allowed/expected.
      Renderer &CodeLines(const string &text);
      template <typename... Args>
      Renderer CodeLines(absl::string_view text, const Args &...args) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/extensions/BehindFlagFeatureInterceptor.groovy

    import org.spockframework.runtime.extension.IMethodInvocation
    
    import java.lang.annotation.Annotation
    
    /**
     * A base interceptor for features hidden behind a flag, convenient for executing tests with the flag on or off.
     * If a test only makes sense if the feature is enabled, then it needs to be annotated with {@link RequiredFeatures}.
     */
    @CompileStatic
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. src/hash/maphash/maphash.go

    // or otherwise recreated in a different process.
    type Seed struct {
    	s uint64
    }
    
    // Bytes returns the hash of b with the given seed.
    //
    // Bytes is equivalent to, but more convenient and efficient than:
    //
    //	var h Hash
    //	h.SetSeed(seed)
    //	h.Write(b)
    //	return h.Sum64()
    func Bytes(seed Seed, b []byte) uint64 {
    	state := seed.s
    	if state == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 19:15:34 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/daemon-services/src/main/java/org/gradle/api/internal/tasks/userinput/UserQuestions.java

         */
        @Nullable
        Boolean askYesNoQuestion(String question);
    
        /**
         * Asks the user a question that has a boolean result and returns the answer.
         *
         * <p>The client UI is free to choose a convenient representation for boolean values, for example
         * allowing the user to type 'y' or 'n' or presenting a checkbox. The user is not required to answer 'true' or 'false'
         *
         * @param question The text of the question.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top