Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 269 for Atack (0.05 sec)

  1. src/sort/sort.go

    func StringsAreSorted(x []string) bool { return stringsAreSortedImpl(x) }
    
    // Notes on stable sorting:
    // The used algorithms are simple and provable correct on all input and use
    // only logarithmic additional stack space. They perform well if compared
    // experimentally to other stable in-place sorting algorithms.
    //
    // Remarks on other algorithms evaluated:
    //  - GCC's 4.6.3 stable_sort with merge_without_buffer from libstdc++:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 16:40:32 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  2. src/net/net_test.go

    			}
    		}()
    		select {
    		case err := <-errc:
    			return err
    		case <-time.After(5 * time.Second):
    			buf := make([]byte, 2<<20)
    			buf = buf[:runtime.Stack(buf, true)]
    			println("Stacks at timeout:\n", string(buf))
    			return errors.New("timeout waiting for Read to finish")
    		}
    
    	}
    	// Do nothing in the client. Never write. Just wait for the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 21:04:44 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/buildid.go

    		secType := "@progbits"
    		if cfg.Goarch == "arm" {
    			secType = "%progbits"
    		}
    		fmt.Fprintf(&buf, "\t"+`.section .note.GNU-stack,"",%s`+"\n", secType)
    		fmt.Fprintf(&buf, "\t"+`.section .note.GNU-split-stack,"",%s`+"\n", secType)
    	}
    
    	if err := b.Shell(a).writeFile(sfile, buf.Bytes()); err != nil {
    		return "", err
    	}
    
    	return sfile, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  4. src/go/types/unify.go

    			// endless recursion occurs if the cycle is not detected.
    			//
    			// If x and y were compared before, they must be equal
    			// (if they were not, the recursion would have stopped);
    			// search the ifacePair stack for the same pair.
    			//
    			// This is a quadratic algorithm, but in practice these stacks
    			// are extremely short (bounded by the nesting depth of interface
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  5. src/os/pipe_test.go

    		t.Errorf(`ReadBytes: %q, %v; want "", io.EOF`, b, err)
    	}
    }
    
    // Issue 24481.
    func TestFdRace(t *testing.T) {
    	// This test starts 100 simultaneous goroutines, which could bury a more
    	// interesting stack if this or some other test happens to panic. It is also
    	// nearly instantaneous, so any latency benefit from running it in parallel
    	// would be minimal.
    
    	r, w, err := os.Pipe()
    	if err != nil {
    		t.Fatal(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  6. src/encoding/json/encode.go

    type encodeState struct {
    	bytes.Buffer // accumulated output
    
    	// Keep track of what pointers we've seen in the current recursive call
    	// path, to avoid cycles that could lead to a stack overflow. Only do
    	// the relatively expensive map operations if ptrLevel is larger than
    	// startDetectingCyclesAfter, so that we skip the work if we're within a
    	// reasonable amount of nested pointers deep.
    	ptrLevel uint
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go

    	{11, "SIGSEGV", "segmentation fault"},
    	{12, "SIGUSR2", "user defined signal 2"},
    	{13, "SIGPIPE", "broken pipe"},
    	{14, "SIGALRM", "alarm clock"},
    	{15, "SIGTERM", "terminated"},
    	{16, "SIGSTKFLT", "stack fault"},
    	{17, "SIGCHLD", "child exited"},
    	{18, "SIGCONT", "continued"},
    	{19, "SIGSTOP", "stopped (signal)"},
    	{20, "SIGTSTP", "stopped"},
    	{21, "SIGTTIN", "stopped (tty input)"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  8. src/crypto/internal/nistec/p384.go

    func (p *P384Point) ScalarMult(q *P384Point, scalar []byte) (*P384Point, error) {
    	// Compute a p384Table for the base point q. The explicit NewP384Point
    	// calls get inlined, letting the allocations live on the stack.
    	var table = p384Table{NewP384Point(), NewP384Point(), NewP384Point(),
    		NewP384Point(), NewP384Point(), NewP384Point(), NewP384Point(),
    		NewP384Point(), NewP384Point(), NewP384Point(), NewP384Point(),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 18K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/dwarf_test.go

    	//
    	//   - attributes are set correctly for output params,
    	//   - things appear in the proper order
    	//   - things work properly for both register-resident
    	//     params and params passed on the stack
    	//   - things work for both referenced and unreferenced params
    	//   - things work for named return values un-named return vals
    	//
    	// The scenarios below don't cover all possible permutations and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  10. src/go/types/check.go

    	methods  map[*TypeName][]*Func // maps package scope type names to associated non-blank (non-interface) methods
    	untyped  map[ast.Expr]exprInfo // map of expressions without final type
    	delayed  []action              // stack of delayed action segments; segments are processed in FIFO order
    	objPath  []Object              // path of object dependencies during type inference (for cycle reporting)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top