Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 303 for getLogs (0.24 sec)

  1. subprojects/core-api/src/main/java/org/gradle/TaskExecutionRequest.java

    public interface TaskExecutionRequest {
        /**
         * The arguments to use to select and optionally configure the tasks, as if provided on the command-line.
         *
         * @return task name.
         */
        List<String> getArgs();
    
        /**
         * Project path associated with this task request if any.
         *
         * @return project path or {@code null} to use the default project path.
         */
        @Nullable String getProjectPath();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 20:41:53 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  2. pkg/kubelet/container/testing/runtime_mock.go

    }
    
    // GetPods mocks base method.
    func (m *MockRuntime) GetPods(ctx context.Context, all bool) ([]*container.Pod, error) {
    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "GetPods", ctx, all)
    	ret0, _ := ret[0].([]*container.Pod)
    	ret1, _ := ret[1].(error)
    	return ret0, ret1
    }
    
    // GetPods indicates an expected call of GetPods.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 27K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/common/attrs_and_constraints_test.cc

          ParseModuleOpString(kModuleDotGeneralFullyConnected);
      ASSERT_TRUE(module_op);
    
      func::FuncOp main_fn = FindMainFuncOp(*module_op);
      ASSERT_THAT(main_fn, NotNull());
    
      auto dot_general_op = *main_fn.getOps<DotGeneralOp>().begin();
      EXPECT_THAT(IsDotGeneralFullyConnected(dot_general_op), true);
    }
    
    TEST_F(AttrsAndConstraintsTest, IsDotGeneralFullyConnectedReturnsFalse) {
      OwningOpRef<ModuleOp> module_op =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/internal/RunDefaultTasksExecutionRequest.java

        public RunDefaultTasksExecutionRequest(@Nullable String projectPath, @Nullable File rootDir) {
            this.projectPath = projectPath;
            this.rootDir = rootDir;
        }
    
        @Override
        public List<String> getArgs() {
            return Collections.emptyList();
        }
    
        @Nullable
        @Override
        public String getProjectPath() {
            return projectPath;
        }
    
        @Nullable
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 02 00:39:25 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/suggest/entity/SuggestItem.java

            }
            mergedItem.fields = fieldList.toArray(new String[fieldList.size()]);
    
            final List<String> tagList = new ArrayList<>(item1.getTags().length + item2.getTags().length);
            Collections.addAll(tagList, item1.getTags());
            for (final String tag : item2.getTags()) {
                if (!tagList.contains(tag)) {
                    tagList.add(tag);
                }
            }
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/freeze_global_tensors.cc

      TF::LoadResourceDataflowAnalysis(solver);
      if (failed(solver.initializeAndRun(module))) return signalPassFailure();
    
      DenseSet<GlobalTensorOp> remaining_global_tensor_ops;
      {
        auto ops = module.getOps<GlobalTensorOp>();
        remaining_global_tensor_ops.insert(ops.begin(), ops.end());
      }
    
      for (auto global_tensor : remaining_global_tensor_ops) {
        // This pass assumes that all global tensors as immutable (e.g. by a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/passes/unwrap_xla_call_module_op.cc

               call_op.getOperands())) {
        arg_mapper.map(func_arg, operand);
      }
    
      Region& function_body = func_op.getBody();
      IRMapping new_op_mapper;
      for (Operation& op : function_body.getOps()) {
        if (llvm::isa<func::ReturnOp>(op)) {
          for (auto [call_result, return_value] :
               llvm::zip_equal(call_op.getResults(), op.getOperands())) {
            Value new_result = new_op_mapper.lookup(return_value);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/BinaryToolSpec.java

        NativePlatform getTargetPlatform();
    
        void setTargetPlatform(NativePlatform platform);
    
        File getTempDir();
    
        void setTempDir(File tempDir);
    
        List<String> getArgs();
    
        void args(List<String> args);
    
        List<String> getSystemArgs();
    
        void systemArgs(List<String> args);
    
        List<String> getAllArgs();
    
        BuildOperationLogger getOperationLogger();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/ScenarioDefinition.java

         */
        List<String> getTasks();
    
        /**
         * The clean tasks executed.
         */
        List<String> getCleanTasks();
    
        /**
         * The Gradle arguments.
         */
        List<String> getArgs();
    
        /**
         * The Gradle JVM args. Null if not known
         */
        @Nullable
        List<String> getGradleOpts();
    
        /**
         * Was the daemon used. Null if not known
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/init_text_file_to_import_test_pass.cc

      temp_file.os().flush();
    
      // Replace filename constant ops to use the temporary file.
      MLIRContext* context = &getContext();
    
      for (func::FuncOp func : module.getOps<func::FuncOp>()) {
        llvm::SmallVector<arith::ConstantOp, 4> constant_ops(
            func.getOps<arith::ConstantOp>());
        for (auto op : constant_ops) {
          ShapedType shaped_type =
              RankedTensorType::get({1}, StringType::get(context));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 04 09:19:38 UTC 2022
    - 5.5K bytes
    - Viewed (0)
Back to top