Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 618 for dager (0.05 sec)

  1. src/main/webapp/WEB-INF/view/admin/group/admin_group.jsp

                                    <c:set var="pager" value="${groupPager}" scope="request"/>
                                    <c:import url="/WEB-INF/view/common/admin/crud/pagination.jsp"/>
                                    <c:if test="${pager.currentPageNumber > pager.allPageCount}">
                                        <script>location.href = "${contextPath}/admin/group/list/${pager.allPageCount}";</script>
                                    </c:if>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 4.5K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/role/admin_role.jsp

                                    <c:set var="pager" value="${rolePager}" scope="request"/>
                                    <c:import url="/WEB-INF/view/common/admin/crud/pagination.jsp"/>
                                    <c:if test="${pager.currentPageNumber > pager.allPageCount}">
                                        <script>location.href = "${contextPath}/admin/role/list/${pager.allPageCount}";</script>
                                    </c:if>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 4.5K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/core/revived_types/tf_concrete_function.h

    #include <functional>
    #include <memory>
    #include <string>
    #include <unordered_map>
    #include <vector>
    
    #include "tensorflow/c/eager/immediate_execution_context.h"
    #include "tensorflow/c/eager/immediate_execution_operation.h"
    #include "tensorflow/c/eager/immediate_execution_tensor_handle.h"
    #include "tensorflow/c/experimental/saved_model/core/concrete_function.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 19:43:25 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  4. docs/tr/docs/deployment/index.md

    **FastAPI** uygulamasını yayınlarken aklınızda bulundurmanız gereken ana kavramlardan bazılarını size göstereceğim (ancak bunların çoğu diğer web uygulamaları için de geçerlidir).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:46:42 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. tensorflow/c/eager/dlpack.h

    #ifndef TENSORFLOW_C_EAGER_DLPACK_H_
    #define TENSORFLOW_C_EAGER_DLPACK_H_
    
    #include "tensorflow/c/eager/c_api.h"
    
    namespace tensorflow {
    
    // PyCapsule name for DLPack Tensor
    const char* const kDlTensorCapsuleName = "dltensor";
    
    // Converts eager tensor handle to DLPack (DLManagedTensor*), and return the
    // void* for further PyCapsule construction.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Mar 28 08:41:24 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  6. tensorflow/c/eager/gradient_checker.h

    #ifndef TENSORFLOW_C_EAGER_GRADIENT_CHECKER_H_
    #define TENSORFLOW_C_EAGER_GRADIENT_CHECKER_H_
    
    #include <memory>
    
    #include "absl/types/span.h"
    #include "tensorflow/c/eager/abstract_tensor_handle.h"
    #include "tensorflow/c/eager/unified_api_testutil.h"
    
    namespace tensorflow {
    namespace gradients {
    
    /* Returns numerical grad inside `dtheta_approx` given `forward` model and
     * parameter specified by `input_index`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 11 02:34:32 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskRealizationBuildOperationIntegrationTest.groovy

            realizeOps.size() == 2
            realizeOps*.details.each {
                assert it.taskPath == ":foo"
            }
            realizeOps.first().details.eager == false
            realizeOps.last().details.eager == true
            def uniqueId = Iterables.getOnlyElement(realizeOps*.details*.taskId as Set)
    
            when:
            configurationCacheRun(":foo")
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. tensorflow/cc/experimental/libtf/function.h

    #ifndef TENSORFLOW_CC_EXPERIMENTAL_LIBTF_FUNCTION_H_
    #define TENSORFLOW_CC_EXPERIMENTAL_LIBTF_FUNCTION_H_
    
    #include <vector>
    
    #include "tensorflow/c/eager/abstract_context.h"
    #include "tensorflow/c/eager/abstract_function.h"
    #include "tensorflow/c/eager/abstract_tensor_handle.h"
    #include "tensorflow/cc/experimental/libtf/object.h"
    #include "tensorflow/core/platform/statusor.h"
    
    namespace tf {
    namespace libtf {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 21:44:45 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/kotlinDsl/configuring-tasks-basics/kotlin/build.gradle.kts

    }
    // end::namespace[]
    
    // tag::using-api[]
    tasks.named<Jar>("jar") {
        archiveFileName = "foo.jar"
    }
    // end::using-api[]
    
    // tag::using-eager-api[]
    tasks.getByName<Jar>("jar") {
        archiveFileName = "foo.jar"
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 336 bytes
    - Viewed (0)
  10. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/TaskAvoidancePerformanceTest.groovy

        def "help with lazy and eager tasks"() {
            given:
            runner.testGroup = "configuration avoidance"
            runner.buildSpec {
                displayName("lazy")
                invocation {
                    tasksToRun("help")
                }
            }
            runner.baseline {
                displayName("eager")
                invocation {
                    tasksToRun("help")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top