Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of about 10,000 for storing (0.48 sec)

  1. pkg/registry/core/serviceaccount/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package serviceaccount provides a Registry interface and a strategy
    // implementation for storing ServiceAccount API objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 21 14:11:50 UTC 2016
    - 786 bytes
    - Viewed (0)
  2. maven-artifact/src/main/java/org/apache/maven/artifact/repository/metadata/RepositoryMetadataStoreException.java

     */
    package org.apache.maven.artifact.repository.metadata;
    
    /**
     * Problem storing the repository metadata in the local repository.
     *
     */
    public class RepositoryMetadataStoreException extends Exception {
        public RepositoryMetadataStoreException(String message) {
            super(message);
        }
    
        public RepositoryMetadataStoreException(String message, Exception e) {
            super(message, e);
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/caching/internal/packaging/BuildCacheEntryPackingIntegrationTest.groovy

            buildFile << """
                task printCharsetProperties {
                    doLast {
                        println "> Default charset: \${java.nio.charset.Charset.defaultCharset()}"
                        println "> Storing file in cache: $fileName"
                    }
                }
    
                task createFile {
                    dependsOn printCharsetProperties
                    outputs.dir("dir")
                    outputs.cacheIf { true }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/RepositoryMetadataReadException.java

     */
    package org.apache.maven.artifact.repository.metadata;
    
    /**
     * Problem storing the repository metadata in the local repository.
     *
     */
    @Deprecated
    public class RepositoryMetadataReadException extends Exception {
        public RepositoryMetadataReadException(String message) {
            super(message);
        }
    
        public RepositoryMetadataReadException(String message, Exception e) {
            super(message, e);
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. pkg/registry/storage/csidriver/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package csidriver provides Registry interface and its REST
    // implementation for storing csidriver api objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 20:31:05 UTC 2019
    - 704 bytes
    - Viewed (0)
  6. pkg/registry/storage/csistoragecapacity/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package csistoragecapacity provides Registry interface and its REST
    // implementation for storing csistoragecapacity api objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 03 19:54:14 UTC 2020
    - 731 bytes
    - Viewed (0)
  7. pkg/registry/storage/volumeattachment/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package volumeattachment provides Registry interface and its REST
    // implementation for storing volumeattachment api objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 01:08:48 UTC 2017
    - 725 bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskIntegrationTest.groovy

            metadata.contains("identity=")
            metadata.contains("gradleVersion=")
            metadata.contains("creationTime=")
            metadata.contains("executionTime=")
        }
    
        def "storing in the cache can be disabled"() {
            buildFile << defineCacheableTask()
            buildFile << """
                apply plugin: 'base'
    
                def storeInCache = project.hasProperty('storeInCache')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 20 17:51:57 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/time_proto.go

    	if m == nil {
    		return &Timestamp{}
    	}
    	return &Timestamp{
    		Seconds: m.Time.Unix(),
    		// leaving this here for the record.  our JSON only handled seconds, so this results in writes by
    		// protobuf clients storing values that aren't read by json clients, which results in unexpected
    		// field mutation, which fails various validation and equality code.
    		// Nanos:   int32(m.Time.Nanosecond()),
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 25 18:54:00 UTC 2019
    - 3.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/configurationCache/problemsGroovy/tests/store.out

    Calculating task graph as no cached configuration is available for tasks: someTask
    > Task :someTask
    
    1 problem was found storing the configuration cache.
    - Build file 'build.gradle': line 6: invocation of 'Task.project' at execution time is unsupported.
      See https://docs.gradle.org/0.0.0/userguide/configuration_cache.html#config_cache:requirements:use_project_during_execution
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 568 bytes
    - Viewed (0)
Back to top