Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for decorado (0.66 sec)

  1. maven-core/src/main/java/org/apache/maven/project/DefaultProjectDependenciesResolver.java

                verbose.setConfigProperty(DependencyManagerUtils.CONFIG_PROP_VERBOSE, Boolean.TRUE);
                session = verbose;
            }
    
            for (RepositorySessionDecorator decorator : decorators) {
                RepositorySystemSession decorated = decorator.decorate(project, session);
                if (decorated != null) {
                    session = decorated;
                }
            }
    
            CollectRequest collect = new CollectRequest();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_download_git_decorate_full.txt

    env HOME=$WORK${/}home${/}gopher
    exec git config --global --show-origin user.name
    stdout 'Go Gopher'
    
    env GOPROXY=direct
    
    exec git config --get log.decorate
    stdout 'full'
    
    # Test that Git log with user's global config '~/gitconfig' has log.decorate=full
    # go mod download has an error 'v1.x.y is not a tag'
    # with go1.16.14: 
    # `go1.16.14 list -m vcs-test.golang.org/git/gitrepo1.git@v1.2.3`
    # will output with error:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 1011 bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/InstantiatorFactory.java

     */
    @ServiceScope(Scope.Global.class)
    public interface InstantiatorFactory {
        /**
         * Creates an {@link Instantiator} that can inject services and user provided values into the instances it creates, but does not decorate the instances. Is not lenient.
         *
         * <p>Use for any non-model types for which services or user provided constructor values need to injected. This is simply a convenience for {@link #injectScheme()}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/vcstest/git/issue47650.txt

    git add cmd
    git commit -m 'add cmd/issue47650'
    git branch -m main
    git tag v0.1.0
    
    git add go.mod
    git commit -m 'add go.mod'
    
    git show-ref --tags --heads
    cmp stdout .git-refs
    
    git log --oneline --decorate=short
    cmp stdout .git-log
    
    -- .git-refs --
    21535ef346c3e79fd09edd75bd4725f06c828e43 refs/heads/main
    4d237df2dbfc8a443af2f5e84be774f08a2aed0c refs/tags/v0.1.0
    -- .git-log --
    21535ef (HEAD -> main) add go.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 12 16:13:43 UTC 2023
    - 845 bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-problems-base/src/main/kotlin/org/gradle/internal/configuration/problems/DecoratedPropertyProblem.kt

        }
    }
    
    
    data class StackTracePart(
        val isInternal: Boolean,
        val text: String
    )
    
    
    class FailureDecorator {
    
        private
        val stringBuilder = StringBuilder()
    
        fun decorate(failure: Failure): DecoratedFailure {
            return DecoratedFailure(
                exceptionSummaryFor(failure),
                partitionedTraceFor(failure)
            )
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 21:59:50 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ForwardingMapEntry.java

     * one or more methods to modify the behavior of the backing map entry as desired per the <a
     * href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator pattern</a>.
     *
     * <p><b>Warning:</b> The methods of {@code ForwardingMapEntry} forward <i>indiscriminately</i> to
     * the methods of the delegate. For example, overriding {@link #getValue} alone <i>will not</i>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 19 19:28:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/ForwardingMapEntry.java

     * one or more methods to modify the behavior of the backing map entry as desired per the <a
     * href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator pattern</a>.
     *
     * <p><b>Warning:</b> The methods of {@code ForwardingMapEntry} forward <i>indiscriminately</i> to
     * the methods of the delegate. For example, overriding {@link #getValue} alone <i>will not</i>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 19 19:28:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/DefaultInstantiatorFactory.java

        }
    
        @Override
        public InstantiationScheme decorateScheme() {
            return decoratingScheme;
        }
    
        @Override
        public InstanceGenerator decorate(ServiceLookup services) {
            return decoratingScheme.withServices(services).instantiator();
        }
    
        @Override
        public ManagedFactory getManagedFactory() {
            return managedFactory;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/package-info.java

     *
     * <h2>Forwarding collections</h2>
     *
     * We provide implementations of collections that forward all method calls to a delegate collection
     * by default. Subclasses can override one or more methods to implement the decorator pattern. For
     * an example, see {@link ForwardingCollection}.
     *
     * <h2>Other</h2>
     *
     * <ul>
     *   <li>{@link EvictingQueue}
     *   <li>{@link Interner}, {@link Interners}
     *   <li>{@link MapMaker}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jul 06 16:29:45 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/package-info.java

     *
     * <h2>Forwarding collections</h2>
     *
     * We provide implementations of collections that forward all method calls to a delegate collection
     * by default. Subclasses can override one or more methods to implement the decorator pattern. For
     * an example, see {@link ForwardingCollection}.
     *
     * <h2>Other</h2>
     *
     * <ul>
     *   <li>{@link EvictingQueue}
     *   <li>{@link Interner}, {@link Interners}
     *   <li>{@link MapMaker}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jul 06 16:29:45 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top