Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 385 for Gid (0.02 sec)

  1. tools/istio-clean-iptables/pkg/cmd/testdata/dns.golden

    iptables -t raw -D ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner 1337 -j CT --zone 1
    ip6tables -t raw -D ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner 1337 -j CT --zone 1
    iptables -t raw -D ISTIO_OUTPUT -p udp --sport 15053 -m owner --gid-owner 1337 -j CT --zone 2
    ip6tables -t raw -D ISTIO_OUTPUT -p udp --sport 15053 -m owner --gid-owner 1337 -j CT --zone 2
    iptables-save
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXObject.java

    public abstract class PBXObject {
        @Nullable
        private String globalID;
    
        @Nullable
        public String getGlobalID() {
            return globalID;
        }
    
        public void setGlobalID(String gid) {
            globalID = gid;
        }
    
        /**
         * @return Type name of the serialized object.
         */
        public abstract String isa();
    
        /**
         * Populates the serializer with the fields of this object.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. src/cmd/internal/archive/archive.go

    			return v
    		}
    		size := get(48, 58, 10, 64)
    		var (
    			mtime    int64
    			uid, gid int
    			mode     os.FileMode
    		)
    		if verbose {
    			mtime = get(16, 28, 10, 64)
    			uid = int(get(28, 34, 10, 32))
    			gid = int(get(34, 40, 10, 32))
    			mode = os.FileMode(get(40, 48, 8, 32))
    		}
    		if err != nil {
    			return errCorruptArchive
    		}
    		data = data[60:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 15:39:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  4. src/os/user/cgo_lookup_unix.go

    		return nil, fmt.Errorf("user: lookup groupname %s: %v", groupname, err)
    	}
    	return buildGroup(&grp), nil
    }
    
    func lookupGroupId(gid string) (*Group, error) {
    	i, e := strconv.Atoi(gid)
    	if e != nil {
    		return nil, e
    	}
    	return lookupUnixGid(i)
    }
    
    func lookupUnixGid(gid int) (*Group, error) {
    	var grp _C_struct_group
    	var found bool
    
    	err := retryWithBuffer(groupBuffer, func(buf []byte) syscall.Errno {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:08:14 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/capture/testdata/ipv6-virt-interfaces.golden

    iptables -t nat -A ISTIO_OUTPUT -m owner --uid-owner 1337 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -o lo ! -d 127.0.0.1/32 -p tcp ! --dport 15008 -m owner --gid-owner 1337 -j ISTIO_IN_REDIRECT
    iptables -t nat -A ISTIO_OUTPUT -o lo -m owner ! --gid-owner 1337 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -m owner --gid-owner 1337 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -d 127.0.0.1/32 -j RETURN
    ip6tables -t nat -N ISTIO_INBOUND
    ip6tables -t nat -N ISTIO_REDIRECT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/test/issue1435.go

    		{call: "Setregid(101,0)", fn: func() error { return syscall.Setregid(101, 0) }, filter: "Gid:", expect: "\t101\t0\t0\t0"},
    		{call: "Setregid(0,102)", fn: func() error { return syscall.Setregid(0, 102) }, filter: "Gid:", expect: "\t0\t102\t102\t102"},
    		{call: "Setregid(0,0)", fn: func() error { return syscall.Setregid(0, 0) }, filter: "Gid:", expect: "\t0\t0\t0\t0"},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 28 21:31:41 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/capture/testdata/tproxy.golden

    iptables -t nat -A ISTIO_OUTPUT -m owner --uid-owner 1337 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -o lo ! -d 127.0.0.1/32 -p tcp ! --dport 15008 -m owner --gid-owner 1337 -j ISTIO_IN_REDIRECT
    iptables -t nat -A ISTIO_OUTPUT -o lo -p tcp ! --dport 53 -m owner ! --gid-owner 1337 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -m owner --gid-owner 1337 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -p tcp --dport 53 -d 127.0.0.53/32 -j REDIRECT --to-ports 15053
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. src/os/user/user.go

    	// On Plan 9, this is the contents of /dev/user.
    	Uid string
    	// Gid is the primary group ID.
    	// On POSIX systems, this is a decimal number representing the gid.
    	// On Windows, this is a SID in a string format.
    	// On Plan 9, this is the contents of /dev/user.
    	Gid string
    	// Username is the login name.
    	Username string
    	// Name is the user's real or display name.
    	// It might be blank.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. pkg/volume/util/atomic_writer_linux.go

    limitations under the License.
    */
    
    package util
    
    import "os"
    
    // chown changes the numeric uid and gid of the named file.
    func (w *AtomicWriter) chown(name string, uid, gid int) error {
    	return os.Chown(name, uid, gid)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 04:44:51 UTC 2024
    - 791 bytes
    - Viewed (0)
  10. src/os/user/cgo_lookup_syscall.go

    func _C_pw_gid(p *_C_struct_passwd) _C_gid_t   { return p.Gid }
    func _C_pw_gidp(p *_C_struct_passwd) *_C_gid_t { return &p.Gid }
    func _C_pw_name(p *_C_struct_passwd) *_C_char  { return p.Name }
    func _C_pw_gecos(p *_C_struct_passwd) *_C_char { return p.Gecos }
    func _C_pw_dir(p *_C_struct_passwd) *_C_char   { return p.Dir }
    
    func _C_gr_gid(g *_C_struct_group) _C_gid_t  { return g.Gid }
    func _C_gr_name(g *_C_struct_group) *_C_char { return g.Name }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 11 04:31:34 UTC 2022
    - 2.2K bytes
    - Viewed (0)
Back to top