Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for set_warning (0.18 sec)

  1. tensorflow/compiler/jit/xla_activity_listener.cc

      });
    }
    
    Status BroadcastOptimizationRemark(
        XlaOptimizationRemark::Warning optimization_warning,
        string debug_information) {
      XlaOptimizationRemark remark;
      remark.set_warning(optimization_warning);
      remark.set_debug_information(std::move(debug_information));
      return BroadcastOptimizationRemark(std::move(remark));
    }
    void RegisterXlaActivityListener(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/ArtifactResolutionOmittingOutputNormalizer.groovy

            if (lines.empty) {
                return ""
            }
            boolean seenWarning = false
            List<String> result = new ArrayList<String>()
            for (String line : lines) {
                if (line.matches('Download .+')) {
                    // ignore
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/authentication/request/bearertoken/bearertoken_test.go

    			continue
    		}
    		if len(tc.ExpectedRecordedWarning) > 0 && tc.ExpectedRecordedWarning != dc.getWarning() {
    			t.Errorf("%s: Expected recorded warning=%v, got %v", k, tc.ExpectedRecordedWarning, dc.getWarning())
    			continue
    		}
    		if !reflect.DeepEqual(req.Header["Authorization"], tc.ExpectedAuthorizationHeaders) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 25 13:22:28 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  4. 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)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/MinimalJavaCompileOptions.java

        }
    
        public void setVerbose(boolean verbose) {
            this.verbose = verbose;
        }
    
        public boolean isWarnings() {
            return warnings;
        }
    
        public void setWarnings(boolean warnings) {
            this.warnings = warnings;
        }
    
        @Nullable
        public File getAnnotationProcessorGeneratedSourcesDirectory() {
            return annotationProcessorGeneratedSourcesDirectory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  6. 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