Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,808 for Paused (0.19 sec)

  1. staging/src/k8s.io/api/apps/v1/generated.pb.go

    		`MinReadySeconds:` + fmt.Sprintf("%v", this.MinReadySeconds) + `,`,
    		`RevisionHistoryLimit:` + valueToStringGenerated(this.RevisionHistoryLimit) + `,`,
    		`Paused:` + fmt.Sprintf("%v", this.Paused) + `,`,
    		`ProgressDeadlineSeconds:` + valueToStringGenerated(this.ProgressDeadlineSeconds) + `,`,
    		`}`,
    	}, "")
    	return s
    }
    func (this *DeploymentStatus) String() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 217.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1beta2/generated.pb.go

    		`MinReadySeconds:` + fmt.Sprintf("%v", this.MinReadySeconds) + `,`,
    		`RevisionHistoryLimit:` + valueToStringGenerated(this.RevisionHistoryLimit) + `,`,
    		`Paused:` + fmt.Sprintf("%v", this.Paused) + `,`,
    		`ProgressDeadlineSeconds:` + valueToStringGenerated(this.ProgressDeadlineSeconds) + `,`,
    		`}`,
    	}, "")
    	return s
    }
    func (this *DeploymentStatus) String() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// GetAttrsFunc is used to get object labels, fields
    	GetAttrsFunc func(runtime.Object) (label labels.Set, field fields.Set, err error)
    
    	// IndexerFuncs is used for optimizing amount of watchers that
    	// needs to process an incoming event.
    	IndexerFuncs storage.IndexerFuncs
    
    	// Indexers is used to accelerate the list operation, falls back to regular list
    	// operation if no indexer found.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/internal/buildevents/BuildExceptionReporterTest.groovy

            def cause1 = new DefaultMultiCauseException("<cause1>", new RuntimeException("<cause1.1>"), new RuntimeException("<cause1.2>"))
            def cause2 = new DefaultMultiCauseException("<cause2>", new RuntimeException("<cause2.1>"))
            Throwable exception = new LocationAwareException(new DefaultMultiCauseException(MESSAGE, cause1, cause2), LOCATION, 42)
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/extensions/v1beta1/generated.pb.go

    		`MinReadySeconds:` + fmt.Sprintf("%v", this.MinReadySeconds) + `,`,
    		`RevisionHistoryLimit:` + valueToStringGenerated(this.RevisionHistoryLimit) + `,`,
    		`Paused:` + fmt.Sprintf("%v", this.Paused) + `,`,
    		`RollbackTo:` + strings.Replace(this.RollbackTo.String(), "RollbackConfig", "RollbackConfig", 1) + `,`,
    		`ProgressDeadlineSeconds:` + valueToStringGenerated(this.ProgressDeadlineSeconds) + `,`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 293.3K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/initialization/exception/DefaultExceptionAnalyserTest.groovy

            transformedFailure.lineNumber == null
        }
    
        def 'wraps contextual multi cause exception with location aware exception'() {
            given:
            def cause1 = new ContextualException()
            def cause2 = new ContextualException()
            def failure = new ContextualMultiCauseException(cause1, cause2)
            def result = []
    
            when:
            analyser().collectFailures(failure, result)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  7. pkg/kubelet/pod_workers_test.go

    }
    
    // Release blocks until all work is passed on the chain
    func (item *WorkChannelItem) Release() {
    	item.lock.Lock()
    	defer item.lock.Unlock()
    	item.pause = false
    	for i := 0; i < item.queue; i++ {
    		item.out <- struct{}{}
    	}
    	item.queue = 0
    }
    
    // WorkChannel intercepts podWork channels between the pod worker and its child
    // goroutines and allows tests to pause or release the flow of podWork to the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-monolithic/src/unused.c

    Louis Jacomet <******@****.***> 1711728981 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 42 bytes
    - Viewed (0)
  9. src/cmd/vet/testdata/unused/unused.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file contains tests for the unusedresult checker.
    
    package unused
    
    import "fmt"
    
    func _() {
    	fmt.Errorf("") // ERROR "result of fmt.Errorf call not used"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 20 15:46:42 UTC 2019
    - 324 bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/resolution/InvalidRepositoryException.java

        /**
         * The repository that raised this error, can be {@code null}.
         */
        private Repository repository;
    
        /**
         * Creates a new exception with specified detail message and cause for the given repository.
         *
         * @param message The detail message, may be {@code null}.
         * @param repository The repository that caused the error, may be {@code null}.
         * @param cause The cause, may be {@code null}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top