Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 3,005 for predates (0.15 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/README.md

    The following code-generators are used:
    
    * `deepcopy-gen` - creates a method `func (t* T) DeepCopy() *T` for each type T
    * `client-gen` - creates typed clientsets for CustomResource APIGroups
    * `informer-gen` - creates informers for CustomResources which offer an event based
    interface to react on changes of CustomResources on the server
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 23 02:28:04 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/core-plugins/distribution_plugin.adoc

    `distZip` — link:{groovyDslPath}/org.gradle.api.tasks.bundling.Zip.html[Zip]::
    Creates a ZIP archive of the distribution contents.
    
    `distTar` — link:{groovyDslPath}/org.gradle.api.Task.html[Task]::
    Creates a TAR archive of the distribution contents.
    
    `assembleDist` — link:{groovyDslPath}/org.gradle.api.Task.html[Task]::
    _Depends on_: `distTar`, `distZip`
    +
    Creates ZIP and TAR archives of the distribution contents.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/GroovyApplicationInitIntegrationTest.groovy

        public static final String SAMPLE_APP_CLASS = "org/example/App.groovy"
        public static final String SAMPLE_APP_TEST_CLASS = "org/example/AppTest.groovy"
    
        @Override
        String subprojectName() { 'app' }
    
        def "creates sample source if no source present with #scriptDsl build scripts"() {
            when:
            run('init', '--type', 'groovy-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
    - 6.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/dependencies/DefaultDependencyConstraintHandlerTest.groovy

            _ * configurationContainer.getByName(UNKNOWN_TEST_CONF_NAME) >> { throw new UnknownDomainObjectException("") }
            _ * configuration.dependencyConstraints >> dependencyConstraintSet
        }
    
        void "creates and adds a dependency constraint from some notation"() {
            def dependencyConstraint = Mock(DependencyConstraint)
    
            when:
            def result = dependencyConstraintHandler.add(TEST_CONF_NAME, "someNotation")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 22:19:06 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/plugins/MavenPublishPluginTest.groovy

            publishing.publications.test instanceof DefaultMavenPublication
        }
    
        def "creates generation tasks for publication"() {
            when:
            publishing.publications.create("test", MavenPublication)
    
            then:
            project.tasks["generatePomFileForTestPublication"] instanceof GenerateMavenPom
        }
    
        def "creates generation tasks for publication with component"() {
            def component = Stub(TestComponent)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  6. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/tasks/testing/TestFailure.java

        }
    
        /**
         * Creates a new TestFailure instance from a test framework failure.
         *
         * @param failure the failure
         * @return the new instance
         */
        public static TestFailure fromTestFrameworkFailure(Throwable failure) {
            return fromTestFrameworkFailure(failure, null);
        }
    
        /**
         * Creates a new TestFailure instance from a test framework failure.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/concurrent/src/main/java/org/gradle/internal/concurrent/ExecutorFactory.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    import java.util.concurrent.TimeUnit;
    
    @ServiceScope(Scope.Global.class)
    public interface ExecutorFactory {
        /**
         * Creates an executor which can run multiple actions concurrently. It is the caller's responsibility to stop the executor.
         *
         * The executor will collect failures thrown by actions and rethrow when the executor is stopped.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/mock/discovery.go

    			Labels:          map[string]string{"version": fmt.Sprintf("v%d", version)},
    			Locality:        locality,
    		},
    		Service:     service,
    		ServicePort: port,
    	}
    }
    
    // MakeService creates a memory service
    func MakeService(args ServiceArgs) *model.Service {
    	return &model.Service{
    		CreationTime: time.Now(),
    		Hostname:     args.Hostname,
    		ClusterVIPs: model.AddressMap{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 18:40:05 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. src/encoding/gob/type_test.go

    	if a3int != newa3int {
    		t.Errorf("second registration of [3]int creates new type")
    	}
    	var a4 [4]int
    	a4int := getTypeUnlocked("goo", reflect.TypeOf(a4))
    	if a3int == a4int {
    		t.Errorf("registration of [3]int creates same type as [4]int")
    	}
    	var b3 [3]bool
    	a3bool := getTypeUnlocked("", reflect.TypeOf(b3))
    	if a3int == a3bool {
    		t.Errorf("registration of [3]bool creates same type as [3]int")
    	}
    	str := a3bool.string()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:26:13 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    source. package org.hamcrest; public class CoreMatchers { /** * Creates a matcher that matches if the examined object matches <b>ALL</b> of the specified matchers. * <p/> * For example: * <pre>assertThat("myValue", allOf(startsWith("my"), containsString("Val")))</pre> */ public static <T> org.hamcrest.Matcher<T> allOf(java.lang.Iterable<org.hamcrest.Matcher<? super T>> matchers) { return org.hamcrest.core.AllOf.<T>allOf(matchers); } /** * Creates a matcher that matches if the examined object matches <b>ALL</b>...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 31.9K bytes
    - Viewed (0)
Back to top