Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for moduleDir (0.15 sec)

  1. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    			line, mod = line[:i], line[i+1:]
    		}
    		if i := bytes.Index(line, slashSlash); i >= 0 {
    			line = line[:i]
    		}
    		line = bytes.TrimSpace(line)
    		if !bytes.HasPrefix(line, moduleStr) {
    			continue
    		}
    		line = line[len(moduleStr):]
    		n := len(line)
    		line = bytes.TrimSpace(line)
    		if len(line) == n || len(line) == 0 {
    			continue
    		}
    
    		if line[0] == '"' || line[0] == '`' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintWriter.kt

        }
    
        override fun onChangingModuleResolve(moduleId: ModuleComponentIdentifier, expiry: Expiry) {
            val expireAt = host.buildStartTime + expiry.keepFor.toMillis()
            onChangingValue(ConfigurationCacheFingerprint.ChangingModule(moduleId.displayName, expireAt))
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  3. src/internal/syscall/windows/syscall_windows.go

    const (
    	// flags for CreateToolhelp32Snapshot
    	TH32CS_SNAPMODULE   = 0x08
    	TH32CS_SNAPMODULE32 = 0x10
    )
    
    const MAX_MODULE_NAME32 = 255
    
    type ModuleEntry32 struct {
    	Size         uint32
    	ModuleID     uint32
    	ProcessID    uint32
    	GlblcntUsage uint32
    	ProccntUsage uint32
    	ModBaseAddr  uintptr
    	ModBaseSize  uint32
    	ModuleHandle syscall.Handle
    	Module       [MAX_MODULE_NAME32 + 1]uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. api/go1.4.txt

    pkg syscall (windows-386), type ProcessEntry32 struct, ExeFile [260]uint16
    pkg syscall (windows-386), type ProcessEntry32 struct, Flags uint32
    pkg syscall (windows-386), type ProcessEntry32 struct, ModuleID uint32
    pkg syscall (windows-386), type ProcessEntry32 struct, ParentProcessID uint32
    pkg syscall (windows-386), type ProcessEntry32 struct, PriClassBase int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 12 03:01:01 UTC 2014
    - 34K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/IdeaPlugin.java

                @Override
                public PathFactory call() {
                    final PathFactory factory = new PathFactory();
                    factory.addPathVariable("MODULE_DIR", task.get().getOutputFile().getParentFile());
                    for (Map.Entry<String, File> entry : module.getPathVariables().entrySet()) {
                        factory.addPathVariable(entry.getKey(), entry.getValue());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 14:00:13 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  6. src/syscall/types_windows.go

    	Thread    Handle
    	ProcessId uint32
    	ThreadId  uint32
    }
    
    type ProcessEntry32 struct {
    	Size            uint32
    	Usage           uint32
    	ProcessID       uint32
    	DefaultHeapID   uintptr
    	ModuleID        uint32
    	Threads         uint32
    	ParentProcessID uint32
    	PriClassBase    int32
    	Flags           uint32
    	ExeFile         [MAX_PATH]uint16
    }
    
    type Systemtime struct {
    	Year         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)
  7. docs/tr/docs/alternatives.md

    Kullanımı çok kolay ve sezgisel, kolaylıkla genişletilebilecek ve modüler bileşenlere sahip olacak şekilde tasarlandı.
    
    Sahip olduğu bir kaç özellik:
    
    * Cidden etkileyici bir performans.
    * WebSocket desteği.
    * İşlem-içi arka plan görevleri.
    * Başlatma ve kapatma olayları.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
Back to top