Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for set_warning (0.21 sec)

  1. pkg/registry/batch/job/storage/storage_test.go

    type dummyRecorder struct {
    	agent string
    	text  string
    }
    
    func (r *dummyRecorder) AddWarning(agent, text string) {
    	r.agent = agent
    	r.text = text
    	return
    }
    
    func (r *dummyRecorder) getWarning() string {
    	return r.text
    }
    
    var _ warning.Recorder = &dummyRecorder{}
    
    func TestJobDeletion(t *testing.T) {
    	orphanDependents := true
    	orphanDeletionPropagation := metav1.DeletePropagationOrphan
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 14:34:53 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

         */
        @Console
        public boolean isWarnings() {
            return warnings;
        }
    
        /**
         * Sets whether to log warning messages. The default is {@code true}.
         */
        public void setWarnings(boolean warnings) {
            this.warnings = warnings;
        }
    
        /**
         * Returns the character encoding to be used when reading source files. Defaults to {@code null}, in which
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top