Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 477 for lombok (0.15 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/intro_multi_project_builds.adoc

    [[sec:project_structure]]
    == Multi-Project structure
    
    The following represents the structure of a multi-project build that contains two subprojects:
    
    image::multi-project-structure.png[]
    
    The directory structure should look as follows:
    
    ----
    ├── .gradle
    │   └── ⋮
    ├── gradle
    │   ├── libs.version.toml
    │   └── wrapper
    ├── gradlew
    ├── gradlew.bat
    ├── settings.gradle.kts  // <1>
    ├── sub-project-1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    === Plugin Marker Artifacts
    
    Since the `plugins{}` DSL block only allows for declaring plugins by their globally unique plugin `id` and `version` properties, Gradle needs a way to look up the coordinates of the plugin implementation artifact.
    
    To do so, Gradle will look for a Plugin Marker Artifact with the coordinates `plugin.id:plugin.id.gradle.plugin:plugin.version`.
    This marker needs to have a dependency on the actual plugin implementation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/DefaultModuleRegistry.java

                    classpathJars.put(jarFileName, classpathFile);
                    if (gradleInstallation == null) {
                        // Store the name without version as well, so we can look it up later
                        // See getNameOfJarReplacedByTestDistributionWithoutVersion why we are doing this
                        Optional<String> replacedPrefix = getNameOfJarReplacedByTestDistributionWithoutVersion(jarFileName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. src/runtime/mgcstack.go

    // the code. See cmd/compile/internal/gc/plive.go for that analysis.
    //
    // However, when we take the address of a stack variable, determining
    // whether that variable is still live is less clear. We can still
    // look for static accesses, but accesses through a pointer to the
    // variable are difficult in general to track statically. That pointer
    // can be passed among functions on the stack, conditionally retained,
    // etc.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 21:06:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.jar

    named org.apache.commons.logging.LogFactory. Use the JDK 1.3 JAR Services Discovery mechanism (see http://java.sun.com/j2se/1.3/docs/guide/jar/jar.html for more information) to look for a resource named META-INF/services/org.apache.commons.logging.LogFactory whose first line is assumed to contain the desired class name. Look for a properties file named commons-logging.properties visible in the application class path, with a property named org.apache.commons.logging.LogFactory defining the desired implementation...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  6. src/html/template/transition.go

    	} else if i != len(s) {
    		c.state = stateAfterName
    	}
    	return c, i
    }
    
    // tAfterName is the context transition function for stateAfterName.
    func tAfterName(c context, s []byte) (context, int) {
    	// Look for the start of the value.
    	i := eatWhiteSpace(s, 0)
    	if i == len(s) {
    		return c, len(s)
    	} else if s[i] != '=' {
    		// Occurs due to tag ending '>', and valueless attribute.
    		c.state = stateTag
    		return c, i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. src/encoding/json/stream.go

    	dec.scan.reset()
    
    	scanp := dec.scanp
    	var err error
    Input:
    	// help the compiler see that scanp is never negative, so it can remove
    	// some bounds checks below.
    	for scanp >= 0 {
    
    		// Look in the buffer for a new value.
    		for ; scanp < len(dec.buf); scanp++ {
    			c := dec.buf[scanp]
    			dec.scan.bytes++
    			switch dec.scan.step(&dec.scan, c) {
    			case scanEnd:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_debugging.adoc

    WARNING: When running this test make sure that you have no `remote` cache configured, and storing in the `local` cache is enabled.
    These are the default settings.
    
    This would look something like this on the command-line:
    
    [listing]
    ----
    $ rm -rf ~/.gradle/caches/build-cache-1 <1>
    $ ./gradlew clean --quiet <2>
    $ ./gradlew assemble --build-cache <3>
    
    BUILD SUCCESSFUL
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 15K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/Functions.java

        @Override
        public int hashCode() {
          return Objects.hashCode(map, defaultValue);
        }
    
        @Override
        public String toString() {
          // TODO(cpovirk): maybe remove "defaultValue=" to make this look like the method call does
          return "Functions.forMap(" + map + ", defaultValue=" + defaultValue + ")";
        }
    
        private static final long serialVersionUID = 0;
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/Functions.java

        @Override
        public int hashCode() {
          return Objects.hashCode(map, defaultValue);
        }
    
        @Override
        public String toString() {
          // TODO(cpovirk): maybe remove "defaultValue=" to make this look like the method call does
          return "Functions.forMap(" + map + ", defaultValue=" + defaultValue + ")";
        }
    
        private static final long serialVersionUID = 0;
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top