Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 337 for lombok (0.29 sec)

  1. 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)
  2. .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 (2)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part3_gradle_dep_man.adoc

    == Step 2. Understanding Project Dependencies
    Gradle provides excellent support for dependency management and automation.
    
    Let's take another look at our build script (the `build.gradle(.kts)` file), specifically the following section:
    [.multi-language-sample]
    =====
    [source, kotlin]
    ----
    repositories {
        // Use Maven Central for resolving dependencies.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 22:40:17 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. cmd/utils_test.go

    	res := jsonResult{}
    	if err = json.Unmarshal([]byte(strings.ReplaceAll(jsonReq, "%%", "%")), &res); err != nil {
    		t.Fatal(err)
    	}
    
    	// Look for expected method.
    	if res.Method != http.MethodGet {
    		t.Fatalf("Unexpected method %s, expected 'GET'", res.Method)
    	}
    
    	// Look for expected query values
    	expectedQuery := url.Values{}
    	expectedQuery.Set("prefix", "Hello*World*")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 23 21:28:14 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. pkg/config/validation/agent/validation_test.go

    		},
    		{
    			Drain: &durationpb.Duration{Seconds: -1},
    			Valid: false,
    		},
    	}
    	for _, combo := range combinations {
    		if got := ValidateDrainDuration(combo.Drain); (got == nil) != combo.Valid {
    			t.Errorf("Failed: got valid=%t but wanted valid=%t: %v for  Drain:%v",
    				got == nil, combo.Valid, got, combo.Drain)
    		}
    	}
    }
    
    func TestValidateMeshConfigProxyConfig(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/RepositoryHandler.java

         * to point to information related to a particular repository. A name must be unique amongst a repository group.</td></tr>
         * <tr><td><code>dirs</code></td>
         *     <td>Specifies a list of rootDirs where to look for dependencies. These are evaluated as per {@link org.gradle.api.Project#files(Object...)}</td></tr>
         * </table>
         *
         * <p>Examples:</p>
         * <pre class='autoTested'>
         * repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 03:42:11 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top