Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 308 for confuse (0.18 sec)

  1. src/internal/trace/testdata/generators/go122-confuse-seq-across-generations.go

    Michael Anthony Knyszek <******@****.***> 1716583527 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. src/internal/trace/testdata/tests/go122-confuse-seq-across-generations.test

    Carlos Amedee <******@****.***> 1715265901 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1018 bytes
    - Viewed (0)
  3. src/internal/poll/fd_poll_runtime.go

    	return setDeadlineImpl(fd, t, 'w')
    }
    
    func setDeadlineImpl(fd *FD, t time.Time, mode int) error {
    	var d int64
    	if !t.IsZero() {
    		d = int64(time.Until(t))
    		if d == 0 {
    			d = -1 // don't confuse deadline right now with no deadline
    		}
    	}
    	if err := fd.incref(); err != nil {
    		return err
    	}
    	defer fd.decref()
    	if fd.pd.runtimeCtx == 0 {
    		return ErrNoDeadline
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:59 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. src/runtime/traceback_system_test.go

    // same executable tells us the relative offset of their text segments.
    //
    // It would be nice if SetCrashOutput took care of this as it's fiddly
    // and likely to confuse every user at first.
    func sentinel() uint64 {
    	return uint64(reflect.ValueOf(sentinel).Pointer())
    }
    
    func writeSentinel(out io.Writer) {
    	fmt.Fprintf(out, "sentinel %x\n", sentinel())
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-message.h

      // of operator <<, even though its body is the same as the
      // templatized version above.  Without this definition, streaming
      // endl or other basic IO manipulators to Message will confuse the
      // compiler.
      Message& operator <<(BasicNarrowIoManip val) {
        *ss_ << val;
        return *this;
      }
    
      // Instead of 1/0, we want to see true/false for bool values.
      Message& operator <<(bool b) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueState.java

         * Returns <code>value</code> if this value state is marked as explicit, otherwise returns the given <code>defaultValue</code>.
         *
         * Note that "default value" is not related to the convention value, though they are easy to confuse.
         * A default value is a fallback value that is sensible to the caller, in the absence of the explicit value.
         * The default value is not related in any way to the convention value.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  7. pkg/volume/volume.go

    	// sync. This can be used to postpone deletion of a volume that is being
    	// detached from a node. Deletion of such volume would fail anyway and such
    	// error would confuse users.
    	Delete() error
    }
    
    // Attacher can attach a volume to a node.
    type Attacher interface {
    	DeviceMounter
    
    	// Attaches the volume specified by the given spec to the node with the given Name.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testplugin/plugin_test.go

    			}
    			t.Errorf("running command failed: %v", err)
    			break
    		}
    	}
    }
    
    func TestSymbolNameMangle(t *testing.T) {
    	// Issue 58800: generic function name may contain weird characters
    	// that confuse the external linker.
    	// Issue 62098: the name mangling code doesn't handle some string
    	// symbols correctly.
    	globalSkip(t)
    	goCmd(t, "build", "-buildmode=plugin", "-o", "mangle.so", "./mangle/plugin.go")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. src/net/http/transfer.go

    		} else {
    			var n int64
    			// Consume the body, or, which will also lead to us reading
    			// the trailer headers after the body, if present.
    			n, err = io.CopyN(io.Discard, bodyLocked{b}, maxPostHandlerReadBytes)
    			if err == io.EOF {
    				err = nil
    			}
    			if n == maxPostHandlerReadBytes {
    				b.earlyClose = true
    			}
    		}
    	default:
    		// Fully consume the body, which will also lead to us reading
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/elf_test.go

    	testenv.MustHaveGoBuild(t)
    	testenv.MustHaveBuildMode(t, "pie")
    	testenv.MustInternalLinkPIE(t)
    
    	// This test case inspired by issue 67261, in which the linker
    	// produces a set of sections for -buildmode=pie that confuse the
    	// "strip" command, due to overlapping extents. The test first
    	// verifies that we don't have any overlapping PROGBITS/DYNAMIC
    	// sections, then runs "strip" on the resulting binary.
    
    	dir := t.TempDir()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top