Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 471 for Initial (0.12 sec)

  1. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/server/health/gc/GarbageCollectionMonitoringIntegrationTest.groovy

        }
    
        void configureGarbageCollectionHeapEventsFor(long initial, long max, long leakRate, double gcRate) {
            configureGarbageCollectionEvents("heap", initial, max, leakRate, gcRate)
        }
    
        void configureGarbageCollectionNonHeapEventsFor(long initial, long max, long leakRate, double gcRate) {
            configureGarbageCollectionEvents("nonHeap", initial, max, leakRate, gcRate)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedScalarCollectionsIntegrationTest.groovy

            }
    
            class Rules extends RuleSource {
                static final $type<String> INITIAL = ['initial']
    
                @Model
                void createContainer(Container c) {
                    c.items = INITIAL
                }
    
                @Mutate
                void addItems(Container c) {
                    assert !c.items.is(INITIAL)
                    c.items.add 'foo'
                }
    
                @Mutate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  3. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/GitVcsIntegrationTest.groovy

            evenDeeperRepo.file('foo').text = "baz"
            evenDeeperRepo.commit('initial commit', "foo")
            deeperRepo.file('foo').text = "bar"
            deeperRepo.commit("initial commit", "foo")
            // Add submodule to repo
            deeperRepo.addSubmodule(evenDeeperRepo)
            repo.addSubmodule(deeperRepo)
            def commit = repo.commit('initial commit')
    
            settingsFile << """
                sourceControl {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/etcd/local_test.go

        - --cert-file=etcd/server.crt
        - --client-cert-auth=true
        - --data-dir=%s/etcd
        - --experimental-initial-corrupt-check=true
        - --experimental-watch-progress-notify-interval=5s
        - --initial-advertise-peer-urls=https://:2380
        - --initial-cluster==https://:2380
        - --key-file=etcd/server.key
        - --listen-client-urls=https://127.0.0.1:2379,https://:2379
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apihelpers/helpers_test.go

    				{
    					Type:               apiextensionsv1.Established,
    					Status:             apiextensionsv1.ConditionTrue,
    					Reason:             "Accepted",
    					Message:            "the initial names have been accepted",
    					LastTransitionTime: metav1.Date(2018, 1, 1, 0, 0, 0, 0, time.UTC),
    				},
    			},
    			newCondition: apiextensionsv1.CustomResourceDefinitionCondition{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 03 16:49:27 UTC 2019
    - 20.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/helpers_test.go

    			crdCondition: []CustomResourceDefinitionCondition{
    				{
    					Type:               Established,
    					Status:             ConditionTrue,
    					Reason:             "Accepted",
    					Message:            "the initial names have been accepted",
    					LastTransitionTime: metav1.Date(2018, 1, 1, 0, 0, 0, 0, time.UTC),
    				},
    			},
    			newCondition: CustomResourceDefinitionCondition{
    				Type:               Established,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 17 19:08:05 UTC 2019
    - 15.4K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectStateRegistryTest.groovy

            def calculatedValue = state1.newCalculatedValue("initial")
    
            when:
            calculatedValue.update { throw new RuntimeException() }
    
            then:
            thrown(IllegalStateException)
            calculatedValue.get() == "initial"
    
            when:
            state1.applyToMutableState {
                calculatedValue.update {
                    assert it == "initial"
                    "updated"
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  8. pkg/kubelet/util/manager/watch_based_manager_test.go

    			}
    
    			obj, err := store.Get("ns", "name")
    			if tc.initial != nil {
    				assert.True(t, apiequality.Semantic.DeepEqual(tc.initial, obj))
    			} else {
    				assert.True(t, apierrors.IsNotFound(err))
    			}
    
    			// Reflector should already be stopped for immutable secrets.
    			assert.Equal(t, tc.initial == nil || !isSecretImmutable(tc.initial), reflectorRunning())
    
    			if tc.eventual == nil {
    				return
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 09 10:05:43 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/handler_test.go

    	second, secondBody, _ := fetchPath(manager, "application/json", discoveryPath, initial.Header.Get("ETag"))
    
    	assert.Equal(t, http.StatusOK, initial.StatusCode, "initial response should be 200 OK")
    	assert.Equal(t, http.StatusOK, second.StatusCode, "second response should be 304 Not Modified")
    	assert.NotEqual(t, initial.Header.Get("ETag"), second.Header.Get("ETag"), "ETag of both requests should be unequal since contents differ")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSwiftExternalSourceDependenciesIntegrationTest.groovy

            singleProjectBuild("greeter") {
                buildFile << """
                    apply plugin: 'swift-library'
                """
                fixture.library.writeToProject(it)
            }
            def commit = repo.commit('initial commit')
    
            and:
            settingsFile << """
                sourceControl {
                    vcsMappings {
                        withModule("org.test:greeter") {
                            from(GitVersionControlSpec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.7K bytes
    - Viewed (0)
Back to top