Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 286 for Remotes (0.31 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/api/internal/DocumentationRegistry.java

         */
        public String getDocumentationFor(String id) {
            return String.format("%s/userguide/%s.html", BASE_URL, id);
        }
    
    
        /**
         * Returns the location of the documentation for the given feature, referenced by id and section. The location may be local or remote.
         */
        public String getDocumentationFor(String id, String section) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 14:14:56 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. releasenotes/notes/48818.yaml

    issue:
      - 48818
      - 48286
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/recv.go

    // Use this function to strip off the optional pointer on a receiver
    // in a field or method selection, without losing the named type
    // (which is needed to compute the method set).
    //
    // See also [typeparams.MustDeref], which removes one level of
    // indirection from the type, regardless of named types (analogous to
    // a LOAD instruction).
    func Unpointer(t types.Type) types.Type {
    	if ptr, ok := aliases.Unalias(t).(*types.Pointer); ok {
    		return ptr.Elem()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/NormalizingCopyActionDecorator.java

    import java.util.LinkedHashSet;
    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    
    /**
     * A {@link CopyAction} which cleans up the tree as it is visited. Removes duplicate directories and adds in missing directories. Removes empty directories if instructed to do so by copy
     * spec.
     */
    public class NormalizingCopyActionDecorator implements CopyAction {
    
        private final CopyAction delegate;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 10:41:40 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. docs/en/docs/deployment/manually.md

    The word "**server**" is commonly used to refer to both the remote/cloud computer (the physical or virtual machine) and also the program that is running on that machine (e.g. Uvicorn).
    
    Just keep in mind that when you read "server" in general, it could refer to one of those two things.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderResult.java

         * constructed. Model identifiers have the form {@code <groupId>:<artifactId>:<version>}. The first identifier from
         * the list denotes the model on which the model builder was originally invoked. The last identifier will always be
         * an empty string that by definition denotes the super POM.
         *
         * @return The model identifiers from the lineage of models, never {@code null}.
         */
        @Nonnull
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalCancellationToken.java

         * @return current state of cancellation request before callback was added.
         */
        boolean addCallback(Runnable cancellationHandler);
    
        /**
         * Removes a callback from a set of handlers called when cancel is requested.
         *
         * @param cancellationHandler removed callback.
         */
        void removeCallback(Runnable cancellationHandler);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/UnsupportedWithConfigurationCache.java

    import java.lang.annotation.ElementType;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    
    /**
     * Denotes a test for a feature that is unsupported with configuration cache.
     * Do not use this for tests for features that are supported by configuration cache but where the test happens to be incompatible.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. internal/config/cache/cache.go

    		Value: "",
    	},
    }
    
    // Config represents the subnet related configuration
    type Config struct {
    	// Flag indicating whether cache is enabled.
    	Enable bool `json:"enable"`
    
    	// Endpoint for caching uses remote mcache server to
    	// store and retrieve pre-condition check entities such as
    	// Etag and ModTime of an object + version
    	Endpoint string `json:"endpoint"`
    
    	// BlockSize indicates the maximum object size below which
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. maven-compat/src/test/java/org/apache/maven/repository/LegacyRepositorySystemTest.java

        @Inject
        private PlexusContainer container;
    
        protected List<ArtifactRepository> getRemoteRepositories() throws Exception {
            File repoDir = new File(getBasedir(), "src/test/remote-repo").getAbsoluteFile();
    
            RepositoryPolicy policy = new RepositoryPolicy();
            policy.setEnabled(true);
            policy.setChecksumPolicy("ignore");
            policy.setUpdatePolicy("always");
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top