Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 525 for Atack (0.03 sec)

  1. pkg/proxy/config/config_test.go

    	var services []*v1.Service
    	for {
    		select {
    		case services = <-h.updated:
    			if reflect.DeepEqual(services, expectedServices) {
    				return
    			}
    		// Unittests will hard timeout in 5m with a stack trace, prevent that
    		// and surface a clearer reason for failure.
    		case <-time.After(wait.ForeverTestTimeout):
    			t.Errorf("Timed out. Expected %#v, Got %#v", expectedServices, services)
    			return
    		}
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/parse.go

    	if p.lineDepth < len(p.stack) {
    		return p.stack[p.lineDepth].builder
    	}
    	return nil
    }
    
    func (p *parseState) nextB() blockBuilder {
    	if p.lineDepth+1 < len(p.stack) {
    		return p.stack[p.lineDepth+1].builder
    	}
    	return nil
    }
    func (p *parseState) trimStack(depth int) {
    	if len(p.stack) < depth {
    		panic("trimStack")
    	}
    	for len(p.stack) > depth {
    		p.closeBlock()
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. src/runtime/panic.go

    func popDefer(gp *g) {
    	d := gp._defer
    	d.fn = nil // Can in theory point to the stack
    	// We must not copy the stack between the updating gp._defer and setting
    	// d.link to nil. Between these two steps, d is not on any defer list, so
    	// stack copying won't adjust stack pointers in it (namely, d.link). Hence,
    	// if we were to copy the stack, d could then contain a stale pointer.
    	gp._defer = d.link
    	d.link = nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  4. src/runtime/os_netbsd.go

    	// signal stack of the creating thread. We always create a
    	// new signal stack here, to avoid having two Go threads using
    	// the same signal stack. This breaks the case of a thread
    	// created in C that calls sigaltstack and then calls a Go
    	// function, because we will lose track of the C code's
    	// sigaltstack, but it's the best we can do.
    	signalstack(&gp.m.gsignal.stack)
    	gp.m.newSigstack = true
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. src/context/x_test.go

    			buf := make([]byte, 10<<10)
    			n := runtime.Stack(buf, true)
    			t.Fatalf("timed out after %v waiting for <-ctx.Done(); stacks:\n%s", d, buf[:n])
    		}
    	}
    	// Wait for all the cancel functions to return.
    	done := make(chan struct{})
    	go func() {
    		wg.Wait()
    		close(done)
    	}()
    	select {
    	case <-done:
    	case <-stuck:
    		buf := make([]byte, 10<<10)
    		n := runtime.Stack(buf, true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/pgen.go

    			fmt.Fprintf(os.Stderr, "%s: %d bytes of stack space saved via stack slot merging (%d nonpointer %d pointer)\n", ir.FuncName(fn), savedNP+savedP, savedNP, savedP)
    			if base.Debug.MergeLocalsTrace > 1 {
    				fmt.Fprintf(os.Stderr, "=-= merge locals state for %v:\n%v",
    					fn, mls)
    			}
    		}
    		leaders = make(map[*ir.Name]int64)
    	}
    
    	// Use sort.SliceStable instead of sort.Slice so stack layout (and thus
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. src/runtime/extern.go

    	execution tracer to double-check stack ownership before taking a stack trace.
    
    	asyncpreemptoff: asyncpreemptoff=1 disables signal-based
    	asynchronous goroutine preemption. This makes some loops
    	non-preemptible for long periods, which may delay GC and
    	goroutine scheduling. This is useful for debugging GC issues
    	because it also disables the conservative stack scanning used
    	for asynchronously preempted goroutines.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/config.go

    	// the same pod.
    	IncludeExtAuthz bool
    
    	// IPFamily for the service. This is optional field. Mainly is used for dual stack testing
    	IPFamilies string
    
    	// IPFamilyPolicy. This is optional field. Mainly is used for dual stack testing.
    	IPFamilyPolicy string
    
    	DualStack bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    	asmArchMipsLE   = asmArch{name: "mipsle", bigEndian: false, stack: "R29", lr: true}
    	asmArchMips64   = asmArch{name: "mips64", bigEndian: true, stack: "R29", lr: true}
    	asmArchMips64LE = asmArch{name: "mips64le", bigEndian: false, stack: "R29", lr: true}
    	asmArchPpc64    = asmArch{name: "ppc64", bigEndian: true, stack: "R1", lr: true, retRegs: []string{"R3", "F1"}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  10. cmd/object-lambda-handlers.go

    // Copyright (c) 2015-2023 MinIO, Inc.
    //
    // This file is part of MinIO Object Storage stack
    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top