Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,337 for IsShared (0.14 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. src/cmd/link/internal/ld/target.go

    	linkShared    bool
    	canUsePlugins bool
    	IsELF         bool
    }
    
    //
    // Target type functions
    //
    
    func (t *Target) IsExe() bool {
    	return t.BuildMode == BuildModeExe
    }
    
    func (t *Target) IsShared() bool {
    	return t.BuildMode == BuildModeShared
    }
    
    func (t *Target) IsPlugin() bool {
    	return t.BuildMode == BuildModePlugin
    }
    
    func (t *Target) IsInternal() bool {
    	return t.LinkMode == LinkInternal
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 21:14:48 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  3. 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)
  4. pkg/volume/util/hostutil/hostutil_linux_test.go

    			false,
    		},
    		{
    			// 'directory' is a directory on mount
    			// /var/lib/docker/devicemapper/test/shared that is shared, but one
    			// of its parent is private.
    			"nested-shared",
    			"/var/lib/docker/devicemapper/test/shared/my/test/directory",
    			true,
    		},
    		{
    			// /var/lib/foo is a mount point and it's shared
    			"shared-mount",
    			"/var/lib/foo",
    			true,
    		},
    		{
    			// /var/lib/bar is a mount point and it's private
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top