Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for systemTime (0.13 sec)

  1. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java

        private byte[] serverGuid = new byte[16];
        private int capabilities;
        private int commonCapabilities;
        private int maxTransactSize;
        private int maxReadSize;
        private int maxWriteSize;
        private long systemTime;
        private long serverStartTime;
        private NegotiateContextResponse[] negotiateContexts;
        private byte[] securityBuffer;
        private DialectVersion selectedDialect;
    
        private boolean supportsEncryption;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Mar 22 10:09:46 UTC 2020
    - 17.6K bytes
    - Viewed (0)
  2. src/syscall/types_windows.go

    	ExeFile         [MAX_PATH]uint16
    }
    
    type Systemtime struct {
    	Year         uint16
    	Month        uint16
    	DayOfWeek    uint16
    	Day          uint16
    	Hour         uint16
    	Minute       uint16
    	Second       uint16
    	Milliseconds uint16
    }
    
    type Timezoneinformation struct {
    	Bias         int32
    	StandardName [32]uint16
    	StandardDate Systemtime
    	StandardBias int32
    	DaylightName [32]uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. src/os/exec.go

    func (p *ProcessState) UserTime() time.Duration {
    	return p.userTime()
    }
    
    // SystemTime returns the system CPU time of the exited process and its children.
    func (p *ProcessState) SystemTime() time.Duration {
    	return p.systemTime()
    }
    
    // Exited reports whether the program has exited.
    // On Unix systems this reports true if the program exited due to calling exit,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. src/internal/syscall/windows/registry/registry_test.go

    type DynamicTimezoneinformation struct {
    	Bias                        int32
    	StandardName                [32]uint16
    	StandardDate                syscall.Systemtime
    	StandardBias                int32
    	DaylightName                [32]uint16
    	DaylightDate                syscall.Systemtime
    	DaylightBias                int32
    	TimeZoneKeyName             [128]uint16
    	DynamicDaylightTimeDisabled uint8
    }
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 19:19:00 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/shell.go

    		aj := a.json
    		aj.Cmd = append(aj.Cmd, joinUnambiguously(cmdline))
    		aj.CmdReal += time.Since(start)
    		if ps := cmd.ProcessState; ps != nil {
    			aj.CmdUser += ps.UserTime()
    			aj.CmdSys += ps.SystemTime()
    		}
    	}
    
    	// err can be something like 'exit status 1'.
    	// Add information about what program was running.
    	// Note that if buf.Bytes() is non-empty, the caller usually
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/symbolizer/symbolizer.go

    	if fn.Name != "" && fn.SystemName != fn.Name {
    		return // Already demangled.
    	}
    	// Copy the options because they may be updated by the call.
    	o := make([]demangle.Option, len(options))
    	copy(o, options)
    	if demangled := demangle.Filter(fn.SystemName, o...); demangled != fn.SystemName {
    		fn.Name = demangled
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. src/internal/profile/profile.go

    			if fn := l.Line[li].Function; fn != nil {
    				lnStr = fmt.Sprintf("%s %s:%d s=%d",
    					fn.Name,
    					fn.Filename,
    					l.Line[li].Line,
    					fn.StartLine)
    				if fn.Name != fn.SystemName {
    					lnStr = lnStr + "(" + fn.SystemName + ")"
    				}
    			}
    			ss = append(ss, locStr+lnStr)
    			// Do not print location details past the first line
    			locStr = "             "
    		}
    	}
    
    	ss = append(ss, "Mappings")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:57:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultArtifactResolver.java

            }
    
            if (Artifact.SCOPE_SYSTEM.equals(artifact.getScope())) {
                File systemFile = artifact.getFile();
    
                if (systemFile == null) {
                    throw new ArtifactNotFoundException("System artifact: " + artifact + " has no file attached", artifact);
                }
    
                if (!systemFile.exists()) {
                    throw new ArtifactNotFoundException(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  9. src/internal/profile/merge.go

    	}
    	k := src.key()
    	if f, ok := pm.functions[k]; ok {
    		pm.functionsByID[src.ID] = f
    		return f
    	}
    	f := &Function{
    		ID:         uint64(len(pm.p.Function) + 1),
    		Name:       src.Name,
    		SystemName: src.SystemName,
    		Filename:   src.Filename,
    		StartLine:  src.StartLine,
    	}
    	pm.functions[k] = f
    	pm.functionsByID[src.ID] = f
    	pm.p.Function = append(pm.p.Function, f)
    	return f
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 17 19:35:56 UTC 2020
    - 11.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/profile/merge.go

    	}
    	k := src.key()
    	if f, ok := pm.functions[k]; ok {
    		pm.functionsByID[src.ID] = f
    		return f
    	}
    	f := &Function{
    		ID:         uint64(len(pm.p.Function) + 1),
    		Name:       src.Name,
    		SystemName: src.SystemName,
    		Filename:   src.Filename,
    		StartLine:  src.StartLine,
    	}
    	pm.functions[k] = f
    	pm.functionsByID[src.ID] = f
    	pm.p.Function = append(pm.p.Function, f)
    	return f
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top