Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 655 for confuse (0.2 sec)

  1. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "Copy", argLength: 1},                  // output = arg0
    	// Convert converts between pointers and integers.
    	// We have a special op for this so as to not confuse GC
    	// (particularly stack maps).  It takes a memory arg so it
    	// gets correctly ordered with respect to GC safepoints.
    	// It gets compiled to nothing, so its result must in the same
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/pe.go

    	size := f.stringTable.size() + 18*f.symbolCount
    	var h *peSection
    	if ctxt.LinkMode != LinkExternal {
    		// We do not really need .symtab for go.o, and if we have one, ld
    		// will also include it in the exe, and that will confuse windows.
    		h = f.addSection(".symtab", size, size)
    		h.characteristics = IMAGE_SCN_MEM_READ | IMAGE_SCN_MEM_DISCARDABLE
    		h.checkOffset(f.symtabOffset)
    	}
    
    	// write COFF string table
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	DI_NODI_DEFAULTACTION DI_FLAGS = 0x00200000
    
    	// Flags for device installation
    	DI_QUIETINSTALL        DI_FLAGS = 0x00800000 // don't confuse the user with questions or excess info
    	DI_NOFILECOPY          DI_FLAGS = 0x01000000 // No file Copy necessary
    	DI_FORCECOPY           DI_FLAGS = 0x02000000 // Force files to be copied from install path
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  4. src/os/exec/exec_test.go

    		// If haveUnexpectedFDs is true then there were other
    		// descriptors open when we started the test,
    		// so those descriptors are clearly not close-on-exec,
    		// and they will confuse the test. We could modify
    		// the test to expect those descriptors to remain open,
    		// but since we don't know where they came from or what
    		// they are doing, that seems fragile. For example,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  5. src/cmd/dist/build.go

    	}
    
    	if isdir(pathf("%s/src/pkg", goroot)) {
    		fatalf("\n\n"+
    			"The Go package sources have moved to $GOROOT/src.\n"+
    			"*** %s still exists. ***\n"+
    			"It probably contains stale files that may confuse the build.\n"+
    			"Please (check what's there and) remove it and try again.\n"+
    			"See https://golang.org/s/go14nopkg\n",
    			pathf("%s/src/pkg", goroot))
    	}
    
    	if rebuildall {
    		clean()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  6. src/cmd/cgo/doc.go

    	jlongArray
    	jfloatArray
    	jdoubleArray
    	jobjectArray
    	jweak
    
    3. The EGLDisplay and EGLConfig types from the EGL API.
    
    These types are uintptr on the Go side because they would otherwise
    confuse the Go garbage collector; they are sometimes not really
    pointers but data structures encoded in a pointer type. All operations
    on these types must happen in C. The proper constant to initialize an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  7. src/runtime/traceback.go

    		// Even if all the variables were updated correctly, it is not clear that
    		// we want to expose a traceback that begins on one stack and ends
    		// on another stack. That could confuse callers quite a bit.
    		// Instead, we require that initAt and any other function that
    		// accepts an sp for the current goroutine (typically obtained by
    		// calling getcallersp) must not run on that goroutine's stack but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //   GTEST_HAS_PARAM_TEST   - value-parameterized tests
    //   GTEST_HAS_TYPED_TEST   - typed tests
    //   GTEST_HAS_TYPED_TEST_P - type-parameterized tests
    //   GTEST_USES_POSIX_RE    - enhanced POSIX regex is used. Do not confuse with
    //                            GTEST_HAS_POSIX_RE (see above) which users can
    //                            define themselves.
    //   GTEST_USES_SIMPLE_RE   - our own simple regex is used;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //   GTEST_HAS_PARAM_TEST   - value-parameterized tests
    //   GTEST_HAS_TYPED_TEST   - typed tests
    //   GTEST_HAS_TYPED_TEST_P - type-parameterized tests
    //   GTEST_USES_POSIX_RE    - enhanced POSIX regex is used. Do not confuse with
    //                            GTEST_HAS_POSIX_RE (see above) which users can
    //                            define themselves.
    //   GTEST_USES_SIMPLE_RE   - our own simple regex is used;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    // RemoteIovec is Iovec with the pointer replaced with an integer.
    // It is used for ProcessVMReadv and ProcessVMWritev, where the pointer
    // refers to a location in a different process' address space, which
    // would confuse the Go garbage collector.
    type RemoteIovec struct {
    	Base uintptr
    	Len  int
    }
    
    //sys	ProcessVMReadv(pid int, localIov []Iovec, remoteIov []RemoteIovec, flags uint) (n int, err error) = SYS_PROCESS_VM_READV
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
Back to top