Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 476 for Gid (0.02 sec)

  1. tools/istio-iptables/pkg/config/validation.go

    	// number of owner groups whose outgoing traffic should be redirected
    	// to Envoy.
    	//
    	// Since all included groups will be translated into a single Iptables
    	// rule that combines N match expressions `-m owner ! --gid-owner <GID>`,
    	// we need to be sure it won't be too long.
    	//
    	// Most common Linux distributions allow no more than 128-1200
    	// match expressions per rule.
    	maxOwnerGroupsInclude = 64
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 11 02:38:28 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. src/os/file_plan9.go

    }
    
    // Chown changes the numeric uid and gid of the named file.
    // If the file is a symbolic link, it changes the uid and gid of the link's target.
    // A uid or gid of -1 means to not change that value.
    // If there is an error, it will be of type *PathError.
    //
    // On Windows or Plan 9, Chown always returns the syscall.EWINDOWS or
    // EPLAN9 error, wrapped in *PathError.
    func Chown(name string, uid, gid int) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:35:30 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. build/build-image/rsyncd.sh

    # and generated files back out.
    #
    # When run as root (rare) it'll preserve the file ids as sent from the client.
    # Usually it'll be run as non-dockerized UID/GID and end up translating all file
    # ownership to that.
    
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    # The directory that gets sync'd
    VOLUME=${HOME}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 04 15:58:52 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/parent-inheritance/sub/pom.xml

    <project>
      <parent>
        <groupId>gid</groupId>
        <artifactId>child-2</artifactId>
        <version>1.0</version>
      </parent>
      <modelVersion>4.0.0</modelVersion>
      <artifactId>child-1</artifactId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 29 05:20:38 UTC 2009
    - 206 bytes
    - Viewed (0)
  5. maven-core/src/test/resources-project-builder/parent-inheritance/pom.xml

    <project>
      <parent>
        <groupId>gid</groupId>
        <artifactId>child-3</artifactId>
        <version>1.0</version>
        <relativePath>child3.xml</relativePath>
      </parent>
      <modelVersion>4.0.0</modelVersion>
      <artifactId>child-2</artifactId>
      <packaging>pom</packaging>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Aug 05 21:42:06 UTC 2009
    - 279 bytes
    - Viewed (0)
  6. pkg/volume/volume_linux.go

    		return true
    	}
    
    	if int(stat.Gid) != int(*fsGroup) {
    		klog.V(4).InfoS("Expected group ownership of volume did not match with Gid", "path", rootDir, "GID", stat.Gid)
    		return true
    	}
    	unixPerms := rwMask
    
    	if readonly {
    		unixPerms = roMask
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_arm.go

    //sys	Fchown(fd int, uid int, gid int) (err error) = SYS_FCHOWN32
    //sys	Fstat(fd int, stat *Stat_t) (err error) = SYS_FSTAT64
    //sys	Fstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) = SYS_FSTATAT64
    //sysnb	Getegid() (egid int) = SYS_GETEGID32
    //sysnb	Geteuid() (euid int) = SYS_GETEUID32
    //sysnb	Getgid() (gid int) = SYS_GETGID32
    //sysnb	Getuid() (uid int) = SYS_GETUID32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  8. maven-core/src/test/resources-project-builder/plugin-inheritance-simple/pom.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
      <groupId>gid</groupId>
      <artifactId>aid</artifactId>
      <version>1.0</version>
      <packaging>pom</packaging>
      <build>
        <plugins>
          <plugin>
            <groupId>org.codehaus.modello</groupId>
            <artifactId>modello-maven-plugin</artifactId>
            <version>1.0-alpha-21</version>
          </plugin>
        </plugins>
      </build>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:50:27 UTC 2020
    - 391 bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/plan9/dir_plan9.go

    	Mode   uint32 // permissions
    	Atime  uint32 // last read time
    	Mtime  uint32 // last write time
    	Length int64  // file length
    	Name   string // last element of path
    	Uid    string // owner name
    	Gid    string // group name
    	Muid   string // last modifier name
    }
    
    var nullDir = Dir{
    	Type: ^uint16(0),
    	Dev:  ^uint32(0),
    	Qid: Qid{
    		Path: ^uint64(0),
    		Vers: ^uint32(0),
    		Type: ^uint8(0),
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_ppc.go

    //sys	Fchown(fd int, uid int, gid int) (err error)
    //sys	Fstat(fd int, stat *Stat_t) (err error) = SYS_FSTAT64
    //sys	Fstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) = SYS_FSTATAT64
    //sys	Ftruncate(fd int, length int64) (err error) = SYS_FTRUNCATE64
    //sysnb	Getegid() (egid int)
    //sysnb	Geteuid() (euid int)
    //sysnb	Getgid() (gid int)
    //sysnb	Getuid() (uid int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top