Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ReportError (0.34 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/context.kt

        fun declareLocal(
            localValue: LocalValue,
            assignedObjectOrigin: ObjectOrigin,
            reportError: ErrorCollector
        ) {
            val name = localValue.name
            if (name in ownLocalsByName) {
                reportError.collect(ResolutionError(localValue, ErrorReason.DuplicateLocalValue(name)))
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. operator/pkg/util/progress/progress_test.go

    	bar.ReportProgress()
    	bar.ReportProgress()
    
    	bar.ReportWaiting([]string{"deployment"})
    	expect(`- Processing resources for ` + cnbo + `, ` + cnpo + `. Waiting for deployment`)
    
    	bar.ReportError("some error")
    	expect(`❌ ` + cnbo + ` encountered an error: some error`)
    
    	foo.ReportProgress()
    	expect(`- Processing resources for ` + cnpo + `.`)
    
    	foo.ReportFinished()
    	expect(`🧠 ` + cnpo + ` installed`)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. operator/pkg/util/progress/progress.go

    	finished bool
    	waiting  []string
    	mu       sync.Mutex
    }
    
    func (p *ManifestLog) ReportProgress() {
    	if p == nil {
    		return
    	}
    	p.report()
    }
    
    func (p *ManifestLog) ReportError(err string) {
    	if p == nil {
    		return
    	}
    	p.mu.Lock()
    	p.err = err
    	p.mu.Unlock()
    	p.report()
    }
    
    func (p *ManifestLog) ReportFinished() {
    	if p == nil {
    		return
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modget/get.go

    				packages, err := r.matchInModule(ctx, q.pattern, curM)
    				if len(packages) == 0 {
    					if err != nil {
    						reportError(q, err)
    					}
    					continue // curM is not relevant to q.
    				}
    			}
    
    			rev, err := r.queryModule(ctx, curM.Path, q.version, r.initialSelected)
    			if err != nil {
    				reportError(q, err)
    				continue
    			}
    			if rev.Version == curM.Version {
    				continue // curM already matches q.
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  5. tensorflow/c/eager/c_api_experimental.cc

            "Coordination service is not enabled.");
        return;
      }
      tensorflow::Status s(static_cast<absl::StatusCode>(error_code),
                           error_message);
      status->status = coord_agent->ReportError(s);
    }
    
    void TFE_GetTaskStates(TFE_Context* ctx, const TF_Buffer& tasks, void* states,
                           TF_Status* status) {
      tensorflow::ImmediateExecutionDistributedManager* dist_mgr =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 23:52:39 UTC 2024
    - 35.9K bytes
    - Viewed (0)
Back to top