Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 55 for puppies (0.18 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/plugins/jvm/internal/JvmFeatureInternal.java

         * a single artifact.
         *
         * @return A provider which supplies the feature's {@link Jar} task.
         */
        TaskProvider<Jar> getJarTask();
    
        /**
         * Get the {@link JavaCompile} task which compiles the Java source files into classes.
         *
         * @return A provider which supplies the feature's {@link JavaCompile} task.
         */
        TaskProvider<JavaCompile> getCompileJavaTask();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/CollectionSupplier.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.provider;
    
    import java.util.Collection;
    
    /**
     * A {@link ValueSupplier value supplier} that supplies collection values. Instances of
     * this type are used as value suppliers for {@link AbstractCollectionProperty}.
     *
     * @param <T> the type of elements
     * @param <C> type of collection
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 05:02:13 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/artifact/ArtifactScopeEnum.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.artifact;
    
    /**
     * Type safe reincarnation of Artifact scope. Also supplies the {@code DEFAULT_SCOPE} as well
     * as convenience method to deal with scope relationships.
     *
     *
     */
    @Deprecated
    public enum ArtifactScopeEnum {
        compile(1),
        test(2),
        runtime(3),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. pkg/test/echo/common/model.go

    // limitations under the License.
    
    package common
    
    import "istio.io/istio/pkg/config/protocol"
    
    // TLSSettings defines TLS configuration for Echo server
    type TLSSettings struct {
    	// If not empty, RootCert supplies the extra root cert that will be appended to the system cert pool.
    	RootCert   string
    	ClientCert string
    	Key        string
    	// If provided, override the host name used for the connection
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 05 00:22:45 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  5. maven-plugin-api/src/main/java/org/apache/maven/plugin/logging/Log.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.plugin.logging;
    
    /**
     * This interface supplies the API for providing feedback to the user from the <code>Mojo</code>, using standard
     * <code>Maven</code> channels.<br>
     * There should be no big surprises here, although you may notice that the methods accept
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  6. docs/features/calls.md

    If the response issues an authorization challenge, OkHttp will ask the [`Authenticator`](https://square.github.io/okhttp/4.x/okhttp/okhttp3/-authenticator/) (if one is configured) to satisfy the challenge. If the authenticator supplies a credential, the request is retried with that credential included.
    
    ## Retrying Requests
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/Log.java

     */
    package org.apache.maven.api.plugin;
    
    import java.util.function.Supplier;
    
    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.annotations.Provider;
    
    /**
     * This interface supplies the API for providing feedback to the user from the {@code Mojo},
     * using standard Maven channels.
     * There should be no big surprises here, although you may notice that the methods accept
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenSessionBuilderSupplier.java

    import org.eclipse.aether.util.repository.SimpleArtifactDescriptorPolicy;
    
    import static java.util.Objects.requireNonNull;
    
    /**
     * A simple {@link Supplier} of {@link SessionBuilder} instances, that on each call supplies newly
     * constructed instance. To create session out of builder, use {@link SessionBuilder#build()}. For proper closing
     * of sessions, use {@link CloseableSession#close()} method on built instance(s).
     * <p>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Mar 27 14:46:12 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/MavenSessionBuilderSupplier.java

    import org.eclipse.aether.util.repository.SimpleArtifactDescriptorPolicy;
    
    import static java.util.Objects.requireNonNull;
    
    /**
     * A simple {@link Supplier} of {@link SessionBuilder} instances, that on each call supplies newly
     * constructed instance. To create session out of builder, use {@link SessionBuilder#build()}. For proper closing
     * of sessions, use {@link CloseableSession#close()} method on built instance(s).
     * <p>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/ast/inspector/inspector.go

    			// pop
    			push := ev.index
    			if in.events[push].typ&mask != 0 {
    				f(ev.node, false)
    			}
    		}
    		i++
    	}
    }
    
    // WithStack visits nodes in a similar manner to Nodes, but it
    // supplies each call to f an additional argument, the current
    // traversal stack. The stack's first element is the outermost node,
    // an *ast.File; its last is the innermost, n.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top