Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for egid (0.1 sec)

  1. tools/istio-iptables/pkg/capture/testdata/kube-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
    iptables -t nat -A ISTIO_OUTPUT -j ISTIO_REDIRECT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. 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)
  3. maven-model-builder/src/test/resources/poms/validation/raw-model/profile-activation-property-with-project-expressions.xml

             xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    
      <modelVersion>4.0.0</modelVersion>
      <artifactId>aid</artifactId>
      <groupId>gid</groupId>
      <version>0.1</version>
      <packaging>pom</packaging>
    
      <profiles>
    
        <profile>
          <id>property-name-project-version</id>
          <activation>
            <property>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 13:13:07 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. src/cmd/pack/pack.go

    	// Format the entry.
    	// First, get its info.
    	info, err := fd.Stat()
    	if err != nil {
    		log.Fatal(err)
    	}
    	// mtime, uid, gid are all zero so repeated builds produce identical output.
    	mtime := int64(0)
    	uid := 0
    	gid := 0
    	ar.a.AddEntry(archive.EntryNativeObj, info.Name(), mtime, uid, gid, info.Mode(), info.Size(), fd)
    }
    
    // addPkgdef adds the __.PKGDEF file to the archive, copied
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. src/runtime/traceback_system_test.go

    			_, err := fmt.Sscanf(line, "sentinel %x", &parentSentinel)
    			if err != nil {
    				return nil, fmt.Errorf("can't read sentinel line")
    			}
    			continue
    		}
    
    		// Search for "goroutine GID [STATUS]"
    		if !on {
    			if strings.HasPrefix(line, "goroutine ") &&
    				strings.Contains(line, " [running]:") {
    				on = true
    
    				if parentSentinel == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. tools/istio-clean-iptables/pkg/cmd/root.go

    		"Specify the UID of the user for which the redirection is not applied. Typically, this is the UID of the proxy container.",
    		&cfg.ProxyUID)
    
    	flag.BindEnv(fs, constants.ProxyGID, "g",
    		"Specify the GID of the user for which the redirection is not applied (same default value as -u param).",
    		&cfg.ProxyGID)
    
    	flag.BindEnv(fs, constants.RedirectDNS, "", "Enable capture of dns traffic by istio-agent.", &cfg.RedirectDNS)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/internal/crashmonitor/monitor.go

    			_, err := fmt.Sscanf(line, "sentinel %x", &parentSentinel)
    			if err != nil {
    				return nil, fmt.Errorf("can't read sentinel line")
    			}
    			continue
    		}
    
    		// Search for "goroutine GID [STATUS]"
    		if !on {
    			if strings.HasPrefix(line, "goroutine ") &&
    				strings.Contains(line, " [running]:") {
    				on = true
    
    				if parentSentinel == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go

    )
    
    type Siginfo struct {
    	Signo int32
    	Errno int32
    	Code  int32
    	Pid   int32
    	Uid   uint32
    	_     [44]byte
    }
    
    type SysvIpcPerm struct {
    	Uid  uint32
    	Gid  uint32
    	Cuid uint32
    	Cgid uint32
    	Mode int32
    }
    
    type SysvShmDesc struct {
    	Perm   SysvIpcPerm
    	_      [4]byte
    	Lpid   int32
    	Cpid   int32
    	Nattch uint32
    	_      [4]byte
    	_      [4]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  9. src/syscall/exec_unix_test.go

    	}
    
    	if cpid1 != cpgrp1 {
    		t.Fatalf("Child 1's process group is not its process ID")
    	}
    
    	cmd2 := create(t)
    
    	cmd2.proc.SysProcAttr = &syscall.SysProcAttr{
    		Setpgid: true,
    		Pgid:    cpgrp1,
    	}
    	cmd2.Start()
    	defer cmd2.Stop()
    
    	cpid2, cpgrp2 := cmd2.Info()
    
    	if cpid2 == ppid {
    		t.Fatalf("Parent and child 2 have the same process ID")
    	}
    
    	if cpgrp2 == ppgrp {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 04:41:27 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/config/config.go

    		// Default to the UID of ENVOY_USER
    		if err != nil {
    			userID = constants.DefaultProxyUID
    		} else {
    			userID = usr.Uid
    		}
    		c.ProxyUID = userID
    	}
    
    	// For TPROXY as its uid and gid are same.
    	if c.ProxyGID == "" {
    		c.ProxyGID = c.ProxyUID
    	}
    	// Detect whether IPv6 is enabled by checking if the pod's IP address is IPv4 or IPv6.
    	// TODO remove this check, it will break with more than one pod IP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top