Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for SetInfo (0.23 sec)

  1. src/main/java/jcifs/internal/smb2/info/Smb2SetInfoRequest.java

            setInfoType(Smb2Constants.SMB2_0_INFO_FILE);
            setFileInfoClass(fi.getFileInformationLevel());
            setInfo(fi);
        }
    
    
        /**
         * @param info
         *            the info to set
         */
        public void setInfo ( Encodable info ) {
            this.info = info;
        }
    
    
        /**
         * {@inheritDoc}
         *
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.8K bytes
    - Viewed (0)
  2. cluster/gce/windows/testonly/user-profile.psm1

        )
     
        $system = [ADSI]"WinNT://$env:COMPUTERNAME";
        $user = $system.Create("user",$userName);
        $user.SetPassword($password);
        $user.SetInfo();
     
        $flag=$user.UserFlags.value -bor 0x10000;
        $user.put("userflags",$flag);
        $user.SetInfo();
     
        $group = [ADSI]("WinNT://$env:COMPUTERNAME/Users");
        $group.PSBase.Invoke("Add", $user.PSBase.Path);
    }
    
    #function to register a native method
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 26 00:44:57 UTC 2019
    - 9.4K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/logging/DefaultTestLoggingContainer.java

        }
    
        @Override
        public TestLogging getInfo() {
            return perLevelTestLogging.get(LogLevel.INFO);
        }
    
        @Override
        public void setInfo(TestLogging logging) {
            perLevelTestLogging.put(LogLevel.INFO, logging);
        }
    
        @Override
        public void info(Action<TestLogging> action) {
            action.execute(getInfo());
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/logging/TestLoggingContainer.java

        /**
         * Gets logging options for info level.
         *
         * @return logging options for info level
         */
        TestLogging getInfo();
    
        /**
         * Sets logging options for info level.
         *
         * @param logging logging options for info level
         */
        void setInfo(TestLogging logging);
    
        /**
         * Configures logging options for info level.
         *
         * @param action logging options for info level
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  5. cluster/gce/windows/testonly/install-ssh.psm1

          #
          # - if the username already exists:
          #
          #   Create-NewProfile : Exception calling "SetInfo" with "0" argument(s):
          #   "The account already exists."
          #
          # - if the username is invalid (e.g. gke-29bd5e8d9ea0446f829d)
          #
          #   Create-NewProfile : Exception calling "SetInfo" with "0" argument(s): "The specified username is invalid.
          #
          # Just catch them and ignore them.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 05:09:18 UTC 2021
    - 11.6K bytes
    - Viewed (0)
  6. cmd/erasure-server-pool.go

    	reqInfo := (&logger.ReqInfo{}).AppendTags("maintenance", strconv.FormatBool(opts.Maintenance))
    
    	type setInfo struct {
    		online  int
    		healing int
    	}
    
    	var drivesHealing int
    
    	erasureSetUpCount := make([][]setInfo, len(z.serverPools))
    	for i := range z.serverPools {
    		erasureSetUpCount[i] = make([]setInfo, len(z.serverPools[i].sets))
    	}
    
    	storageInfo := z.StorageInfo(ctx, false)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  7. pkg/kubelet/pluginmanager/pluginwatcher/README.md

    
    ## gRPC Service Lifecycle
    
    For any discovered plugin, kubelet will issue a Registration.GetInfo gRPC call
    to get plugin type, name, endpoint and supported service API versions.
    
    If any of the following steps in registration fails, on retry registration will
    start from scratch:
    - Registration.GetInfo is called against socket.
    - Validate is called against internal plugin type handler.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:00:59 UTC 2019
    - 3.6K bytes
    - Viewed (0)
  8. internal/disk/stat_netbsd.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package disk
    
    import (
    	"errors"
    	"fmt"
    
    	"golang.org/x/sys/unix"
    )
    
    // GetInfo returns total and free bytes available in a directory, e.g. `/`.
    func GetInfo(path string, _ bool) (info Info, err error) {
    	s := unix.Statvfs_t{}
    	if err = unix.Statvfs(path, &s); err != nil {
    		return Info{}, err
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 26 19:34:50 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. internal/disk/stat_bsd.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package disk
    
    import (
    	"errors"
    	"fmt"
    	"syscall"
    )
    
    // GetInfo returns total and free bytes available in a directory, e.g. `/`.
    func GetInfo(path string, _ bool) (info Info, err error) {
    	s := syscall.Statfs_t{}
    	err = syscall.Statfs(path, &s)
    	if err != nil {
    		return Info{}, err
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 26 19:34:50 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationResponse.java

    
        /**
         * @return the filesystem info
         */
        public FileSystemInformation getInfo () {
            return this.info;
        }
    
    
        /**
         * @param clazz
         * @return the filesystem info
         * @throws CIFSException
         */
        @SuppressWarnings ( "unchecked" )
        public <T extends FileSystemInformation> T getInfo ( Class<T> clazz ) throws CIFSException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.2K bytes
    - Viewed (0)
Back to top