Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 59 of 59 for Portal (0.99 sec)

  1. src/runtime/map.go

    	evacuatedY     = 3 // same as above, but evacuated to second half of larger table.
    	evacuatedEmpty = 4 // cell is empty, bucket is evacuated.
    	minTopHash     = 5 // minimum tophash for a normal filled cell.
    
    	// flags
    	iterator     = 1 // there may be an iterator using buckets
    	oldIterator  = 2 // there may be an iterator using oldbuckets
    	hashWriting  = 4 // a goroutine is writing to the map
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  2. src/runtime/pprof/pprof_test.go

    		}
    
    		if len(need) == 0 {
    			return
    		}
    
    		var total uintptr
    		for i, name := range need {
    			total += have[i]
    			t.Logf("found %d samples in expected function %s\n", have[i], name)
    		}
    		if total == 0 {
    			t.Logf("no samples in expected functions")
    			ok = false
    		}
    
    		// We'd like to check a reasonable minimum, like
    		// total / len(have) / smallconstant, but this test is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    		}
    		allocationPatch = fmt.Sprintf(`"driverName": %q, "allocation": %s, `, state.informationsForClaim[index].allocationDriverName, string(buffer))
    
    		// The finalizer needs to be added in a normal update. Using a simple update is fine
    		// because we don't expect concurrent modifications while the claim is not allocated
    		// yet. If there are any, we want to fail.
    		//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  4. src/cmd/go/go_test.go

    	}
    
    	// OpenBSD's pkg-config is strict about whitespace and only
    	// supports backslash-escaped whitespace. It does not support
    	// quotes, which the normal freedesktop.org pkg-config does
    	// support. See https://man.openbsd.org/pkg-config.1
    	tg.tempFile("foo.pc", `
    Name: foo
    Description: The foo library
    Version: 1.0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/lib.go

    	}
    }
    
    type Arch struct {
    	Funcalign  int
    	Maxalign   int
    	Minalign   int
    	Dwarfregsp int
    	Dwarfreglr int
    
    	// Threshold of total text size, used for trampoline insertion. If the total
    	// text size is smaller than TrampLimit, we won't need to insert trampolines.
    	// It is pretty close to the offset range of a direct CALL machine instruction.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  6. src/os/os_test.go

    	tmpdir := newDir("TestLongPath", t)
    	defer func(d string) {
    		if err := RemoveAll(d); err != nil {
    			t.Fatalf("RemoveAll failed: %v", err)
    		}
    	}(tmpdir)
    
    	// Test the boundary of 247 and fewer bytes (normal) and 248 and more bytes (adjusted).
    	sizes := []int{247, 248, 249, 400}
    	for len(tmpdir) < 400 {
    		tmpdir += "/dir3456789"
    	}
    	for _, sz := range sizes {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loader/loader.go

    	// For the moment, allow DWARF subprogram DIEs for
    	// auto-generated wrapper functions. What seems to happen
    	// here is that we get different line numbers on formal
    	// params; I am guessing that the pos is being inherited
    	// from the spot where the wrapper is needed.
    	allowed := strings.HasPrefix(name, "go:info.go.interface") ||
    		strings.HasPrefix(name, "go:info.go.builtin") ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    				}
    				return a
    			case 'M':
    				if a == nil {
    					st.fail("unexpected lambda initializer")
    				}
    				// This is the initializer scope for a
    				// lambda.  We don't need to record
    				// it.  The normal code will treat the
    				// variable has a type scope, which
    				// gives appropriate output.
    				st.advance(1)
    				continue
    			case 'J':
    				// It appears that in some cases clang
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  9. src/go/types/api_test.go

    		{newDefined(new(Struct)), new(Struct), true},
    		{Typ[UntypedBool], Typ[Bool], true},
    		{Typ[UntypedString], Typ[Bool], false},
    		// Neither untyped string nor untyped numeric assignments arise during
    		// normal type checking, so the below behavior is technically undefined by
    		// the spec.
    		{Typ[UntypedString], Typ[String], true},
    		{Typ[UntypedInt], Typ[Int], true},
    	} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
Back to top