Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for ReportError (0.16 sec)

  1. tensorflow/compiler/mlir/lite/metrics/error_collector_inst.cc

              bool has_valid_error_code =
                  ConverterErrorData::ErrorCode_Parse(error_code, &error_code_enum);
              if (!op_name.empty() || has_valid_error_code) {
                error_collector_->ReportError(NewConverterErrorData(
                    pass_name_, error_message, error_code_enum, op_name, loc));
              } else {
                common_error_message_ += diag.str();
                common_error_message_ += "\n";
              }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 25 01:48:36 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/link/internal/wasm/asm.go

    	Name   string
    	Type   uint32
    	Code   []byte
    }
    
    type wasmFuncType struct {
    	Params  []byte
    	Results []byte
    }
    
    func readWasmImport(ldr *loader.Loader, s loader.Sym) obj.WasmImport {
    	reportError := func(err error) { panic(fmt.Sprintf("failed to read WASM import in sym %v: %v", s, err)) }
    
    	data := ldr.Data(s)
    
    	readUint32 := func() (v uint32) {
    		v = binary.LittleEndian.Uint32(data)
    		data = data[4:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  7. pilot/pkg/networking/grpcgen/grpcgen_test.go

    	resolver.ClientConn
    	stateCh chan resolver.State
    	errorCh chan error
    }
    
    func (t *testClientConn) UpdateState(s resolver.State) error {
    	t.stateCh <- s
    	return nil
    }
    
    func (t *testClientConn) ReportError(err error) {
    	t.errorCh <- err
    }
    
    func (t *testClientConn) ParseServiceConfig(jsonSC string) *serviceconfig.ParseResult {
    	// Will be called with something like:
    	// {"loadBalancingConfig":[
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:04:02 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. 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)
  9. android/guava/src/com/google/common/util/concurrent/Futures.java

       *     new FutureCallback<QueryResult>() {
       *       public void onSuccess(QueryResult result) {
       *         storeInCache(result);
       *       }
       *       public void onFailure(Throwable t) {
       *         reportError(t);
       *       }
       *     }, e);
       * }</pre>
       *
       * <p>When selecting an executor, note that {@code directExecutor} is dangerous in some cases. See
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/Futures.java

       *     new FutureCallback<QueryResult>() {
       *       public void onSuccess(QueryResult result) {
       *         storeInCache(result);
       *       }
       *       public void onFailure(Throwable t) {
       *         reportError(t);
       *       }
       *     }, e);
       * }</pre>
       *
       * <p>When selecting an executor, note that {@code directExecutor} is dangerous in some cases. See
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
Back to top