Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for rsrc$ (0.06 sec)

  1. src/cmd/link/testdata/pe-llvm/main.go

    // license that can be found in the LICENSE file.
    
    // Test that a PE rsrc section is handled correctly, when the object files
    // have been created by llvm-rc or msvc's rc.exe, which means there's the
    // @feat.00 symbol as well as split .rsrc$00 and .rsrc$01 section to deal with.
    //
    // rsrc.syso is created using llvm with:
    //    {i686,x86_64,armv7,arm64}-w64-mingw32-windres -i a.rc -o rsrc_$GOARCH.syso -O coff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 26 18:15:09 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  2. src/cmd/link/testdata/pe-binutils/main.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that a PE rsrc section is handled correctly (issue 39658).
    //
    // rsrc.syso is created using binutils with:
    //	{x86_64,i686}-w64-mingw32-windres -i a.rc -o rsrc_$GOARCH.syso -O coff
    // where a.rc is a text file with the following content:
    //
    // resname RCDATA {
    //   "Hello Gophers!\0",
    //   "This is a test.\0",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 26 18:15:09 UTC 2021
    - 515 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/embedding_pipelining.mlir

        return
      }
      func.func private @func2(%arg0: tensor<*x!tf_type.resource<tensor<i64>>> {tf._composite_device = "/job:tpu_host_worker/replica:0/task:0/device:COMPOSITE:0", tf._user_specified_name = "rsrc", tf.device = "/job:tpu_host_worker/replica:0/task:0/device:COMPOSITE:0"})  -> () {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 33.1K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loadpe/ldpe.go

    var comdatDefinitions map[string]int64
    
    // Symbols contains the symbols that can be loaded from a PE file.
    type Symbols struct {
    	Textp     []loader.Sym // text symbols
    	Resources []loader.Sym // .rsrc section or set of .rsrc$xx sections
    	PData     loader.Sym
    	XData     loader.Sym
    }
    
    // Load loads the PE file pn from input.
    // Symbols from the object file are created via the loader 'l'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  5. istioctl/pkg/validate/validate.go

    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/url"
    )
    
    var (
    	errMissingFilename = errors.New(`error: you must specify resources by --filename.
    Example resource specifications include:
       '-f rsrc.yaml'
       '--filename=rsrc.json'`)
    
    	validFields = map[string]struct{}{
    		"apiVersion": {},
    		"kind":       {},
    		"metadata":   {},
    		"spec":       {},
    		"status":     {},
    	}
    
    	serviceProtocolUDP = "UDP"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 22 17:58:52 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/pkg/resource/builder.go

    Example resource specifications include:
       '-f rsrc.yaml'
       '--filename=rsrc.json'
       '<resource> <name>'
       '<resource>'`)
    
    var LocalResourceError = errors.New(`error: you must specify resources by --filename when --local is set.
    Example resource specifications include:
       '-f rsrc.yaml'
       '--filename=rsrc.json'`)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 10:17:56 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/pe.go

    	if len(rsrcsyms) != 0 {
    		Errorf(nil, "too many .rsrc sections")
    	}
    	rsrcsyms = syms
    }
    
    func addpersrc(ctxt *Link) {
    	if len(rsrcsyms) == 0 {
    		return
    	}
    
    	var size int64
    	for _, rsrcsym := range rsrcsyms {
    		size += ctxt.loader.SymSize(rsrcsym)
    	}
    	h := pefile.addSection(".rsrc", int(size), int(size))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  8. src/cmd/link/link_test.go

    	}
    
    	// Check that the binary contains the rsrc data
    	b, err := os.ReadFile(exe)
    	if err != nil {
    		t.Fatalf("reading output failed: %v", err)
    	}
    	if !bytes.Contains(b, []byte("Hello Gophers!")) {
    		t.Fatalf("binary does not contain expected content")
    	}
    }
    
    func TestPErsrcLLVM(t *testing.T) {
    	// Test that PE rsrc section is handled correctly (issue 39658).
    	testenv.MustHaveGoBuild(t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  9. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"audio/x-matroska",
    				"video/webm",
    				"x-conference/x-cooltalk",
    				"application/x-fictionbook+xml",
    				"text/x-asciidoc",
    				"text/x-d",
    				"text/x-haml",
    				"text/x-haxe",
    				"text/x-rsrc",
    				"application/xquery"
    				]</arg>
    			<arg>tikaExtractor</arg>
    		</postConstruct>
    	</component>
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/S390X.rules

    // the most significant bit due to mask produced by arithmetic shift.
    // Simply isolate the most significant bit itself and place it in the
    // correct position.
    //
    // Example: (int64(x) >> 63) & 0x8 -> RISBGZ $60, $60, $4, Rsrc, Rdst
    (RISBGZ (SRADconst x [c]) {r})
      && r.Start == r.End           // single bit selected
      && (r.Start+r.Amount)&63 <= c // equivalent to most significant bit of x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
Back to top