Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 182 for tramps (0.12 sec)

  1. src/cmd/link/internal/ld/link.go

    	Library      []*sym.Library
    	LibraryByPkg map[string]*sym.Library
    	Shlibs       []Shlib
    	Textp        []loader.Sym
    	Moduledata   loader.Sym
    
    	PackageFile  map[string]string
    	PackageShlib map[string]string
    
    	tramps []loader.Sym // trampolines
    
    	compUnits []*sym.CompilationUnit // DWARF compilation units
    	runtimeCU *sym.CompilationUnit   // One of the runtime CUs, the last one seen.
    
    	loader  *loader.Loader
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 19 15:59:22 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  2. .travis.yml

    sudo: required
    services:
      - docker
    
    language: java
    
    jdk:
      - openjdk11
    
    cache:
      directories:
        - $HOME/.m2/repository
    
    before_script:
      - java -version
    
    script:
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Dec 07 14:01:56 UTC 2019
    - 202 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/filters/traces.go

    Ziqi Zhao <******@****.***> 1710466962 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 15 01:42:42 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/trampoline_reuse_test.txt

    # assembly 2^26 or so times.
    #
    # We build something which should be laid out as such:
    #
    # bar.Bar
    # main.Func1
    # bar.Bar+400-tramp0
    # main.BigAsm
    # main.Func2
    # bar.Bar+400-tramp1
    #
    # bar.Bar needs to be placed far enough away to generate relocations
    # from main package calls. and main.Func1 and main.Func2 are placed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 14:31:23 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/travis-ci.adoc

    === Create the configuration file
    
    Travis CI requires you to check in a https://docs.travis-ci.com/user/customizing-the-build/[configuration file] with your source code named `.travis.yml`.
    This file contains all relevant instructions for building the project.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/ci-systems/travis-enable-project.png

    travis-enable-project.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  7. test/inline_callers.go

    }
    
    func main() {
    	for i := 0; i <= 5; i++ {
    		frames := testCallers(i)
    		expected := expectedFrames[i]
    		if !same(frames, expected) {
    			fmt.Printf("testCallers(%d):\n got %v\n want %v\n", i, frames, expected)
    		}
    
    		frames = testCallersFrames(i)
    		expected = allFrames[i:]
    		if !same(frames, expected) {
    			fmt.Printf("testCallersFrames(%d):\n got %v\n want %v\n", i, frames, expected)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 08 21:54:04 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/streaming/streaming_test.go

    	if err != io.EOF {
    		t.Fatal(err)
    	}
    }
    
    func TestDecoder(t *testing.T) {
    	frames := [][]byte{
    		make([]byte, 1025),
    		make([]byte, 1024*5),
    		make([]byte, 1024*1024*17),
    		make([]byte, 1025),
    	}
    	pr, pw := io.Pipe()
    	fw := framer.NewLengthDelimitedFrameWriter(pw)
    	go func() {
    		for i := range frames {
    			fw.Write(frames[i])
    		}
    		pw.Close()
    	}()
    
    	r := framer.NewLengthDelimitedFrameReader(pr)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 14 11:43:39 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/debuginfo/v1_1.0_224_frozen.wrong_attr.line.part.pbtxt.debug

    files: "fake/user/code/file_y.py"
    files: "fake/user/code/file_z.py"
    traces {
      key: "MobilenetV1/Conv2d_0/BatchNorm/beta@"
      value {
        file_line_cols {
          file_index: 33
          line: 383
        }
      }
    }
    traces {
      key: "MobilenetV1/Conv2d_0/BatchNorm/beta/read@"
      value {
        file_line_cols {
          file_index: 49
          line: 886
        }
      }
    }
    traces {
      key: "MobilenetV1/Conv2d_0/BatchNorm/gamma@"
      value {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 11 15:36:55 UTC 2019
    - 3.7K bytes
    - Viewed (0)
  10. test/fixedbugs/issue19799.go

    	return x + 1
    }
    
    func test() {
    	defer func() {
    		if r := recover(); r != nil {
    			pcs := make([]uintptr, 10)
    			n := runtime.Callers(0, pcs)
    			pcs = pcs[:n]
    			frames := runtime.CallersFrames(pcs)
    			for {
    				f, more := frames.Next()
    				if f.Function == "main.foo" {
    					println("did not expect to see call to foo in stack trace")
    					os.Exit(1)
    				}
    				if !more {
    					break
    				}
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 13:41:01 UTC 2017
    - 1.1K bytes
    - Viewed (0)
Back to top