Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,077 for IsShared (0.18 sec)

  1. pkg/volume/util/hostutil/hostutil_linux.go

    // path is shared and bind-mounts it as rshared if needed. mountCmd and
    // mountArgs are expected to contain mount-like command, DoMakeRShared will add
    // '--bind <path> <path>' and '--make-rshared <path>' to mountArgs.
    func DoMakeRShared(path string, mountInfoFilename string) error {
    	shared, err := isShared(path, mountInfoFilename)
    	if err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 23 08:36:44 UTC 2023
    - 10K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultFileLockManager.java

             * 2b. If we use shared lock, and we succeed in step 1., then we just hold the lock. We don't write anything to the information region
             * since multiple processes can acquire shared lock (due to that we currently also don't support on demand shared locks).<br>
             * 2.c If we fail, we throw a timeout exception.
             * <br><br>
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:32 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/symtab.go

    		}
    	}
    
    	// When loading a shared library, if a symbol has only one ABI,
    	// and the name is not mangled, we don't know what ABI it is.
    	// So we always mangle ABIInternal function name in shared linkage,
    	// except symbols that are exported to C. Type symbols are always
    	// ABIInternal so they are not mangled.
    	if ctxt.IsShared() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  4. 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)
  5. operator/pkg/manifest/shared.go

    	"istio.io/istio/operator/pkg/validate"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/util/sets"
    	pkgversion "istio.io/istio/pkg/version"
    )
    
    // installerScope is the scope for shared manifest package.
    var installerScope = log.RegisterScope("installer", "installer")
    
    // GenManifests generates a manifest map, keyed by the component name, from input file list and a YAML tree
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 06:27:07 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. operator/cmd/mesh/shared.go

    John Howard <******@****.***> 1711679342 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 29 02:29:02 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/swift-shared-library-task-graph.dot

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // dot -Tpng src/docs/userguide/img/swift-shared-library-task-graph.dot > src/docs/userguide/img/swift-shared-library-task-graph.png
    digraph swiftSharedLibraryTaskGraph {
      graph [ dpi = 100, fontname="Sans"];
      node [fontname = "Sans"];
      edge [fontname = "Sans"];
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/img/cpp-shared-library-task-graph.dot

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // dot -Tpng src/docs/userguide/img/cpp-shared-library-task-graph.dot > src/docs/userguide/img/cpp-shared-library-task-graph.png
    digraph cppSharedLibraryTaskGraph {
      graph [ dpi = 100, fontname="Sans"];
      node [fontname = "Sans"];
      edge [fontname = "Sans"];
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/img/swift-shared-library-task-graph.png

    swift-shared-library-task-graph.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/data.go

    		if rs != 0 {
    			rst = ldr.SymType(rs)
    		}
    
    		if rs != 0 && (rst == sym.Sxxx || rst == sym.SXREF) {
    			// When putting the runtime but not main into a shared library
    			// these symbols are undefined and that's OK.
    			if target.IsShared() || target.IsPlugin() {
    				if ldr.SymName(rs) == "main.main" || (!target.IsPlugin() && ldr.SymName(rs) == "main..inittask") {
    					sb := ldr.MakeSymbolUpdater(rs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top