Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for dac (0.13 sec)

  1. istioctl/pkg/util/configdump/cluster.go

    	clusterDump, err := w.GetClusterConfigDump()
    	if err != nil {
    		return nil, err
    	}
    	dac := clusterDump.GetDynamicActiveClusters()
    	// Allow sorting to work even if we don't have the exact same type
    	for i := range dac {
    		dac[i].Cluster.TypeUrl = v3.ClusterType
    	}
    	sort.Slice(dac, func(i, j int) bool {
    		cluster := &cluster.Cluster{}
    		err = dac[i].Cluster.UnmarshalTo(cluster)
    		if err != nil {
    			return false
    		}
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Nov 03 08:41:32 GMT 2022
    - 2.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/ACE.java

        public static final int DELETE                = 0x00010000; // 16
        public static final int READ_CONTROL          = 0x00020000; // 17
        public static final int WRITE_DAC             = 0x00040000; // 18
        public static final int WRITE_OWNER           = 0x00080000; // 19
        public static final int SYNCHRONIZE           = 0x00100000; // 20
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 7.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/SmbConstants.java

        static final int FILE_WRITE_ATTRIBUTES = 0x00000100; // 9
        static final int DELETE = 0x00010000; // 16
        static final int READ_CONTROL = 0x00020000; // 17
        static final int WRITE_DAC = 0x00040000; // 18
        static final int WRITE_OWNER = 0x00080000; // 19
        static final int SYNCHRONIZE = 0x00100000; // 20
        static final int GENERIC_ALL = 0x10000000; // 28
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/ACE.java

        public static final int DELETE = 0x00010000; // 16
        /**
         * 
         */
        public static final int READ_CONTROL = 0x00020000; // 17
        /**
         * 
         */
        public static final int WRITE_DAC = 0x00040000; // 18
        /**
         * 
         */
        public static final int WRITE_OWNER = 0x00080000; // 19
        /**
         * 
         */
        public static final int SYNCHRONIZE = 0x00100000; // 20
        /**
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbConstants.java

        static final int FILE_WRITE_ATTRIBUTES = 0x00000100; // 9
        static final int DELETE                = 0x00010000; // 16
        static final int READ_CONTROL          = 0x00020000; // 17
        static final int WRITE_DAC             = 0x00040000; // 18
        static final int WRITE_OWNER           = 0x00080000; // 19
        static final int SYNCHRONIZE           = 0x00100000; // 20
        static final int GENERIC_ALL           = 0x10000000; // 28
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8.4K bytes
    - Viewed (0)
  6. istioctl/pkg/describe/describe.go

    	}
    
    	dump, err := cd.GetClusterConfigDump()
    	if err != nil {
    		return "", err
    	}
    
    	for _, dac := range dump.DynamicActiveClusters {
    		clusterTyped := &cluster.Cluster{}
    		// Support v2 or v3 in config dump. See ads.go:RequestedTypes for more info.
    		dac.Cluster.TypeUrl = v3.ClusterType
    		err = dac.Cluster.UnmarshalTo(clusterTyped)
    		if err != nil {
    			return "", err
    		}
    		if filter.Verify(clusterTyped) {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 50.4K bytes
    - Viewed (0)
Back to top