Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 90 for euid (0.06 sec)

  1. src/main/java/jcifs/dcerpc/UUID.java

        }
    
    
        /**
         * 
         * @param uuid
         *            wrapped uuid
         */
        public UUID ( rpc.uuid_t uuid ) {
            this.time_low = uuid.time_low;
            this.time_mid = uuid.time_mid;
            this.time_hi_and_version = uuid.time_hi_and_version;
            this.clock_seq_hi_and_reserved = uuid.clock_seq_hi_and_reserved;
            this.clock_seq_low = uuid.clock_seq_low;
            this.node = new byte[6];
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/dcerpc/UUID.java

        public UUID(rpc.uuid_t uuid) {
            time_low = uuid.time_low;
            time_mid = uuid.time_mid;
            time_hi_and_version = uuid.time_hi_and_version;
            clock_seq_hi_and_reserved = uuid.clock_seq_hi_and_reserved;
            clock_seq_low = uuid.clock_seq_low;
            node = new byte[6];
            node[0] = uuid.node[0];
            node[1] = uuid.node[1];
            node[2] = uuid.node[2];
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 4.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/uuid/uuid.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package uuid
    
    import (
    	"github.com/google/uuid"
    
    	"k8s.io/apimachinery/pkg/types"
    )
    
    func NewUUID() types.UID {
    	return types.UID(uuid.New().String())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 16:03:21 UTC 2019
    - 725 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/types/uid.go

    limitations under the License.
    */
    
    package types
    
    // UID is a type that holds unique ID values, including UUIDs.  Because we
    // don't ONLY use UUIDs, this is an alias to string.  Being a type captures
    // intent and helps make sure that UIDs and names do not get conflated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 14:09:48 UTC 2017
    - 825 bytes
    - Viewed (0)
  5. tools/istio-clean-iptables/pkg/cmd/testdata/dns-uid-gid.golden

    iptables -t raw -D ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 3 -j CT --zone 1
    ip6tables -t raw -D ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 3 -j CT --zone 1
    iptables -t raw -D ISTIO_OUTPUT -p udp --sport 15053 -m owner --uid-owner 3 -j CT --zone 2
    ip6tables -t raw -D ISTIO_OUTPUT -p udp --sport 15053 -m owner --uid-owner 3 -j CT --zone 2
    iptables -t raw -D ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 4 -j CT --zone 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. src/internal/syscall/windows/security_windows.go

    //sys	RevertToSelf() (err error) = advapi32.RevertToSelf
    
    const (
    	TOKEN_ADJUST_PRIVILEGES = 0x0020
    	SE_PRIVILEGE_ENABLED    = 0x00000002
    )
    
    type LUID struct {
    	LowPart  uint32
    	HighPart int32
    }
    
    type LUID_AND_ATTRIBUTES struct {
    	Luid       LUID
    	Attributes uint32
    }
    
    type TOKEN_PRIVILEGES struct {
    	PrivilegeCount uint32
    	Privileges     [1]LUID_AND_ATTRIBUTES
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 07:21:38 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/capture/testdata/dns-uid-gid.golden

    iptables -t nat -A ISTIO_OUTPUT -o lo -p tcp ! --dport 53 -m owner ! --uid-owner 3 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -m owner --uid-owner 3 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -o lo ! -d 127.0.0.1/32 -p tcp -m multiport ! --dports 53,15008 -m owner --uid-owner 4 -j ISTIO_IN_REDIRECT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. pkg/proxy/winkernel/testing/hcnutils_mock.go

    			},
    			DSR:           true,
    			IPv6DualStack: true,
    		},
    		network: hnsNetwork,
    	}
    }
    
    func (hcnObj HcnMock) PopulateQueriedEndpoints(epId, hnsId, ipAddress, mac string, prefixLen uint8) {
    	endpoint := &hcn.HostComputeEndpoint{
    		Id:                 epId,
    		Name:               epId,
    		HostComputeNetwork: hnsId,
    		IpConfigurations: []hcn.IpConfig{
    			{
    				IpAddress:    ipAddress,
    				PrefixLength: prefixLen,
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 18 06:29:01 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  9. cni/pkg/plugin/testdata/custom-uid.txt.golden

    -A ISTIO_OUTPUT -p tcp --dport 15020 -j RETURN
    -A ISTIO_OUTPUT -o lo -s 127.0.0.6/32 -j RETURN
    -A ISTIO_OUTPUT -o lo ! -d 127.0.0.1/32 -p tcp ! --dport 15008 -m owner --uid-owner 1000670000 -j ISTIO_IN_REDIRECT
    -A ISTIO_OUTPUT -o lo -m owner ! --uid-owner 1000670000 -j RETURN
    -A ISTIO_OUTPUT -m owner --uid-owner 1000670000 -j RETURN
    -A ISTIO_OUTPUT -o lo ! -d 127.0.0.1/32 -p tcp ! --dport 15008 -m owner --gid-owner 1000670001 -j ISTIO_IN_REDIRECT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 26 16:39:28 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/pod-sec-uid.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: pod-sec-uid
      labels:
        app: helloworld
        version: v2
    spec:
      securityContext:
        runAsUser: 1337
      containers:
      - name: helloworld
        image: docker.io/istio/examples-helloworld-v2
        resources:
          requests:
            cpu: "100m"
        imagePullPolicy: IfNotPresent #Always
        ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 361 bytes
    - Viewed (0)
Back to top