Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 213 for _ignored (0.22 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIgnoringIntegrationTest.groovy

            }
        }
    
        def 'paths ignored in file system checks are included in the configuration cache fingerprint'() {
            when:
            configurationCacheRun()
            configurationCacheRun("-D$IGNORE_FS_CHECKS_PROPERTY=test")
    
            then:
            outputContains("the set of paths ignored in file-system-check input tracking has changed")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    * Ignoring a dependency does not mean lock state ignores its transitive dependencies.
    * There is no validation that an ignored dependency is present in any configuration resolution.
    * If the dependency is present in lock state, loading it will filter out the dependency.
    * If the dependency is present in the resolution result, it will be ignored when validating that resolution matches the lock state.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. src/os/signal/doc.go

    on all systems.
    
    If the program was started with SIGHUP or SIGINT ignored, and [Notify]
    is called for either signal, a signal handler will be installed for
    that signal and it will no longer be ignored. If, later, [Reset] or
    [Ignore] is called for that signal, or [Stop] is called on all channels
    passed to Notify for that signal, the signal will once again be
    ignored. Reset will restore the system default behavior for the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/testing/NullPointerTester.java

        return this;
      }
    
      /**
       * Ignore {@code method} in the tests that follow. Returns this object.
       *
       * @since 13.0
       */
      @CanIgnoreReturnValue
      public NullPointerTester ignore(Method method) {
        ignoredMembers.add(checkNotNull(method));
        return this;
      }
    
      /**
       * Ignore {@code constructor} in the tests that follow. Returns this object.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/testing/NullPointerTester.java

        return this;
      }
    
      /**
       * Ignore {@code method} in the tests that follow. Returns this object.
       *
       * @since 13.0
       */
      @CanIgnoreReturnValue
      public NullPointerTester ignore(Method method) {
        ignoredMembers.add(checkNotNull(method));
        return this;
      }
    
      /**
       * Ignore {@code constructor} in the tests that follow. Returns this object.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  6. guava-testlib/test/com/google/common/testing/ClassSanityTesterTest.java

        }
    
        // instance method ignored
        public Object badIgnored() {
          return new BadEquals();
        }
    
        // primitive ignored
        public int returnsInt() {
          throw new UnsupportedOperationException();
        }
    
        // void ignored
        public void voidMethod() {
          throw new UnsupportedOperationException();
        }
    
        // non-public method ignored
        static Object badButNotPublic() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprint.kt

                 */
                val IGNORED: Any = Ignored.INSTANCE
    
                // Enum ensures that only one instance of INSTANCE exists and even deserialization
                // doesn't create a new one. The `object` has no such guarantee.
                private
                enum class Ignored {
                    INSTANCE
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. pilot/pkg/model/envoyfilter.go

    	// ProxyPrefixMatch provides a prefix match for the proxy version. The current API only allows
    	// regex match, but as an optimization we can reduce this to a prefix match for common cases.
    	// If this is set, ProxyVersionRegex is ignored.
    	ProxyPrefixMatch string
    	Name             string
    	Namespace        string
    	FullName         string
    }
    
    // wellKnownVersions defines a mapping of well known regex matches to prefix matches
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 13:57:28 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildSrcIntegrationTest.groovy

        def "can use task types defined in buildSrc"() {
            given:
            createDirs("buildSrc/ignored")
            file("buildSrc/settings.gradle") << """
                include 'ignored' // include some content
            """
            file("buildSrc/build.gradle") << """
                allprojects { apply plugin: 'java-library' } // include some content
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. src/go/types/unify.go

    // If a call fails (returns false), unification fails.
    //
    // In the unification context, structural equivalence of two types
    // ignores the difference between a defined type and its underlying
    // type if one type is a defined type and the other one is not.
    // It also ignores the difference between an (external, unbound)
    // type parameter and its core type.
    // If two types are not structurally equivalent, they cannot be Go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
Back to top