Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,444 for predates (0.28 sec)

  1. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/dispatch/ContextClassLoaderProxy.java

     * limitations under the License.
     */
    
    package org.gradle.internal.dispatch;
    
    /**
     * Creates a proxy object which sets the context ClassLoader when invoking methods on the target object.
     */
    public class ContextClassLoaderProxy<T> {
        private final ProxyDispatchAdapter<T> adapter;
    
        /**
         * Creates a proxy which dispatches to the given target object.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/KotlinApplicationInitIntegrationTest.groovy

            then:
            dslFixtureFor(KOTLIN).assertGradleFilesGenerated()
        }
    
        @Requires(value = UnitTestPreconditions.KotlinOnlySupportsJdk21Earlier.class)
        def "creates sample source if no source present with #scriptDsl build scripts"() {
            when:
            run('init', '--type', 'kotlin-application', '--dsl', scriptDsl.id, '--java-version', JavaVersion.current().majorVersion)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/CalculatedValueFactory.java

    import java.util.function.Supplier;
    
    /**
     * A factory for {@link CalculatedValue}.
     */
    @ServiceScope(Scope.BuildSession.class)
    public interface CalculatedValueFactory {
        /**
         * Creates a calculated value that has no dependencies and that does not access any mutable model state.
         */
        <T> CalculatedValue<T> create(DisplayName displayName, Supplier<? extends T> supplier);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:21:17 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/CrossBuildInMemoryCacheFactory.java

     * All other values are referenced only by weak or soft references, allowing them to be collected.
     */
    @ThreadSafe
    @ServiceScope(Global.class)
    public interface CrossBuildInMemoryCacheFactory {
        /**
         * Creates a new cache instance. Keys are always referenced using strong references, values by strong or soft references depending on their usage.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/KotlinLibraryInitIntegrationTest.groovy

            then:
            dslFixtureFor(KOTLIN).assertGradleFilesGenerated()
        }
    
        @Requires(value = UnitTestPreconditions.KotlinOnlySupportsJdk21Earlier.class)
        def "creates sample source if no source present with #scriptDsl build scripts"() {
            def dslFixture = dslFixtureFor(scriptDsl)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/LinkedHashMultiset.java

    public final class LinkedHashMultiset<E extends @Nullable Object>
        extends AbstractMapBasedMultiset<E> {
    
      /** Creates a new, empty {@code LinkedHashMultiset} using the default initial capacity. */
      public static <E extends @Nullable Object> LinkedHashMultiset<E> create() {
        return new LinkedHashMultiset<>();
      }
    
      /**
       * Creates a new, empty {@code LinkedHashMultiset} with the specified expected number of distinct
       * elements.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. pkg/kubelet/container/helpers.go

    	// GetOrCreateUserNamespaceMappings returns the configuration for the sandbox user namespace
    	GetOrCreateUserNamespaceMappings(pod *v1.Pod, runtimeHandler string) (*runtimeapi.UserNamespace, error)
    
    	// PrepareDynamicResources prepares resources for a pod.
    	PrepareDynamicResources(pod *v1.Pod) error
    
    	// UnprepareDynamicResources unprepares resources for a a pod.
    	UnprepareDynamicResources(pod *v1.Pod) error
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/file/ProjectLayout.java

        /**
         * Creates a {@link RegularFile} provider whose location is calculated from the given {@link Provider}.
         * <p>
         * File system locations based on relative paths will be
         * resolved against this layout's reference location, as defined by {@link #getProjectDirectory()}.
         */
        Provider<RegularFile> file(Provider<File> file);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/certs/renewal/readwriter_test.go

    )
    
    func TestPKICertificateReadWriter(t *testing.T) {
    	// creates a tmp folder
    	dir := testutil.SetupTempDir(t)
    	defer os.RemoveAll(dir)
    
    	// creates a certificate
    	cert := writeTestCertificate(t, dir, "test", testCACert, testCAKey, testCertOrganization, time.Time{}, time.Time{})
    
    	// Creates a pkiCertificateReadWriter
    	pkiReadWriter := newPKICertificateReadWriter(dir, "test")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:17:24 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/TestUnhashableCollectionGenerator.java

    import com.google.common.annotations.GwtCompatible;
    import com.google.common.collect.testing.SampleElements.Unhashables;
    import java.util.Collection;
    import java.util.List;
    
    /**
     * Creates collections containing unhashable sample elements, to be tested.
     *
     * @author Regina O'Dell
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top