Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,178 for completely (0.25 sec)

  1. releasenotes/notes/33455.yaml

          pilot:
            enabled: false
          istiodRemote:
            enabled: true
        values:
          global:
            externalIstiod: true
        {{< /text >}}
    
        To simplify the implementation and to completely separate the remote installation from the `base` component,
        the `istiodRemote` component now includes all of the charts needed for any remote cluster, whether it serves as a config
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 12 16:44:21 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  2. src/go/internal/gcimporter/gcimporter.go

    		if path == "unsafe" {
    			return types.Unsafe, nil
    		}
    		id = path
    
    		// No need to re-import if the package was imported completely before.
    		if pkg = packages[id]; pkg != nil && pkg.Complete() {
    			return
    		}
    		f, err := lookup(path)
    		if err != nil {
    			return nil, err
    		}
    		rc = f
    	} else {
    		var filename string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPublication.java

     * </p><p>
     * To add additional artifacts to the set published, use the {@link #artifact(Object)} and {@link #artifact(Object, org.gradle.api.Action)} methods.
     * You can also completely replace the set of published artifacts using {@link #setArtifacts(Iterable)}.
     * Together, these methods give you full control over what artifacts will be published.
     * </p><p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. src/hash/test_cases.txt

    His money is twice tainted: 'taint yours and 'taint mine.
    There is no reason for any individual to have a computer in their home. -Ken Olsen, 1977
    It's a tiny change to the code and not completely disgusting. - Bob Manchek
    size:  a.out:  bad magic
    The major problem is with sendmail.  -Mark Horton
    Give me a rock, paper and scissors and I will move the world.  CCFestoon
    If the enemy is within range, then so are you.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.3K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/logging/StackTraceFilter.java

            // It might happen when test method was inherited from a base class.
            // In that case, "derived" test class never appears in the stacktrace,
            // and it is better to show the stacktrace as is rather than truncate it completely.
            if (filtered.isEmpty()) {
                return stackTrace;
            }
            return Lists.reverse(filtered);
        }
    
        public List<StackTraceElement> filter(Throwable throwable) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/api/services/model/InheritanceAssembler.java

     *
     */
    public interface InheritanceAssembler {
    
        /**
         * Merges values from the specified parent model into the given child model. Implementations are expected to keep
         * parent and child completely decoupled by injecting deep copies of objects into the child rather than the original
         * objects from the parent.
         *
         * @param child The child model into which to merge the values inherited from the parent, must not be
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/inheritance/InheritanceAssembler.java

     *
     */
    public interface InheritanceAssembler {
    
        /**
         * Merges values from the specified parent model into the given child model. Implementations are expected to keep
         * parent and child completely decoupled by injecting deep copies of objects into the child rather than the original
         * objects from the parent.
         *
         * @param child The child model into which to merge the values inherited from the parent, must not be
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyPublication.java

     * </p><p>
     * To add additional artifacts to the set published, use the {@link #artifact(Object)} and {@link #artifact(Object, org.gradle.api.Action)} methods.
     * You can also completely replace the set of published artifacts using {@link #setArtifacts(Iterable)}.
     * Together, these methods give you full control over the artifacts to be published.
     * </p><p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/SourceIncludesResolver.java

    import java.io.File;
    import java.util.Collection;
    
    public interface SourceIncludesResolver {
        interface IncludeResolutionResult {
            /**
             * Returns true if the include files could be completely resolved. If false, there were additional include files but they could not be resolved.
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/caching/configuration/internal/DefaultBuildCacheConfigurationTest.groovy

            buildCacheConfiguration.remote(BuildCache) { config ->
                updated = config
            }
            then:
            updated == original
            0 * _
        }
    
        def 'can replace remote configuration completely'() {
            def buildCacheConfiguration = createConfig()
            def original = Stub(CustomBuildCache)
            when:
            buildCacheConfiguration.remote(CustomBuildCache) {}
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 12 13:13:02 UTC 2019
    - 3.9K bytes
    - Viewed (0)
Back to top