Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 739 for Tresults (1.29 sec)

  1. cmd/notification.go

    			Scheme: scheme,
    			Host:   globalLocalNodeName,
    		}
    		if err != nil {
    			results[len(results)-1].Error = err.Error()
    		} else {
    			results[len(results)-1] = r
    		}
    		results[len(results)-1].Endpoint = u.String()
    	}()
    	wg.Wait()
    
    	return results
    }
    
    // DriveSpeedTest - Drive performance information
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/tests/tests.go

    	fnName := fn.Name.Name
    	if params := fn.Type.Params; len(params.List) != 0 {
    		pass.Reportf(fn.Pos(), "%s should be niladic", fnName)
    	}
    	if results := fn.Type.Results; results != nil && len(results.List) != 0 {
    		pass.Reportf(fn.Pos(), "%s should return nothing", fnName)
    	}
    	if tparams := fn.Type.TypeParams; tparams != nil && len(tparams.List) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_head_tail_outside_compilation.cc

      };
      for (auto result : llvm::zip(launch.GetBody().getTerminator()->getOperands(),
                                   launch.getResults()))
        std::get<0>(result).replaceUsesWithIf(std::get<1>(result),
                                              operand_not_in_launch);
    }
    
    // Updates cluster with updated cluster results after extracting tail outside
    // compiled ops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  4. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/AbstractTestTask.java

    import org.gradle.api.internal.tasks.testing.junit.result.Binary2JUnitXmlReportGenerator;
    import org.gradle.api.internal.tasks.testing.junit.result.InMemoryTestResultsProvider;
    import org.gradle.api.internal.tasks.testing.junit.result.JUnitXmlResultOptions;
    import org.gradle.api.internal.tasks.testing.junit.result.TestClassResult;
    import org.gradle.api.internal.tasks.testing.junit.result.TestOutputStore;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/componentconfigs/configset.go

    		return nil, err
    	}
    
    	results := []outputapiv1alpha3.ComponentConfigVersionState{}
    	for _, handler := range known {
    		group := handler.GroupVersion.Group
    		if _, ok := scratchClusterCfg.ComponentConfigs[group]; ok {
    			// Normally loaded component config. No manual upgrade required on behalf of users.
    			results = append(results, outputapiv1alpha3.ComponentConfigVersionState{
    				Group:            group,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:36:00 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/reduce_while_operands.cc

      llvm::SmallVector<Type> new_result_types;
      new_operands.reserve(n - erase_indices.size());
      new_result_types.reserve(n - erase_indices.size());
      // After reducing, the number of results is decreased. The i-th result of old
      // WhileOp becomes the j-th (j<=i) result of new WhileOp. This information is
      // stored in id_map (id_map[i] = j).
      std::vector<uint64_t> id_map(n, 0);
      uint64_t j = 0;
      for (auto i = 0; i < n; ++i) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. statement.go

    				results[rel.Name] = result
    			}
    		} else if field := stmt.Schema.LookUpField(column); field != nil && field.DBName != "" {
    			results[field.DBName] = result
    		} else if table, col := matchName(column); col != "" && (table == stmt.Table || table == "") {
    			if col == "*" {
    				for _, dbName := range stmt.Schema.DBNames {
    					results[dbName] = result
    				}
    			} else {
    				results[col] = result
    			}
    		} else {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Jan 12 08:42:21 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/encapsulate_xla_computations_pass_test.cc

      auto consumer0_a =
          ops::Identity(scope.WithOpName("consumer0_a"), launch.results[0]);
      auto consumer0_b =
          ops::Identity(scope.WithOpName("consumer0_b"), launch.results[0]);
      auto consumer0_c =
          ops::Identity(scope.WithOpName("consumer0_c"), launch.results[0]);
      auto consumer1 =
          ops::Identity(scope.WithOpName("consumer1"), launch.results[1]);
      auto consumer2 =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 16 18:03:15 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  9. src/testing/slogtest/slogtest.go

    		l := slog.New(ht)
    		c.f(l)
    	}
    
    	// Collect and check the results.
    	var errs []error
    	res := results()
    	if g, w := len(res), len(cases); g != w {
    		return fmt.Errorf("got %d results, want %d", g, w)
    	}
    	for i, got := range results() {
    		c := cases[i]
    		for _, check := range c.checks {
    			if problem := check(got); problem != "" {
    				errs = append(errs, fmt.Errorf("%s: %s", problem, c.explanation))
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:47 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/rangefunc/rewrite.go

    				}
    			}
    		}
    		// Assign to named results
    		results := []types2.Object{}
    		for _, a := range r.outer.ResultList {
    			results = append(results, r.info.Defs[a.Name])
    		}
    		bl.List = append(bl.List, &syntax.AssignStmt{Lhs: r.useList(results), Rhs: x.Results})
    		x.Results = nil
    	}
    
    	next := -1 // return
    
    	// Tell the loops along the way to check for a return.
    	for _, loop := range r.forStack {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
Back to top