Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ReportError (0.31 sec)

  1. 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)
  2. 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)
  3. 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