Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 536 for responsible (2.1 sec)

  1. tensorflow/c/kernels_experimental.h

    // the input and value tensors. It also accepts the copy callback provided by
    // pluggable vendor to do the copying of the tensors. The caller takes ownership
    // of the `source` and `dest` tensors and is responsible for freeing them with
    // TF_DeleteTensor. This function will return an error when the following
    // conditions are met:
    //   1. `validate_shape` is set to `true`
    //   2. The variable is initialized
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 07 14:44:39 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  2. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/packages/KotlinPackagePartProviderFactory.kt

    import org.jetbrains.kotlin.load.kotlin.PackagePartProvider
    
    public abstract class KotlinPackagePartProviderFactory : KotlinPlatformComponent {
        /**
         * Create a [PackagePartProvider] for a given scope. [PackagePartProvider] is responsible for searching sub packages in a library.
         */
        public abstract fun createPackagePartProvider(scope: GlobalSearchScope): PackagePartProvider
    
        public companion object {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/initialization/SettingsProcessor.java

    import org.gradle.api.internal.SettingsInternal;
    import org.gradle.api.internal.initialization.ClassLoaderScope;
    
    /**
     * Responsible for locating, constructing, and configuring the {@link SettingsInternal} for a build.
     */
    public interface SettingsProcessor {
        /**
         * Load the settings for the given build. The caller is responsible for closing the return value.
         */
        SettingsState process(
            GradleInternal gradle,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Dec 11 09:02:18 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/main/java/org/gradle/api/BuildableComponentSpec.java

     */
    @Incubating
    public interface BuildableComponentSpec extends Buildable, ComponentSpec {
        /**
         * Returns the task responsible for building this component.
         */
        @Nullable
        Task getBuildTask();
    
        /**
         * Specifies the task responsible for building this component.
         */
        void setBuildTask(@Nullable Task buildTask);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/FactoryNamedDomainObjectContainer.java

         * @param type The concrete type of element in the container (must implement {@link Named})
         * @param instantiator The instantiator to use to create any other collections based on this one
         * @param factory The factory responsible for creating new instances on demand
         * @param collectionCallbackActionDecorator the decorator for collection callback action execution
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:18:33 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/tooling/provider/model/internal/BuildScopeModelBuilder.java

         * This method is responsible for transitioning the target into the appropriate state required to create the model.
         *
         * No synchronization is applied to the target, so this method may be called for a given target concurrently by multiple threads.
         * Other threads may also be doing work with the target when this method is called.
         * This method is responsible for any synchronization required to create the model.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 14 21:39:26 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/main/java/org/gradle/api/CheckableComponentSpec.java

     */
    @Incubating
    public interface CheckableComponentSpec extends ComponentSpec {
    
        /**
         * Returns the task responsible for checking this component.
         */
        @Nullable
        Task getCheckTask();
    
        /**
         * Specifies the task responsible for checking this component.
         */
        void setCheckTask(@Nullable Task checkTask);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/execution/plan/PlanExecutor.java

    import org.gradle.internal.build.ExecutionResult;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import javax.annotation.concurrent.ThreadSafe;
    
    /**
     * Responsible for running the work of a build tree, packaged as zero or more {@link ExecutionPlan} instances.
     */
    @ServiceScope(Scope.BuildTree.class)
    @ThreadSafe
    public interface PlanExecutor {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/io/ByteSink.java

     * <p>{@code ByteSink} provides two kinds of methods:
     *
     * <ul>
     *   <li><b>Methods that return a stream:</b> These methods should return a <i>new</i>, independent
     *       instance each time they are called. The caller is responsible for ensuring that the
     *       returned stream is closed.
     *   <li><b>Convenience methods:</b> These are implementations of common operations that are
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/io/ByteSink.java

     * <p>{@code ByteSink} provides two kinds of methods:
     *
     * <ul>
     *   <li><b>Methods that return a stream:</b> These methods should return a <i>new</i>, independent
     *       instance each time they are called. The caller is responsible for ensuring that the
     *       returned stream is closed.
     *   <li><b>Convenience methods:</b> These are implementations of common operations that are
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top