Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for IsShared (0.53 sec)

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

    		shstrtabAddstring(".note.GNU-stack")
    
    		if ctxt.IsShared() {
    			shstrtabAddstring(".note.go.abihash")
    			shstrtabAddstring(".note.go.pkg-list")
    			shstrtabAddstring(".note.go.deps")
    		}
    	}
    
    	hasinitarr := ctxt.linkShared
    
    	/* shared library initializer */
    	switch ctxt.BuildMode {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. .teamcity/test-buckets.json

    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"launcher",
    					"time",
    					"logging-api",
    					"kotlin-dsl-plugins",
    					"serialization",
    					"toolchains-jvm-shared",
    					"docs-asciidoctor-extensions-base",
    					"internal-instrumentation-processor",
    					"security",
    					"input-tracking",
    					"base-ide-plugins"
    				]
    			},
    			{
    				"parallelizationMethod":{
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            """
            enableStableConfigurationCache()
    
            when:
            succeeds 'explicit'
    
            then:
            outputDoesNotContain "'Task#usesService'"
        }
    
        def "can inject shared build service by name into nested bean property when reference is annotated with @ServiceReference('...')"() {
            given:
            serviceImplementation()
            buildFile """
                abstract class NestedBean {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    				Exitf("cannot implicitly include runtime/cgo in a shared library")
    			}
    			for ; i < len(ctxt.Library); i++ {
    				lib := ctxt.Library[i]
    				if lib.Shlib == "" {
    					loadobjfile(ctxt, lib)
    				}
    			}
    		}
    	}
    
    	// Add non-package symbols and references of externally defined symbols.
    	ctxt.loader.LoadSyms(ctxt.Arch)
    
    	// Load symbols from shared libraries, after all Go object symbols are loaded.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. tensorflow/BUILD

    cc_library(
        name = "grpc++",
        visibility = ["//visibility:public"],
        deps = select({
            "//conditions:default": ["@com_github_grpc_grpc//:grpc++"],
        }),
    )
    # copybara:comment_end
    
    # A shared object which includes registration mechanisms for ops and
    # kernels. Does not include the implementations of any ops or kernels. Instead,
    # the library which loads libtensorflow_framework.so
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  6. src/syscall/zerrors_solaris_amd64.go

    	81:  "file descriptor in bad state",
    	82:  "remote address changed",
    	83:  "can not access a needed shared library",
    	84:  "accessing a corrupted shared library",
    	85:  ".lib section in a.out corrupted",
    	86:  "attempting to link in more shared libraries than system limit",
    	87:  "can not exec a shared library directly",
    	88:  "illegal byte sequence",
    	89:  "operation not applicable",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  7. src/cmd/dist/test.go

    				// Other targets do not support -shared,
    				// per ParseFlags in
    				// cmd/compile/internal/base/flag.go.
    				// For c-archive the Go tool passes -shared,
    				// so that the result is suitable for inclusion
    				// in a PIE or shared library.
    				return false
    			}
    		case "freebsd":
    			return goarch == "amd64"
    		}
    		return false
    
    	case "c-shared":
    		switch platform {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. src/cmd/link/internal/loader/loader.go

    	l.SetAttrShared(symIdx, r.Shared())
    }
    
    // Copy the payload of symbol src to dst. Both src and dst must be external
    // symbols.
    // The intended use case is that when building/linking against a shared library,
    // where we do symbol name mangling, the Go object file may have reference to
    // the original symbol name whereas the shared library provides a symbol with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  9. .bazelrc

    # Tensorflow to the default, however test coverage wasn't enough to catch the
    # errors.
    # There is ongoing work on Bazel team's side to provide support for transitive
    # shared libraries. As part of migrating to transitive shared libraries, we
    # hope to provide a better mechanism for control over symbol exporting, and
    # then tackle this issue again.
    #
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    The file path will resolve to the absolute of: `dev/projects/AcmeHealth/shared/config.xml`.
    
    [source, text]
    ----
    dev
    ├── projects
    │   ├── AcmeHealth
    │   │   ├── subprojects
    │   │   │   ├── AcmePatientRecordLib
    │   │   │   │   └── build.gradle
    │   │   │   └── ...
    │   │   ├── shared
    │   │   │   └── config.xml
    │   │   └── ...
    │   └── ...
    └── settings.gradle
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
Back to top