Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 474 for convenient (0.16 sec)

  1. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenArtifactSet.java

    import org.gradle.api.DomainObjectSet;
    
    /**
     * A Collection of {@link MavenArtifact}s to be included in a {@link MavenPublication}.
     *
     * Being a {@link DomainObjectSet}, a {@code MavenArtifactSet} provides convenient methods for querying, filtering, and applying actions to the set of {@link MavenArtifact}s.
     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'maven-publish'
     * }
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/chans.go

    // to send values and a Close method to stop sending values. The Next
    // method indicates when the Sender has been closed, and the Send
    // method indicates when the Receiver has been freed.
    //
    // This is a convenient way to exit a goroutine sending values when
    // the receiver stops reading them.
    func Ranger[T any]() (*Sender[T], *Receiver[T]) {
    	c := make(chan T)
    	d := make(chan bool)
    	s := &Sender[T]{values: c, done: d}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/language/coverage.go

    // Tags always returns nil.
    func (s allSubtags) Tags() []Tag {
    	return nil
    }
    
    // coverage is used by NewCoverage which is used as a convenient way for
    // creating Coverage implementations for partially defined data. Very often a
    // package will only need to define a subset of slices. coverage provides a
    // convenient way to do this. Moreover, packages using NewCoverage, instead of
    // their own implementation, will not break if later new slice types are added.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/apiserver/pkg/server/routes/index.go

    type ListedPathProvider interface {
    	// ListedPaths is an alphabetically sorted list of paths to be reported at /.
    	ListedPaths() []string
    }
    
    // ListedPathProviders is a convenient way to combine multiple ListedPathProviders
    type ListedPathProviders []ListedPathProvider
    
    // ListedPaths unions and sorts the included paths.
    func (p ListedPathProviders) ListedPaths() []string {
    	ret := sets.String{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 20:21:45 UTC 2017
    - 2.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/go/parser/testdata/chans.go2

    // to send values and a Close method to stop sending values. The Next
    // method indicates when the Sender has been closed, and the Send
    // method indicates when the Receiver has been freed.
    //
    // This is a convenient way to exit a goroutine sending values when
    // the receiver stops reading them.
    func Ranger[T any]() (*Sender[T], *Receiver[T]) {
    	c := make(chan T)
    	d := make(chan bool)
    	s := &Sender[T]{values: c, done: d}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 24 19:44:06 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/roundtrip.go

    	"k8s.io/apimachinery/pkg/runtime/serializer/protobuf"
    	"k8s.io/apimachinery/pkg/util/dump"
    	"k8s.io/apimachinery/pkg/util/sets"
    )
    
    type InstallFunc func(scheme *runtime.Scheme)
    
    // RoundTripTestForAPIGroup is convenient to call from your install package to make sure that a "bare" install of your group provides
    // enough information to round trip
    func RoundTripTestForAPIGroup(t *testing.T, installFn InstallFunc, fuzzingFuncs fuzzer.FuzzerFuncs) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 16.8K bytes
    - Viewed (0)
Back to top