Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 78 for _ignored (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/compile/internal/types2/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.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

                        snapshot[it] != ConfigurationCacheFingerprint.SystemPropertiesPrefixedBy.IGNORED
                    }
                    val snapshotWithoutIgnored = snapshot.filterValues {
                        // remove placeholders of modified properties to only compare relevant values.
                        it != ConfigurationCacheFingerprint.SystemPropertiesPrefixedBy.IGNORED
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/help/helpdoc.go

    		option. Packages named main are ignored.
    
    	-buildmode=exe
    		Build the listed main packages and everything they import into
    		executables. Packages not named main are ignored.
    
    	-buildmode=pie
    		Build the listed main packages and everything they import into
    		position independent executables (PIE). Packages not named
    		main are ignored.
    
    	-buildmode=plugin
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    	if labelValue, ok := meta.Labels[constants.AmbientUseWaypointLabel]; ok {
    		// NOTE: this means Istio reserves the word "none" in this field with a special meaning
    		//   a waypoint named "none" cannot be used and will be ignored
    		//   also reserve anything with suffix "/none" to prevent use of "namespace/none" as a work around
    		// ~ is used in other portions of the API, reserve it with special meaning although it's unlikely to be documented
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheValueSourceIntegrationTest.groovy

            "rethrown"                  | "throw ex"           | 2  // The original exception propagates and fails the build, and configuration cache problem is reported too.
            "ignored"                   | "// ignored"         | 1  // Only the configuration cache problem is reported
        }
    
        def "exception thrown from ValueSource when populating the cache invalidates the entry upon fingerprint check "() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top