Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 655 for confuse (0.25 sec)

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

    		// LoweredConvert converts between pointers and integers.
    		// We have a special op for this so as to not confuse GCCallOff
    		// (particularly stack maps). It takes a memory arg so it
    		// gets correctly ordered with respect to GC safepoints.
    		// arg0=ptr/int arg1=mem, output=int/ptr
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  2. 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)
  3. src/encoding/csv/reader_test.go

    	Input:   "§a€§\"  b,\"€§ c\nλ comment\n",
    	Output:  [][]string{{"a", "  b,", " c"}},
    	Comma:   '€',
    	Comment: 'λ',
    }, {
    	// λ and θ start with the same byte.
    	// This tests that the parser doesn't confuse such characters.
    	Name:    "NonASCIICommaConfusion",
    	Input:   "§\"abθcd\"λ§efθgh",
    	Output:  [][]string{{"abθcd", "efθgh"}},
    	Comma:   'λ',
    	Comment: '€',
    }, {
    	Name:    "NonASCIICommentConfusion",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 14 04:25:13 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/compile.go

    	{"schedule", "late nilcheck"},
    	// flagalloc needs instructions to be scheduled.
    	{"schedule", "flagalloc"},
    	// regalloc needs flags to be allocated first.
    	{"flagalloc", "regalloc"},
    	// loopRotate will confuse regalloc.
    	{"regalloc", "loop rotate"},
    	// trim needs regalloc to be done first.
    	{"regalloc", "trim"},
    	// memcombine works better if fuse happens first, to help merge stores.
    	{"late fuse", "memcombine"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/cgroup_manager_linux.go

    	// in the tasks file. We use the function to create all the required
    	// cgroup files but not attach any "real" pid to the cgroup.
    	if err := manager.Apply(-1); err != nil {
    		return err
    	}
    
    	// it may confuse why we call set after we do apply, but the issue is that runc
    	// follows a similar pattern.  it's needed to ensure cpu quota is set properly.
    	if err := manager.Set(libcontainerCgroupConfig.Resources); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  6. test/prove.go

    		return 2
    	}
    	return 3
    }
    
    func f14(p, q *int, a []int) {
    	// This crazy ordering usually gives i1 the lowest value ID,
    	// j the middle value ID, and i2 the highest value ID.
    	// That used to confuse CSE because it ordered the args
    	// of the two + ops below differently.
    	// That in turn foiled bounds check elimination.
    	i1 := *p
    	j := *q
    	i2 := *p
    	useInt(a[i1+j])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 00:02:36 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  7. src/net/url/url_test.go

    		},
    		"http://user:******@****.***",
    	},
    	// unescaped @ in username should not confuse host
    	{
    		"http://j@ne:******@****.***",
    		&URL{
    			Scheme: "http",
    			User:   UserPassword("j@ne", "password"),
    			Host:   "google.com",
    		},
    		"http://j%40ne:******@****.***",
    	},
    	// unescaped @ in password should not confuse host
    	{
    		"http://jane:p@******@****.***",
    		&URL{
    			Scheme: "http",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    // as the go command about reprinting compiler output. If the compiler is
    // what prints match lines, a build system that suppresses compiler
    // output when using cached compiler results will confuse bisect.
    // To defeat such build caches, bisect replaces the literal text “RANDOM”
    // in environment values and command arguments with a random 64-bit value
    // during each invocation. The Go compiler conveniently accepts a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  9. src/internal/poll/fd_windows.go

    	fd.isFile = fd.kind != kindNet
    
    	var err error
    	if pollable {
    		// Only call init for a network socket.
    		// This means that we don't add files to the runtime poller.
    		// Adding files to the runtime poller can confuse matters
    		// if the user is doing their own overlapped I/O.
    		// See issue #21172.
    		//
    		// In general the code below avoids calling the execIO
    		// function for non-network sockets. If some method does
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 16:50:42 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

         * (which are not explicitly declared in the class).
         *
         * Includes type-aliased constructors too if typealias confirms to the [targetClassName].
         *
         * Do not confuse with constructors **declared** in the scope (see [FirScope.processDeclaredConstructors]).
         */
        private fun findAvailableConstructors(scope: FirScope, targetClassName: Name): List<FirFunctionSymbol<*>> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
Back to top