Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 238 for shminfo (0.53 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. src/runtime/defs_solaris.go

    /*
    Input to cgo.
    
    GOARCH=amd64 go tool cgo -cdefs defs_solaris.go >defs_solaris_amd64.h
    */
    
    package runtime
    
    /*
    #include <sys/types.h>
    #include <sys/mman.h>
    #include <sys/select.h>
    #include <sys/siginfo.h>
    #include <sys/signal.h>
    #include <sys/stat.h>
    #include <sys/time.h>
    #include <sys/ucontext.h>
    #include <sys/regset.h>
    #include <sys/unistd.h>
    #include <sys/fork.h>
    #include <sys/port.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 17:47:39 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. src/internal/cpu/cpu_no_name.go

    // If the CPU name can not be determined an empty string is returned.
    //
    // Implementations that use the Operating System (e.g. sysctl or /sys/)
    // to gather CPU information for display should be placed in internal/sysinfo.
    func Name() string {
    	// "A CPU has no name".
    	return ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 20:05:43 UTC 2022
    - 620 bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultVersionResolver.java

            VersionInfo srcInfo = infos.get(srcKey);
            VersionInfo dstInfo = infos.get(dstKey);
    
            if (dstInfo == null
                    || (srcInfo != null
                            && dstInfo.isOutdated(srcInfo.timestamp)
                            && srcInfo.repository != dstInfo.repository)) {
                infos.put(dstKey, srcInfo);
            }
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  5. src/runtime/vdso_linux.go

    	if !info.valid {
    		return
    	}
    
    	apply := func(symIndex uint32, k vdsoSymbolKey) bool {
    		sym := &info.symtab[symIndex]
    		typ := _ELF_ST_TYPE(sym.st_info)
    		bind := _ELF_ST_BIND(sym.st_info)
    		// On ppc64x, VDSO functions are of type _STT_NOTYPE.
    		if typ != _STT_FUNC && typ != _STT_NOTYPE || bind != _STB_GLOBAL && bind != _STB_WEAK || sym.st_shndx == _SHN_UNDEF {
    			return false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 19:32:35 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/exec/SuggestCreator.java

            }
        }
    
        static void initializeProbes() {
            // Force probes to be loaded
            ProcessProbe.getInstance();
            OsProbe.getInstance();
            JvmInfo.jvmInfo();
        }
    
        public static void main(final String[] args) {
            final Options options = new Options();
            final CmdLineParser parser = new CmdLineParser(options);
            try {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. src/runtime/export_debug_test.go

    	mp      *m
    	fv      *funcval
    	regArgs *abi.RegArgs
    	argp    unsafe.Pointer
    	argSize uintptr
    	panic   any
    
    	handleF func(info *siginfo, ctxt *sigctxt, gp2 *g) bool
    
    	err     plainError
    	done    note
    	sigCtxt sigContext
    }
    
    func (h *debugCallHandler) inject(info *siginfo, ctxt *sigctxt, gp2 *g) bool {
    	// TODO(49370): This code is riddled with write barriers, but called from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. pkg/kubelet/util/boottime_util_linux.go

    )
    
    // GetBootTime returns the time at which the machine was started, truncated to the nearest second
    func GetBootTime() (time.Time, error) {
    	currentTime := time.Now()
    	var info unix.Sysinfo_t
    	if err := unix.Sysinfo(&info); err != nil {
    		return time.Time{}, fmt.Errorf("error getting system uptime: %s", err)
    	}
    	return currentTime.Add(-time.Duration(info.Uptime) * time.Second).Truncate(time.Second), nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  9. cmd/erasure-sets.go

    			srcInfo.Reader.Close() // We are not interested in the reader stream at this point close it.
    			return srcSet.CopyObject(ctx, srcBucket, srcObject, dstBucket, dstObject, srcInfo, srcOpts, dstOpts)
    		}
    		// Destination is not versioned and source version ID is empty
    		// perform an in-place update.
    		if !dstOpts.Versioned && srcOpts.VersionID == "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  10. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultVersionResolver.java

            VersionInfo srcInfo = infos.get(srcKey);
            VersionInfo dstInfo = infos.get(dstKey);
    
            if (dstInfo == null
                    || (srcInfo != null
                            && dstInfo.isOutdated(srcInfo.timestamp)
                            && srcInfo.repository != dstInfo.repository)) {
                infos.put(dstKey, srcInfo);
            }
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 20.2K bytes
    - Viewed (0)
Back to top