Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for hasTask (0.22 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectConfigurationReportingTaskExecutionGraph.kt

                val coupledProjects = listOf(taskOwner)
                reportCrossProjectTaskAccess(coupledProjects, task.path)
            }
        }
    
        override fun hasTask(task: Task): Boolean {
            checkCrossProjectTaskAccess(task)
            return delegate.hasTask(task)
        }
    
        override fun getAllTasks(): MutableList<Task> {
            val result = delegate.allTasks
            observingTasksMaybeFromOtherProjects(result)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromGroovyDslIntegrationTest.groovy

            "graph.hasTask(':b:bTask')"          | [":b:help"]                      | true
            "graph.hasTask(':b:help')"           | [":b:help"]                      | true
            "graph.hasTask(':help')"             | [":b:help"]                      | false
            "graph.hasTask(':x:unknown')"        | [":b:help"]                      | false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testshared/testdata/depBase/dep.go

    	}
    	if os.Stdout == nil {
    		panic("os.Stdout is nil")
    	}
    
    	Initialized = true
    }
    
    var Initialized bool
    
    var SlicePtr interface{} = &[]int{}
    
    var V int = 1
    
    var HasMask []string = []string{"hi"}
    
    type HasProg struct {
    	array [1024]*byte
    }
    
    type Dep struct {
    	X int
    }
    
    func (d *Dep) Method() int {
    	// This code below causes various go.itab.* symbols to be generated in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // taking the most specialized. This combines `10x?x?` and `?x?x8` into
      // `10x?x8`.
      if (!lhs_shape_type.hasRank()) {
        if (rhs_shape_type.hasRank()) {
          shape.append(rhs_shape_type.getShape().begin(),
                       rhs_shape_type.getShape().end());
          refined_shape = true;
        }
      } else if (rhs_shape_type.hasRank()) {
        for (auto shape_elts : llvm::enumerate(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        auto input_ty = mlir::cast<ShapedType>(input.getType());
        auto min_ty = mlir::cast<ShapedType>(min.getType());
        auto max_ty = mlir::cast<ShapedType>(max.getType());
    
        if (!input_ty.hasRank() || !min_ty.hasRank() || !max_ty.hasRank()) {
          return failure();
        }
    
        auto shape = rewriter.create<TF::ShapeOp>(
            op.getLoc(),
            tensorflow::GetTypeFromTFTensorShape({input_ty.getRank()},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      std::vector<int32_t> shape;
      if (tensor_type.hasRank()) {
        llvm::ArrayRef<int64_t> shape_ref = tensor_type.getShape();
        shape = std::vector<int32_t>(shape_ref.begin(), shape_ref.end());
      }
    
      variant_params.push_back(
          tflite::CreateVariantSubType(builder_, builder_.CreateVector(shape),
                                       tflite_element_type, tensor_type.hasRank()));
      return variant_params;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        // Here we assume that the element_shape won't be changed before calling
        // the first `TensorListSetItemOp`.
        if (auto shaped_type = element_shape.getType().dyn_cast<ShapedType>()) {
          if (shaped_type.hasRank() && shaped_type.getRank() == 0) {
            bool element_shape_acquired = false;
            auto uses = op.getResult().getUses();
            for (auto &use : llvm::make_early_inc_range(uses)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
Back to top