Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 124 for moduleDir (0.2 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/Intersections.java

                super(GroupExclude.class, ModuleExclude.class);
            }
    
            @Override
            public ExcludeSpec doIntersect(GroupExclude left, ModuleExclude right, ExcludeFactory factory) {
                return factory.moduleId(DefaultModuleIdentifier.newId(left.getGroup(), right.getModule()));
            }
        }
    
        @NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 21:03:05 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  2. docs/tr/docs/project-generation.md

        * Docker ile multi-stage yapı, böylece kodu derlemeniz, kaydetmeniz veya işlemeniz gerekmez.
        * Derleme zamanında Frontend testi (devre dışı bırakılabilir).
        * Mümkün olduğu kadar modüler yapılmıştır, bu nedenle kutudan çıktığı gibi çalışır, ancak Vue CLI ile yeniden oluşturabilir veya ihtiyaç duyduğunuz şekilde oluşturabilir ve istediğinizi yeniden kullanabilirsiniz.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:55:41 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaModuleIntegrationTest.groovy

      <component name="NewModuleRootManager" inherit-compiler-output="true">
        <exclude-output/>
        <orderEntry type="inheritedJdk"/>
        <content url="file://$MODULE_DIR$/">
          <excludeFolder url="file://$MODULE_DIR$/folderThatWasExcludedEarlier"/>
        </content>
        <orderEntry type="sourceFolder" forTests="false"/>
      </component>
      <component name="ModuleRootManager"/>
    </module>'''
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                    if (parent != null) {
                        //verify that the parsed descriptor is the correct parent module.
                        ModuleId expected = IvyUtil.createModuleId(parentOrganisation, parentModule);
                        ModuleId pid = parent.getModuleRevisionId().getModuleId();
                        if (!expected.equals(pid)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top