Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 199 for open64 (0.15 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_darwin.go

    	// fdopendir expects to take control of its argument.
    	// Just Dup'ing the file descriptor is not enough, as the
    	// result shares underlying state. Use Openat to make a really
    	// new file descriptor referring to the same directory.
    	fd2, err := Openat(fd, ".", O_RDONLY, 0)
    	if err != nil {
    		return 0, err
    	}
    	d, err := fdopendir(fd2)
    	if err != nil {
    		Close(fd2)
    		return 0, err
    	}
    	defer closedir(d)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  2. src/syscall/syscall_linux.go

    	return Mknodat(_AT_FDCWD, path, mode, dev)
    }
    
    func Open(path string, mode int, perm uint32) (fd int, err error) {
    	return openat(_AT_FDCWD, path, mode|O_LARGEFILE, perm)
    }
    
    //sys	openat(dirfd int, path string, flags int, mode uint32) (fd int, err error)
    
    func Openat(dirfd int, path string, flags int, mode uint32) (fd int, err error) {
    	return openat(dirfd, path, flags|O_LARGEFILE, mode)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  3. helm-releases/minio-4.0.12.tgz

    the secret must be 'config.env' ## # extraSecret: minio-extraenv ## OpenID Identity Management ## The following section documents environment variables for enabling external identity management using an OpenID Connect (OIDC)-compatible provider. ## See https://docs.min.io/minio/baremetal/security/openid-external-identity-management/external-authentication-with-openid-identity-provider.html#minio-external-identity-management-openid for a tutorial on using these variables. oidc: enabled: false configUrl:...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Aug 14 05:50:43 UTC 2022
    - 19.4K bytes
    - Viewed (0)
  4. helm-releases/minio-4.0.13.tgz

    the secret must be 'config.env' ## # extraSecret: minio-extraenv ## OpenID Identity Management ## The following section documents environment variables for enabling external identity management using an OpenID Connect (OIDC)-compatible provider. ## See https://docs.min.io/minio/baremetal/security/openid-external-identity-management/external-authentication-with-openid-identity-provider.html#minio-external-identity-management-openid for a tutorial on using these variables. oidc: enabled: false configUrl:...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 23 18:18:14 UTC 2022
    - 19.5K bytes
    - Viewed (0)
  5. helm-releases/minio-4.0.11.tgz

    the secret must be 'config.env' ## # extraSecret: minio-extraenv ## OpenID Identity Management ## The following section documents environment variables for enabling external identity management using an OpenID Connect (OIDC)-compatible provider. ## See https://docs.min.io/minio/baremetal/security/openid-external-identity-management/external-authentication-with-openid-identity-provider.html#minio-external-identity-management-openid for a tutorial on using these variables. oidc: enabled: false configUrl:...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Aug 07 05:41:47 UTC 2022
    - 19.2K bytes
    - Viewed (0)
  6. src/log/slog/handler.go

    	if !state.appendAttrs(as) {
    		state.buf.SetLen(pos)
    	} else {
    		// Remember the new prefix for later keys.
    		h2.groupPrefix = state.prefix.String()
    		// Remember how many opened groups are in preformattedAttrs,
    		// so we don't open them again when we handle a Record.
    		h2.nOpenGroups = len(h2.groups)
    	}
    	return h2
    }
    
    func (h *commonHandler) withGroup(name string) *commonHandler {
    	h2 := h.clone()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 18:18:13 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/TransformReplacer.java

                // Not calling getJarFileLocked intentionally, to avoid opening the JAR if it isn't opened yet.
                IoActions.closeQuietly(jarFile);
            }
    
            private JarFile getJarFileLocked() throws IOException {
                ensureOpened();
                if (jarFile == null) {
                    jarFile = JarCompat.open(transformedJarPath);
                    if (jarFile.isMultiRelease() && !isTransformed(jarFile.getJarFile())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/EvaluationContext.java

             * Can be null if the current scope has no owner (e.g. a just opened nested context).
             *
             * @return the owner
             */
            @Nullable
            EvaluationOwner getOwner();
    
            /**
             * Opens a nested context. A nested context allows to re-enter evaluation of the objects that are being evaluated in this context.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 16:54:51 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. cni/pkg/nodeagent/podcgroupns.go

    	for _, entry := range entries {
    		// we can't break here because we need to close all the netns we opened
    		// plus we want to return whatever we can to the user.
    		res, err := p.processEntry(p.proc, netnsObserved, desiredUIDs, entry)
    		if err != nil {
    			log.Debugf("error processing entry: %s %v", entry.Name(), err)
    			continue
    		}
    		if res == nil {
    			continue
    		}
    		pod := pods[res.uid]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. helm-releases/minio-4.0.15.tgz

    the secret must be 'config.env' ## # extraSecret: minio-extraenv ## OpenID Identity Management ## The following section documents environment variables for enabling external identity management using an OpenID Connect (OIDC)-compatible provider. ## See https://docs.min.io/minio/baremetal/security/openid-external-identity-management/external-authentication-with-openid-identity-provider.html#minio-external-identity-management-openid for a tutorial on using these variables. oidc: enabled: false configUrl:...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Sep 21 11:07:01 UTC 2022
    - 20K bytes
    - Viewed (0)
Back to top