Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 406 for onStop (0.09 sec)

  1. platforms/software/platform-base/src/main/java/org/gradle/platform/base/ProjectDependencySpec.java

     * limitations under the License.
     */
    
    package org.gradle.platform.base;
    
    import org.gradle.api.Incubating;
    
    import javax.annotation.Nullable;
    
    /**
     * A dependency onto a library published by a project.
     */
    @Incubating
    public interface ProjectDependencySpec extends DependencySpec {
    
        /**
         * Returns the project path of the project this dependency refers to.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/types.go

    	// The carp will be allowed to use secrets referenced by the ServiceAccount
    	ServiceAccountName string
    
    	// NodeName is a request to schedule this carp onto a specific node.  If it is non-empty,
    	// the scheduler simply schedules this carp onto that node, assuming that it fits resource
    	// requirements.
    	// +optional
    	NodeName string
    	// Specifies the hostname of the Carp.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 03 06:34:52 UTC 2019
    - 4.3K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/internal/BUILD

    # Code in this directory is intended to form the glue between the C API and the internal C++
    # implementation by
    # 1. mapping C API calls onto correponding methods of C++ objects
    # 2. mapping opaque C types onto C++ classes
    
    # Note(bmzhao): The *.cc files in this directory form the direct implementation of the
    # C API functions exposed in tf/c/experimental/saved_model/public/.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 01 20:19:06 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/runtime/schema/interfaces.go

    limitations under the License.
    */
    
    package schema
    
    // All objects that are serialized from a Scheme encode their type information. This interface is used
    // by serialization to set type information from the Scheme onto the serialized version of an object.
    // For objects that cannot be serialized or have unique requirements, this interface may be a no-op.
    type ObjectKind interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 07 14:45:22 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/project/antbuilder/ClassPathToClassLoaderCache.java

     *
     * It is important that the cleanup only occurs when nobody uses the classloader anymore, which means when no consumer retains a strong reference onto a {@link CachedClassLoader}. If we directly put
     * the cached classloader as a value of the map, then it cannot be reclaimed, and will never be cleaned up. If we just use a SoftReference to the cached class loader, then the reference will be
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/example/types.go

    	// The pod will be allowed to use secrets referenced by the ServiceAccount
    	ServiceAccountName string
    
    	// NodeName is a request to schedule this pod onto a specific node.  If it is non-empty,
    	// the scheduler simply schedules this pod onto that node, assuming that it fits resource
    	// requirements.
    	// +optional
    	NodeName string
    	// Specifies the hostname of the Pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 03 06:34:52 UTC 2019
    - 5.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tensor_array_ops_decomposition.cc

                                              RankedTensorType* elem_type,
                                              int64_t* count) {
      auto lengths_const =
          llvm::dyn_cast_or_null<TF::ConstOp>(split.getLengths().getDefiningOp());
      if (!lengths_const) return split.emitOpError("non-constant split lengths");
      *count = lengths_const.getValue().getNumElements();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 20:41:19 UTC 2023
    - 40.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/split_merged_operands.cc

        // We can only clone the constant op or const->dequantize combo. The latter
        // case is useful for float16 quantization. Since all ops have been
        // legalized to tflite ops, so we only care about ConstOp or QConstOp or
        // mlir constant op.
        Operation* input_op = operand.getDefiningOp();
        if (input_op == nullptr) return failure();
    
        Attribute attr;
        if (matchPattern(input_op, m_Constant(&attr))) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/common/attrs_and_constraints.td

    // Checks if the data format is "NDHWC".
    def IsDataFormatNDHWC : ConstantAttr<TF_ConvnetDataFormatAttr, "\"NDHWC\"">;
    
    // Checks if the op is constant op.
    def IsConstTensor :  Constraint<CPred<"dyn_cast_or_null<TF::ConstOp>($0.getDefiningOp())">>;
    
    // Checks if the element value has a float type.
    def IsFloatElementsAttr : ElementsAttrBase<
      CPred<"$_self.isa<ElementsAttr>() && "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 08 04:55:44 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/legalization_op_config_test.cc

    }
    
    TEST_F(LegalizationOpConfigTest, ChecksDynamicPadderOps) {
      EXPECT_TRUE(
          IsDynamicPadderOp(TypeID::get<TF::XlaSetDynamicDimensionSizeOp>()));
      EXPECT_FALSE(IsDynamicPadderOp(TypeID::get<TF::ConstOp>()));
    }
    
    // This test is kind of odd. We go through all the Tensorflow types and check
    // whether they are legalized with MLIR, TF2XLA, or both. Ideally the sets are
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 30 03:31:01 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top