Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 78 for stateful (0.15 sec)

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

        ) : ConfigurationCacheStateFile {
            override val exists: Boolean
                get() = file.isFile
    
            override val stateFile: StateFile
                get() = StateFile(stateType, file)
    
            override fun outputStream(): OutputStream =
                throw UnsupportedOperationException()
    
            override fun inputStream(): InputStream =
                file.also(::markAccessed).inputStream()
    
            override fun delete() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/project/ProjectStateRegistry.java

         */
        ProjectState stateFor(Project project) throws IllegalArgumentException;
    
        /**
         * Locates the state object that owns the project with the given identifier.
         */
        ProjectState stateFor(ProjectComponentIdentifier identifier) throws IllegalArgumentException;
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/configurationcache/ConfigurationCacheBuildOperations.kt

        })
    
    
    private
    object LoadDetails : ConfigurationCacheLoadBuildOperationType.Details
    
    
    internal
    data class LoadResult(val stateFile: File, val originInvocationId: String? = null) : ConfigurationCacheLoadBuildOperationType.Result {
        override fun getCacheEntrySize(): Long = stateFile.length()
        override fun getOriginBuildInvocationId(): String? = originInvocationId
    }
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:09:37 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/functional-if-ops.pbtxt

    # Verify that TensorFlow If and StatelessIf ops are mapped to the
    # composite If op in MLIR with is_stateless attribute set accordingly to
    # distinguish between them.
    
    # CHECK-DAG: "tf.If"{{.*}} is_stateless = false{{.*}} loc(fused["If:", "StatefulIf"])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 15 19:42:47 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ModuleComponentGraphResolveStateFactory.java

            this.idGenerator = idFactory;
            this.attributeDesugaring = attributeDesugaring;
        }
    
        public ModuleComponentGraphResolveState stateFor(ModuleComponentResolveMetadata metadata) {
            if (metadata instanceof IvyModuleResolveMetadata) {
                IvyModuleResolveMetadata ivyMetadata = (IvyModuleResolveMetadata) metadata;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheStateStore.kt

    import org.gradle.cache.internal.streams.ValueStore
    import java.io.File
    
    
    internal
    interface ConfigurationCacheStateStore {
    
        data class StateFile(val stateType: StateType, val file: File)
    
        fun assignSpoolFile(stateType: StateType): StateFile
    
        /**
         * Loads some value from zero or more state files.
         */
        fun <T : Any> useForStateLoad(action: (ConfigurationCacheRepository.Layout) -> T): T
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/functional-if-ops.mlir

        %outputs_4, %control_5 = tf_executor.island wraps "tf.If"(%outputs_2, %arg2, %arg3) {else_branch = @cond_false, is_stateless = false, then_branch = @cond_true} : (tensor<i1>, tensor<4xf32>, tensor<4xf32>) -> tensor<4xf32> loc("StatefulIf")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 12:28:56 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/end2end/if_op.pbtxt

    # RUN: tf_tfl_translate -tf-input-arrays=a,b -tf-input-data-types=DT_FLOAT,DT_FLOAT -tf-input-shapes=: -tf-output-arrays=StatefulIf,StatelessIf %s -o - --output-mlir | FileCheck %s
    node {
      name: "tf.Less"
      op: "Less"
      input: "a"
      input: "b"
      attr {
        key: "T"
        value {
          type: DT_FLOAT
        }
      }
      experimental_debug_info {
      }
    }
    node {
      name: "my_equal"
      op: "Equal"
      input: "a"
      input: "b"
      attr {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 16 15:29:56 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/TasksFromProjectDependenciesTest.groovy

            _ * project1State.getMutableModel() >> project1
            _ * project2State.getMutableModel() >> project2
            projectStateRegistry = Mock(ProjectStateRegistry) {
                stateFor(projectId1) >> project1State
                stateFor(projectId2) >> project2State
            }
        }
    
        def "provides tasks from project dependencies"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:17:37 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/configurer/DefaultUniqueProjectNameProvider.java

            this.projectRegistry = projectRegistry;
        }
    
        @Override
        public String getUniqueName(Project project) {
            ProjectState projectState = projectRegistry.stateFor(project);
            String uniqueName = getDeduplicatedNames().get(projectState);
            if (uniqueName != null) {
                return uniqueName;
            }
            return project.getName();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top