Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for getSummary (0.35 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationMessageBuilder.java

            this.usageType = DeprecatedFeatureUsage.Type.USER_CODE_INDIRECT;
        }
    
        void setBuildInvocationUsage() {
            this.usageType = DeprecatedFeatureUsage.Type.BUILD_INVOCATION;
        }
    
        void setSummary(String summary) {
            this.summary = summary;
        }
    
        void setAdvice(String advice) {
            this.advice = advice;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationLogger.java

            private final String feature;
    
            public ExplicitDeprecationMessageBuilder(String feature) {
                this.feature = feature;
                setSummary(feature + " has been deprecated.");
            }
    
            @Override
            DeprecationMessage build() {
                if(problemId == null) {
                    setProblemId(createDefaultDeprecationId(feature));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	gotPods, gotSummary := q.PendingPods()
    	if diff := cmp.Diff(expectedSet, makeSet(gotPods)); diff != "" {
    		t.Errorf("Unexpected list of pending Pods (-want, +got):\n%s", diff)
    	}
    	if wantSummary := fmt.Sprintf(pendingPodsSummary, 1, 0, 2); wantSummary != gotSummary {
    		t.Errorf("Unexpected pending pods summary: want %v, but got %v.", wantSummary, gotSummary)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top