Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 168 for Gid (0.07 sec)

  1. tools/istio-iptables/pkg/capture/testdata/inbound-ports-include.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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/capture/testdata/outbound-ports-include.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
    iptables -t nat -A ISTIO_OUTPUT -p tcp --dport 32000 -j ISTIO_REDIRECT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/capture/testdata/inbound-ports-wildcard-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 -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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. cni/pkg/plugin/testdata/include-exclude-ip.txt.golden

    -A ISTIO_OUTPUT -m owner --uid-owner 1337 -j RETURN
    -A ISTIO_OUTPUT -o lo ! -d 127.0.0.1/32 -p tcp ! --dport 15008 -m owner --gid-owner 1337 -j ISTIO_IN_REDIRECT
    -A ISTIO_OUTPUT -m owner --gid-owner 1337 -j RETURN
    -A ISTIO_OUTPUT -d 127.0.0.1/32 -j RETURN
    -A ISTIO_OUTPUT -d 10.0.0.0/8 -j RETURN
    -A ISTIO_OUTPUT -d 127.0.0.0/8 -j ISTIO_REDIRECT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/HEAD/core.v1.PodStatusResult.yaml

            reason: reasonValue
            signal: 2
            startedAt: "2005-01-01T01:01:01Z"
          waiting:
            message: messageValue
            reason: reasonValue
        user:
          linux:
            gid: 2
            supplementalGroups:
            - 3
            uid: 1
        volumeMounts:
        - mountPath: mountPathValue
          name: nameValue
          readOnly: true
          recursiveReadOnly: recursiveReadOnlyValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. pkg/volume/util/atomic_writer_unsupported.go

    limitations under the License.
    */
    
    package util
    
    import (
    	"runtime"
    
    	"k8s.io/klog/v2"
    )
    
    // chown changes the numeric uid and gid of the named file.
    // This is a no-op on unsupported platforms.
    func (w *AtomicWriter) chown(name string, uid, _ /* gid */ int) error {
    	klog.Warningf("%s: skipping change of Linux owner %v for file %s; unsupported on %s", w.logContext, uid, name, runtime.GOOS)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 04:44:51 UTC 2024
    - 980 bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/core.v1.PodStatusResult.json

                "readOnly": true,
                "recursiveReadOnly": "recursiveReadOnlyValue"
              }
            ],
            "user": {
              "linux": {
                "uid": 1,
                "gid": 2,
                "supplementalGroups": [
                  3
                ]
              }
            }
          }
        ],
        "containerStatuses": [
          {
            "name": "nameValue",
            "state": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. src/os/user/lookup.go

    	return lookupGroup(name)
    }
    
    // LookupGroupId looks up a group by groupid. If the group cannot be found, the
    // returned error is of type [UnknownGroupIdError].
    func LookupGroupId(gid string) (*Group, error) {
    	return lookupGroupId(gid)
    }
    
    // GroupIds returns the list of group IDs that the user is a member of.
    func (u *User) GroupIds() ([]string, error) {
    	return listGroups(u)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. tools/istio-iptables/pkg/constants/constants.go

    A group can be specified either by name or by a numeric GID.
    The wildcard character "*" can be used to configure redirection of traffic from all groups.`)
    
    	OwnerGroupsExclude = env.Register("ISTIO_OUTBOUND_OWNER_GROUPS_EXCLUDE", "",
    		`Comma separated list of groups whose outgoing traffic is to be excluded from redirection to Envoy.
    A group can be specified either by name or by a numeric GID.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 01:42:30 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. 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)
Back to top