Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of about 10,000 for storing (0.27 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/allocator.go

    //
    // Usage:
    //
    //	memoryAllocator := runtime.AllocatorPool.Get().(*runtime.Allocator)
    //	defer runtime.AllocatorPool.Put(memoryAllocator)
    //
    // A note for future:
    //
    //	consider introducing multiple pools for storing buffers of different sizes
    //	perhaps this could allow us to be more efficient.
    var AllocatorPool = sync.Pool{
    	New: func() interface{} {
    		return &Allocator{}
    	},
    }
    
    // Allocator knows how to allocate memory
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 27 03:17:50 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  2. src/internal/runtime/atomic/types.go

    }
    
    // And takes value and performs a bit-wise
    // "and" operation with the value of u, storing
    // the result into u.
    //
    // The full process is performed atomically.
    //
    //go:nosplit
    func (u *Uint8) And(value uint8) {
    	And8(&u.value, value)
    }
    
    // Or takes value and performs a bit-wise
    // "or" operation with the value of u, storing
    // the result into u.
    //
    // The full process is performed atomically.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/BuildCacheStepTest.groovy

            1 * execution.canStoreOutputsInCache() >> true
    
            then:
            interaction { outputStored {} }
            0 * _
        }
    
        def "fails when cache backend throws exception while storing cached result"() {
            given:
            def execution = Mock(Execution)
            def failure = new RuntimeException("store failure")
            def afterExecutionOutputState = Mock(ExecutionOutputState)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:50 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/caching/ImplicitInputsProvidingService.java

     *
     * Both have to be serializable, and it's encouraged to use the minimal footprint which allows
     * determining up-to-date status. For example, a SHA1 of a resource might be enough, rather than storing
     * the whole resource itself.
     *
     * @param <IN> a service specific type, representing a query of the service, which can be replayed later
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/hash/LittleEndianByteArray.java

    import java.security.AccessController;
    import java.security.PrivilegedActionException;
    import java.security.PrivilegedExceptionAction;
    import sun.misc.Unsafe;
    
    /**
     * Utility functions for loading and storing values from a byte array.
     *
     * @author Kevin Damm
     * @author Kyle Maddison
     */
    @ElementTypesAreNonnullByDefault
    final class LittleEndianByteArray {
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblems.kt

        private
        fun log(msg: String, vararg args: Any = emptyArray()) {
            logger.warn(msg, *args)
        }
    
        private
        val logger = Logging.getLogger(ConfigurationCacheProblems::class.java)
    
        private
        fun Int.counter(singular: String, plural: String = "${singular}s"): String {
            return when (this) {
                0 -> "no $plural"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/attributes/AttributeContainer.java

     * getting attributes in a type safe way. In particular, attributes are strongly typed,
     * meaning that when we get a value from the container, the returned value type is
     * inferred from the type of the attribute. In a way, an attribute container is
     * similar to a {@link java.util.Map} where the entry is a "typed String" and the value
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 13 17:35:59 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  8. pkg/config/constants/constants.go

    	KubeSystemNamespace string = "kube-system"
    
    	// KubePublicNamespace is the namespace where we place kubernetes public info (ConfigMaps).
    	KubePublicNamespace string = "kube-public"
    
    	// KubeNodeLeaseNamespace is the namespace for the lease objects associated with each kubernetes node.
    	KubeNodeLeaseNamespace string = "kube-node-lease"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonRegistryUpdater.java

            this.connectorAddress = connectorAddress;
            daemonRegistry.store(new DaemonInfo(connectorAddress, daemonContext, token, Busy));
        }
    
        public void onExpire(String reason, DaemonExpirationStatus status) {
            LOGGER.debug("Storing daemon stop event: {}", reason);
            final Date timestamp = new Date(System.currentTimeMillis());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/uploadconfig/uploadconfig.go

    			{
    				Verbs:         []string{"get"},
    				APIGroups:     []string{""},
    				Resources:     []string{"configmaps"},
    				ResourceNames: []string{kubeadmconstants.KubeadmConfigConfigMap},
    			},
    		},
    	})
    	if err != nil {
    		return err
    	}
    
    	// Binds the NodesKubeadmConfigClusterRoleName to all the bootstrap tokens
    	// that are members of the system:bootstrappers:kubeadm:default-node-token group
    	// and to all nodes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 04 07:20:43 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top