Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 282 for fileset (0.18 sec)

  1. src/syscall/zsysnum_freebsd_arm.go

    	SYS___ACL_GET_FD             = 349 // { int __acl_get_fd(int filedes, \
    	SYS___ACL_SET_FD             = 350 // { int __acl_set_fd(int filedes, \
    	SYS___ACL_DELETE_FILE        = 351 // { int __acl_delete_file(const char *path, \
    	SYS___ACL_DELETE_FD          = 352 // { int __acl_delete_fd(int filedes, \
    	SYS___ACL_ACLCHECK_FILE      = 353 // { int __acl_aclcheck_file(const char *path, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredFileAccess.groovy

                @Override
                String getKotlinExpression() {
                    "Files.newByteChannel(File(\"$filePath\").toPath()).close()"
                }
    
                @Override
                String getJavaExpression() {
                    """
                    ((Supplier<Object>) () -> {
                        try {
                            Files.newByteChannel(new File("$filePath").toPath()).close();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. src/syscall/zsysnum_freebsd_amd64.go

    	SYS___ACL_GET_FD             = 349 // { int __acl_get_fd(int filedes, \
    	SYS___ACL_SET_FD             = 350 // { int __acl_set_fd(int filedes, \
    	SYS___ACL_DELETE_FILE        = 351 // { int __acl_delete_file(const char *path, \
    	SYS___ACL_DELETE_FD          = 352 // { int __acl_delete_fd(int filedes, \
    	SYS___ACL_ACLCHECK_FILE      = 353 // { int __acl_aclcheck_file(const char *path, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/stripmeta.go

    	stripSet *fieldpath.Set
    }
    
    var _ Manager = &stripMetaManager{}
    
    // NewStripMetaManager creates a new Manager that strips metadata and typemeta fields from the manager's fieldset.
    func NewStripMetaManager(fieldManager Manager) Manager {
    	return &stripMetaManager{
    		fieldManager: fieldManager,
    		stripSet: fieldpath.NewSet(
    			fieldpath.MakePathOrDie("apiVersion"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/tables.go

    	"article",
    	"aside",
    	"base",
    	"basefont",
    	"blockquote",
    	"body",
    	"caption",
    	"center",
    	"col",
    	"colgroup",
    	"dd",
    	"details",
    	"dialog",
    	"dir",
    	"div",
    	"dl",
    	"dt",
    	"fieldset",
    	"figcaption",
    	"figure",
    	"footer",
    	"form",
    	"frame",
    	"frameset",
    	"h1",
    	"h2",
    	"h3",
    	"h4",
    	"h5",
    	"h6",
    	"head",
    	"header",
    	"hr",
    	"html",
    	"iframe",
    	"legend",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. src/syscall/zsysnum_dragonfly_amd64.go

    	SYS___ACL_GET_FD           = 349 // { int __acl_get_fd(int filedes, acl_type_t type, \
    	SYS___ACL_SET_FD           = 350 // { int __acl_set_fd(int filedes, acl_type_t type, \
    	SYS___ACL_DELETE_FILE      = 351 // { int __acl_delete_file(const char *path, \
    	SYS___ACL_DELETE_FD        = 352 // { int __acl_delete_fd(int filedes, acl_type_t type); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 22.9K bytes
    - Viewed (0)
  7. src/os/dir_windows.go

    	// The following code is only needed to support os.SameFile.
    
    	// It is safe to query d.vol once and reuse the value.
    	// Hard links are not allowed to reference files in other volumes.
    	// Junctions and symbolic links can reference files and directories in other volumes,
    	// but the reparse point should still live in the parent volume.
    	var flags uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. platforms/software/publish/src/main/java/org/gradle/api/publish/tasks/GenerateModuleMetadata.java

                return component == null ? ImmutableSet.of() : filesOf(component);
            }
    
            private Set<File> filesOf(SoftwareComponentInternal component) {
                Set<File> files = new LinkedHashSet<>();
                forEachArtifactOf(component, artifact -> files.add(artifact.getFile()));
                return files;
    
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/classpath/Instrumented.java

        private static final Lazy<MethodHandle> FILES_READ_STRING_PATH =
            Lazy.locking().of(() -> findStaticOrThrowError(Files.class, "readString", MethodType.methodType(String.class, Path.class)));
        private static final Lazy<MethodHandle> FILES_READ_STRING_PATH_CHARSET =
            Lazy.locking().of(() -> findStaticOrThrowError(Files.class, "readString", MethodType.methodType(String.class, Path.class, Charset.class)));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  10. src/main/webapp/css/admin/html5shiv.min.js

    ,footer,header,hgroup,main,nav,section{display:block}mark{background:#FF0;color:#000}template{display:none}")),l||i(a,d),a}var k,l,m="3.7.3",n=a.html5||{},o=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,p=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,q="_html5shiv",r=0,s={};!function(){try{var a=b.createElement("a");a.innerHTML="<xyz></xyz>",k="hidden"in a,l=1==a.childNodes.length||function(){b.createElement("a");var...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Dec 31 23:16:54 UTC 2017
    - 2.7K bytes
    - Viewed (0)
Back to top