Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,820 for causing (0.13 sec)

  1. guava-tests/test/com/google/common/collect/WriteReplaceOverridesTest.java

     * Tests that all package-private {@code writeReplace} methods are overridden in any existing
     * subclasses. Without such overrides, optimizers might put a {@code writeReplace}-containing class
     * and its subclass in different packages, causing the serialization system to fail to invoke {@code
     * writeReplace} when serializing an instance of the subclass. For an example of this problem, see
     * b/310253115.
     */
    public class WriteReplaceOverridesTest extends TestCase {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. src/go/format/format.go

    // consistent formatting should execute a specific version of the gofmt binary
    // instead of using this package. That way, the formatting will be stable, and
    // the tools won't need to be recompiled each time gofmt changes.
    //
    // For example, pre-submit checks that use this package directly would behave
    // differently depending on what Go version each developer uses, causing the
    // check to be inherently fragile.
    package format
    
    import (
    	"bytes"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/io/ModelReader.java

     *
     */
    public interface ModelReader {
    
        /**
         * The key for the option to enable strict parsing. This option is of type {@link Boolean} and defaults to {@code
         * true}. If {@code false}, unknown elements will be ignored instead of causing a failure.
         */
        String IS_STRICT = "org.apache.maven.model.io.isStrict";
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/ProblemSpec.java

         *
         * @param solution the solution.
         * @return this
         * @since 8.6
         */
        ProblemSpec solution(String solution);
    
        /**
         * The exception causing this problem.
         *
         * @param e the exception.
         * @return this
         * @since 8.6
         */
        ProblemSpec withException(RuntimeException e);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:08 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. src/cmd/internal/objabi/line.go

    // Similarly, we allow slash folding, so that hasPathPrefix("a/b/c", "a\\b") is true.
    // We do not allow full Unicode case folding, for fear of causing more confusion
    // or harm than good. (For an example of the kinds of things that can go wrong,
    // see http://article.gmane.org/gmane.linux.kernel/1853266.)
    func hasPathPrefix(s string, t string) bool {
    	if len(t) > len(s) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 23:10:31 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    		b.Logf("searching for minimal set of enabled changes causing failure")
    		broken = runY
    		b.Disable = false
    
    	case !runN.Success && runY.Success:
    		b.Logf("target fails with no changes, succeeds with all changes")
    		b.Logf("searching for minimal set of disabled changes causing failure")
    		broken = runN
    		b.Disable = true
    
    	case runN.Success && runY.Success:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/pin_ops_with_side_effects.cc

      return tensor_type &&
             mlir::isa<mlir::TF::ResourceType>(tensor_type.getElementType());
    }
    
    // The default criterion for operations being considered as causing or being
    // dependent on side effects. Reflects the current runtime logic; see below.
    bool OpHasSideEffects(Operation *op) {
      // Note that TFL::IfOp are only ever instantiated in flatbuffer_export; until
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7K bytes
    - Viewed (0)
  8. pkg/kubelet/nodeshutdown/systemd/inhibit_linux.go

    	if err != nil {
    		return fmt.Errorf("unable to close systemd inhibitor lock: %w", err)
    	}
    
    	return nil
    }
    
    // ReloadLogindConf uses dbus to send a SIGHUP to the systemd-logind service causing logind to reload it's configuration.
    func (bus *DBusCon) ReloadLogindConf() error {
    	systemdService := "org.freedesktop.systemd1"
    	systemdObject := "/org/freedesktop/systemd1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 04 06:56:50 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/schedule_test.go

    	// one is A1 -> A1carry -> A1Carryvalue, the other is A2 -> A2carry -> A2Carryvalue. If they
    	// are not scheduled properly, the carry will be clobbered, causing the carry to be regenerated.
    	c := testConfigARM64(t)
    	fun := c.Fun("entry",
    		Bloc("entry",
    			Valu("mem0", OpInitMem, types.TypeMem, 0, nil),
    			Valu("x", OpARM64MOVDconst, c.config.Types.UInt64, 5, nil),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 08 01:46:00 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/cgo_suspect_flag_force_external.txt

    # trigger external linking, and that the program that only used
    # "runtime/cgo" would always be handled with internal linking. This caused
    # issues when users included odd/unusual flags (ex: -fplugin, -flto)
    # in CGO_CFLAGS, causing the Go linker to have to read and interpret
    # non-standard host objects.
    #
    # As of 1.21 we continue to use internal linking for programs whose
    # CGO use comes only from stdlib packages in the absence of any flag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 25 18:16:01 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top