Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 477 for lombok (0.22 sec)

  1. platforms/jvm/scala/src/integTest/groovy/org/gradle/integtests/ScalaAnnotationProcessingIntegrationTest.groovy

            when:
            fails 'compileScala'
    
            then:
            skipped(':compileJava')
            executedAndNotSkipped(':compileScala')
        }
    
        // https://github.com/rzwitserloot/lombok/issues/2681
        @Requires(UnitTestPreconditions.Jdk15OrEarlier)
        def "can use external annotation processor for Java class, from processor path"() {
            given:
            buildFile << basicScalaProject()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractSmokeTest.groovy

            // https://plugins.gradle.org/plugin/com.google.cloud.tools.jib
            static jib = Versions.of("3.4.2")
    
            // https://plugins.gradle.org/plugin/io.freefair.lombok
            static lombok = Versions.of("8.6")
    
            // https://plugins.gradle.org/plugin/com.moowork.node
            static node = Versions.of("1.3.1")
    
            // https://plugins.gradle.org/plugin/com.github.node-gradle.node
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 08:14:32 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. .space/CODEOWNERS

    /libraries/tools/kotlin-gradle-statistics/ "Kotlin Build Tools"
    /libraries/tools/kotlin-lombok/ "Kotlin Build Tools"
    /libraries/tools/kotlin-main-kts/ "Kotlin Compiler Core"
    /libraries/tools/kotlin-main-kts-test/ "Kotlin Compiler Core"
    /libraries/tools/kotlin-maven-allopen/ "Kotlin Build Tools"
    /libraries/tools/kotlin-maven-lombok/ "Kotlin Build Tools"
    /libraries/tools/kotlin-maven-noarg/ "Kotlin Build Tools"
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:55:49 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

    | link:https://github.com/JakeWharton/butterknife/commit/2acac62c7354fee46a5201d50a4712732f6dd1ed[10.2.0]
    | N/A
    
    | link:https://github.com/rzwitserloot/lombok[Lombok]
    | link:https://github.com/rzwitserloot/lombok/releases/tag/v1.16.22[1.16.22]
    | N/A
    
    | DataBinding
    | link:https://issuetracker.google.com/issues/110061530#comment28[AGP 3.5.0-alpha5]
    | Hidden behind a feature toggle
    
    | Dagger
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  5. src/runtime/netpoll.go

    			pd.rrun = true
    		}
    	} else if pd.rd != rd0 || combo != combo0 {
    		pd.rseq++ // invalidate current timers
    		if pd.rd > 0 {
    			pd.rt.modify(pd.rd, 0, rtf, pd.makeArg(), pd.rseq)
    		} else {
    			pd.rt.stop()
    			pd.rrun = false
    		}
    	}
    	if !pd.wrun {
    		if pd.wd > 0 && !combo {
    			pd.wt.modify(pd.wd, 0, netpollWriteDeadline, pd.makeArg(), pd.wseq)
    			pd.wrun = true
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/cpumanager/cpu_assignment.go

    				})
    			}
    
    			// If the best "balance score" for this combo is less than the
    			// lowest "balance score" of all previous combos, then update this
    			// combo (and remainder set) to be the best one found so far.
    			if bestLocalBalance < bestBalance {
    				bestBalance = bestLocalBalance
    				bestRemainder = bestLocalRemainder
    				bestCombo = combo
    			}
    
    			return Continue
    		})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 23:56:21 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/shortcircuit.go

    }
    
    // shortcircuitBlock checks for a CFG in which an If block
    // has as its control value a Phi that has a ConstBool arg.
    // In some such cases, we can rewrite the CFG into a flatter form.
    //
    // (1) Look for a CFG of the form
    //
    //	p   other pred(s)
    //	 \ /
    //	  b
    //	 / \
    //	t   other succ
    //
    // in which b is an If block containing a single phi value with a single use (b's Control),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 03 17:47:02 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part1_gradle_init.adoc

    ----
    $ gradle init --type java-application  --dsl groovy
    ----
    =====
    
    Select defaults for any additional prompts.
    
    NOTE: In this tutorial, all examples are macOS based.
    
    When you are done, the directory should look as follows:
    
    [.multi-language-sample]
    =====
    [source, kotlin]
    ----
    .
    ├── .gradle                 // <1>
    │   ├── libs.version.toml   // <2>
    │   └── ⋮
    ├── gradle                  // <3>
    │   └── wrapper
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/LegacyWindowsSdkLocator.java

                            addSdk(sdkDir, version, name);
                        } else {
                            LOGGER.debug("Ignoring candidate Windows SDK directory {} as it does not look like a Windows SDK installation.", sdkDir);
                        }
                    } catch (MissingRegistryEntryException e) {
                        // Ignore the subkey if it doesn't have a folder and version
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromGroovyDslIntegrationTest.groovy

                problem("Build file 'sub/sub-a/build.gradle': line 2: Project ':sub:sub-a' cannot dynamically look up a property in the parent project ':sub'")
                problem("Build file 'sub/sub-b/build.gradle': line 2: Project ':sub:sub-b' cannot dynamically look up a property in the parent project ':sub'")
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 32.4K bytes
    - Viewed (0)
Back to top