Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 884 for Forked (0.39 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationFactory.java

                    role
            );
            instance.addMutationValidator(rootComponentMetadataBuilder.getValidator());
            return instance;
        }
    
        /**
         * Creates a new locked resolvable configuration instance.
         */
        DefaultResolvableConfiguration createResolvable(
            String name,
            ConfigurationsProvider configurationsProvider,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/work/DefaultWorkerLeaseServiceWorkerLeaseTest.groovy

            e.message == 'No worker lease associated with the current thread'
    
            when:
            registry.startWorker().leaseFinish()
            registry.currentWorkerLease
    
            then:
            e = thrown()
            e.message == 'No worker lease associated with the current thread'
    
            cleanup:
            registry?.stop()
        }
    
        def "can use worker lease as resource lock"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolutionStrategy.java

     *     preferProjectModules()
     *
     *     // force certain versions of dependencies (including transitive)
     *     //  *append new forced modules:
     *     force 'asm:asm-all:3.3.1', 'commons-io:commons-io:1.4'
     *     //  *replace existing forced modules with new ones:
     *     forcedModules = ['asm:asm-all:3.3.1']
     *
     *     // add dependency substitution rules
     *     dependencySubstitution {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 13:05:50 UTC 2022
    - 16K bytes
    - Viewed (0)
  4. maven-core/plugin-manager.txt

    When a plugin has a complete and valid configuration, the plugin would be looked up in the Plexus container and be ready to perform any operations requested of it.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 22:45:13 UTC 2022
    - 12.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/cgocall/cgocall.go

    // files using partial type information. However, Analyzers in the new
    // analysis API are presented with the type-checked, "cooked" Go ASTs
    // resulting from cgo-processing files, so we must choose between
    // working with the cooked file generated by cgo (which was tried but
    // proved fragile) or locating the raw cgo file (e.g. from //line
    // directives) and working with that, as we now do.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modfetch/fetch.go

    				unrecoverableErr = err
    				return err
    			}
    		}
    		return err
    	})
    	if err != nil {
    		return err
    	}
    
    	// Double-check that the paths within the zip file are well-formed.
    	//
    	// TODO(bcmills): There is a similar check within the Unzip function. Can we eliminate one?
    	fi, err := f.Stat()
    	if err != nil {
    		return err
    	}
    	z, err := zip.NewReader(f, fi.Size())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationRoleUsageIntegrationTest.groovy

        }
        // endregion Warnings
    
        private void assertUsageLockedFailure(String configurationName, String roleName = null) {
            String suffix = roleName ? "as it was locked upon creation to the role: '$roleName'." : "as it has been locked."
            failure.assertHasCause("Cannot change the allowed usage of configuration ':$configurationName', $suffix")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 01:42:49 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/internal/counter/counter.go

    				sum := c.add(uint64(n))
    				debugPrintf("Add %q += %d: count=%d\n", c.name, n, sum)
    			}
    			c.releaseReader(state)
    			return
    
    		case state.locked():
    			if !c.state.update(&state, state.addExtra(uint64(n))) {
    				continue
    			}
    			debugPrintf("Add %q += %d: locked extra=%d\n", c.name, n, state.extra())
    			return
    
    		case !state.havePtr():
    			if !c.state.update(&state, state.addExtra(uint64(n)).setLocked()) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. docs/bucket/versioning/README.md

    > NOTE: Server side replication is supported for idempotent versions on delete marked objects.
    
    ### Motivation
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 04 21:43:52 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseClasspath.java

     *     //if you want to expose test classes to dependent projects
     *     containsTestFixtures = true
     *
     *     //customizing which Eclipse source directories should be marked as test
     *     testSourceSets = [sourceSets.test]
     *
     *     //customizing which dependencies should be marked as test on the project's classpath
     *     testConfigurations = [configurations.testCompileClasspath, configurations.testRuntimeClasspath]
     *   }
     * }
     * </pre>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.8K bytes
    - Viewed (0)
Back to top