Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for stateFile (0.11 sec)

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

        ): T {
            return withReadContextFor(encryptionService.inputStream(stateFile.stateType, stateFile::inputStream)) { codecs ->
                ConfigurationCacheState(codecs, stateFile, eventEmitter, host).run {
                    action(this)
                }
            }
        }
    
        private
        fun <T> writeConfigurationCacheState(
            stateFile: ConfigurationCacheStateFile,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultConfigurationCache.kt

            return loadFromCache(StateType.Model) { stateFile ->
                LoadResult(stateFile.stateFile.file) to cacheIO.readModelFrom(stateFile)
            }
        }
    
        private
        fun loadWorkGraph(graph: BuildTreeWorkGraph, graphBuilder: BuildTreeWorkGraphBuilder?, loadAfterStore: Boolean): BuildTreeWorkGraph.FinalizedGraph {
            return loadFromCache(StateType.Work) { stateFile ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintController.kt

            private val fingerprintWriter: ConfigurationCacheFingerprintWriter,
            private val buildScopedSpoolFile: StateFile,
            private val projectScopedSpoolFile: StateFile
        ) : WritingState() {
            override fun maybeStart(buildScopedSpoolFile: StateFile, projectScopedSpoolFile: StateFile, writeContextForOutputStream: (StateFile) -> DefaultWriteContext): WritingState {
                return this
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

         */
        Entry(false)
    }
    
    
    internal
    interface ConfigurationCacheStateFile {
        val exists: Boolean
        val stateType: StateType
        val stateFile: ConfigurationCacheStateStore.StateFile
        fun outputStream(): OutputStream
        fun inputStream(): InputStream
        fun delete()
    
        // Replace the contents of this state file, by moving the given file to the location of this state file
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  5. src/net/http/httptest/server.go

    				s.closeConn(c)
    			}
    		case http.StateActive:
    			if oldState, ok := s.conns[c]; ok {
    				if oldState != http.StateNew && oldState != http.StateIdle {
    					panic("invalid state transition")
    				}
    				s.conns[c] = cs
    			}
    		case http.StateIdle:
    			if oldState, ok := s.conns[c]; ok {
    				if oldState != http.StateActive {
    					panic("invalid state transition")
    				}
    				s.conns[c] = cs
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:26:10 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/http1/Http1ExchangeCodec.kt

      private val client: OkHttpClient?,
      override val carrier: ExchangeCodec.Carrier,
      private val source: BufferedSource,
      private val sink: BufferedSink,
    ) : ExchangeCodec {
      private var state = STATE_IDLE
      private val headersReader = HeadersReader(source)
    
      private val Response.isChunked: Boolean
        get() = "chunked".equals(header("Transfer-Encoding"), ignoreCase = true)
    
      private val Request.isChunked: Boolean
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_filesystem_test.cc

      EXPECT_EQ(TF_GetCode(status_), TF_NOT_FOUND) << TF_Message(status_);
    }
    
    TEST_F(GCSFilesystemTest, StatFile) {
      tf_gcs_filesystem::Init(filesystem_, status_);
      ASSERT_TF_OK(status_);
      const std::string path = GetURIForPath("StatFile");
      WriteString(path, "test");
      ASSERT_TF_OK(status_);
    
      TF_FileStatistics stat;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 31 12:04:23 UTC 2020
    - 24.9K bytes
    - Viewed (0)
Back to top