Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 128 for ptrval (0.12 sec)

  1. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/internal/DefaultPluginArtifactRepositories.java

        public DefaultPluginArtifactRepositories(Factory<DependencyResolutionServices> factory, RepositoryHandlerInternal sharedRepositories) {
            // Create a copy of the shared repository container, so that mutations (eg adding the portal repo) are not reflected in the shared container
            dependencyResolutionServices = factory.create();
            this.sharedRepositories = sharedRepositories;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 19:13:03 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. src/reflect/abi.go

    // next n integer registers.
    //
    // Bit i in ptrMap indicates whether the i'th value is a pointer.
    // n must be <= 8.
    //
    // Returns whether assignment succeeded.
    func (a *abiSeq) assignIntN(offset, size uintptr, n int, ptrMap uint8) bool {
    	if n > 8 || n < 0 {
    		panic("invalid n")
    	}
    	if ptrMap != 0 && size != goarch.PtrSize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/RepositoryOrderingIntegrationSpec.groovy

                    id 'base'
                }
    
                apply plugin: 'my-plugin'
            """.stripIndent()
    
            when:
            fails "tasks"
    
            then: "searched buildscript repository then plugin portal"
            failure.assertHasCause("Could not resolve all artifacts for configuration ':classpath'.")
            failure.assertHasCause """
                Could not find my:plugin:1.0.
                Searched in the following locations:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 11:30:21 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/test.go

    // multiple main packages.
    func recompileForTest(pmain, preal, ptest, pxtest *Package) *PackageError {
    	// The "test copy" of preal is ptest.
    	// For each package that depends on preal, make a "test copy"
    	// that depends on ptest. And so on, up the dependency tree.
    	testCopy := map[*Package]*Package{preal: ptest}
    	for _, p := range PackageList([]*Package{pmain}) {
    		if p == preal {
    			continue
    		}
    		// Copy on write.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  5. pkg/apis/apps/validation/validation.go

    	if intOrStringValue.Type != intstr.String {
    		return 0, false
    	}
    	if len(validation.IsValidPercent(intOrStringValue.StrVal)) != 0 {
    		return 0, false
    	}
    	value, _ := strconv.Atoi(intOrStringValue.StrVal[:len(intOrStringValue.StrVal)-1])
    	return value, true
    }
    
    func getIntOrPercentValue(intOrStringValue intstr.IntOrString) int {
    	value, isPercent := getPercentValue(intOrStringValue)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 06 22:11:20 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/plugin_basics.adoc

    1. **Core plugins** - Gradle develops and maintains a set of <<plugin_reference#plugin_reference,Core Plugins>>.
    2. **Community plugins** - Gradle's community shares plugins via the https://plugins.gradle.org[Gradle Plugin Portal].
    3. **Local plugins** - Gradle enables users to create custom plugins using link:{javadocPath}/org/gradle/api/Plugin.html[APIs].
    
    == Applying plugins
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 00:36:58 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part7_gradle_refs.adoc

    - Gradle's https://docs.gradle.org/current/kotlin-dsl/index.html[Kotlin DSL]
    
    To find plugins:
    
    - Gradle <<plugin_reference#plugin_reference,Core Plugins>>
    - Gradle link:https://plugins.gradle.org/[Plugin Portal]
    
    To view all Gradle releases:
    
    - https://gradle.org/releases/[Gradle Releases]
    - http://gradle.org/docs/current/release-notes[Release Notes]
    
    For Gradle support:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 22:40:17 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. tests/test_tutorial/test_dependencies/test_tutorial012.py

                "X-Token": "fake-super-secret-token",
                "X-Key": "fake-super-secret-key",
            },
        )
        assert response.status_code == 200, response.text
        assert response.json() == [{"item": "Portal Gun"}, {"item": "Plumbus"}]
    
    
    def test_get_valid_headers_users():
        response = client.get(
            "/users/",
            headers={
                "X-Token": "fake-super-secret-token",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. pkg/apis/core/fuzzer/fuzzer.go

    				switch ss.Ports[i].TargetPort.Type {
    				case intstr.Int:
    					ss.Ports[i].TargetPort.IntVal = 1 + ss.Ports[i].TargetPort.IntVal%65535 // non-zero
    				case intstr.String:
    					ss.Ports[i].TargetPort.StrVal = "x" + ss.Ports[i].TargetPort.StrVal // non-empty
    				}
    			}
    			types := []core.ServiceAffinity{core.ServiceAffinityNone, core.ServiceAffinityClientIP}
    			ss.SessionAffinity = types[c.Rand.Intn(len(types))]
    			switch ss.SessionAffinity {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 04:32:01 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/common/extensions.kt

    import jetbrains.buildServer.configs.kotlin.failureConditions.failOnText
    import jetbrains.buildServer.configs.kotlin.ui.add
    import java.util.Locale
    
    const val pluginPortalUrlOverride = "-Dorg.gradle.internal.plugins.portal.url.override=%gradle.plugins.portal.url%"
    
    fun BuildSteps.customGradle(init: GradleBuildStep.() -> Unit, custom: GradleBuildStep.() -> Unit): GradleBuildStep =
        GradleBuildStep(init)
            .apply(custom)
            .also {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (1)
Back to top