Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of about 10,000 for storing (0.33 sec)

  1. android/guava/src/com/google/common/primitives/package-info.java

     * the License.
     */
    
    /**
     * Static utilities for the eight primitive types and {@code void}, and value types for treating
     * them as unsigned or storing them in immutable arrays.
     *
     * <p>This package is a part of the open-source <a href="https://github.com/google/guava">Guava</a>
     * library.
     *
     * <p>See the Guava User Guide article on <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:13:41 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/registry/PersistentDaemonRegistry.java

                        return oldValue;
                    }
                });
            } finally {
                lock.unlock();
            }
        }
    
        @Override
        public String toString() {
            return String.format("PersistentDaemonRegistry[file=%s]", registryFile);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/exec/SuggestCreator.java

            protected String sessionId;
    
            @Option(name = "-n", aliases = "--name", metaVar = "name", usage = "Name")
            protected String name;
    
            @Option(name = "-p", aliases = "--properties", metaVar = "properties", usage = "Properties File")
            protected String propertiesPath;
    
            protected Options() {
                // nothing
            }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/models/IntermediateModelController.kt

    import org.gradle.tooling.provider.model.UnknownModelException
    import org.gradle.tooling.provider.model.internal.ToolingModelParameterCarrier
    import org.gradle.util.Path
    
    
    /**
     * Responsible for loading and storing intermediate models used during tooling API build action execution.
     */
    internal
    class IntermediateModelController(
        private val host: DefaultConfigurationCache.Host,
        private val cacheIO: ConfigurationCacheIO,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/request/server_shutdown_signal.go

    package request
    
    import (
    	"context"
    )
    
    // The serverShutdownSignalKeyType type is unexported to prevent collisions
    type serverShutdownSignalKeyType int
    
    // serverShutdownSignalKey is the context key for storing the
    // watch termination interface instance for a WATCH request.
    const serverShutdownSignalKey serverShutdownSignalKeyType = iota
    
    // ServerShutdownSignal is associated with the request context so
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 15:49:30 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheBuildOperationsTest.kt

            verify(buildOperationRunner).run(runnableBuildOperation.capture())
    
            // and:
            assertThat(
                runnableBuildOperation.value.description().build().progressDisplayName,
                equalTo("Storing configuration cache state")
            )
        }
    
        @Test
        fun `sets progress display name on load`() {
            // given:
            val buildOperationRunner = mock<BuildOperationRunner> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. pkg/registry/certificates/clustertrustbundle/strategy.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package clustertrustbundle provides Registry interface and its RESTStorage
    // implementation for storing ClusterTrustBundle objects.
    package clustertrustbundle // import "k8s.io/kubernetes/pkg/registry/certificates/clustertrustbundle"
    
    import (
    	"context"
    
    	"k8s.io/apimachinery/pkg/runtime"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:18 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resource/cached/TwoStageExternalResourceFileStoreTest.groovy

        def readStore = Mock(ExternalResourceFileStore)
        def writeStore = Mock(ExternalResourceFileStore)
    
        String key = "key"
        def file = Stub(File)
        def action = Stub(Action)
    
        @Subject
        TwoStageExternalResourceFileStore twoStageStore = new TwoStageExternalResourceFileStore(readStore, writeStore)
    
        def "storing an artifact uses the writable store"() {
            when:
            twoStageStore.move(key, file)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/filestore/TwoStageArtifactIdentifierFileStoreTest.groovy

        def file = Stub(File)
        def action = Stub(Action)
    
        @Subject
        def twoStageStore = new TwoStageArtifactIdentifierFileStore(readStore, writeStore)
    
        def "storing an artifact uses the writable store"() {
            when:
            twoStageStore.move(key, file)
    
            then:
            1 * writeStore.move(key, file)
            0 * readStore.move(_, _)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIncompatibleTasksIntegrationTest.groovy

            then:
            result.assertTasksExecuted(":declared")
            fixture.assertStateStoredAndDiscarded {
                hasStoreFailure = false
            }
        }
    
        def "can force storing cache entry by treating problems as warnings"() {
            addTasksWithProblems()
    
            when:
            configurationCacheRunLenient("declared")
    
            then:
            result.assertTasksExecuted(":declared")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top