Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 753 for responsible (0.16 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/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)
  6. tensorflow/c/experimental/saved_model/public/signature_def_function_metadata.h

    // Retrieves the arguments of the SignatureDefFunction. The caller is not
    // responsible for freeing the returned pointer.
    TF_CAPI_EXPORT extern const TF_SignatureDefParamList*
    TF_SignatureDefFunctionMetadataArgs(
        const TF_SignatureDefFunctionMetadata* list);
    
    // Retrieves the returns of the SignatureDefFunction. The caller is not
    // responsible for freeing the returned pointer.
    TF_CAPI_EXPORT extern const TF_SignatureDefParamList*
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 30 17:58:21 UTC 2020
    - 1.8K 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/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)
  9. 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)
  10. tensorflow/c/env.h

    // temporary storage. You can iterate through the list with TF_StringStreamNext.
    // The caller is responsible for freeing the list (see TF_StringStreamDone).
    TF_CAPI_EXPORT extern TF_StringStream* TF_GetLocalTempDirectories(void);
    
    // Creates a temporary file name with an extension.
    // The caller is responsible for freeing the returned pointer.
    TF_CAPI_EXPORT extern char* TF_GetTempFileName(const char* extension);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 09 02:53:27 UTC 2021
    - 9.6K bytes
    - Viewed (0)
Back to top