Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of about 10,000 for storing (0.25 sec)

  1. src/fmt/scan.go

    	}
    	return
    }
    
    // scanNumber returns the numerical string with specified digits starting here.
    func (s *ss) scanNumber(digits string, haveDigits bool) string {
    	if !haveDigits {
    		s.notEOF()
    		if !s.accept(digits) {
    			s.errorString("expected integer")
    		}
    	}
    	for s.accept(digits) {
    	}
    	return string(s.buf)
    }
    
    // scanRune returns the next rune value in the input.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/impl/AbstractVirtualFileSystem.java

        public Optional<FileSystemLocationSnapshot> findSnapshot(String absolutePath) {
            return root.findSnapshot(absolutePath);
        }
    
        @Override
        public Optional<MetadataSnapshot> findMetadata(String absolutePath) {
            return root.findMetadata(absolutePath);
        }
    
        @Override
        public Stream<FileSystemLocationSnapshot> findRootSnapshotsUnder(String absolutePath) {
            return root.rootSnapshotsUnder(absolutePath);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. src/internal/coverage/cformat/format.go

    	fnfid uint32 // index into p.funcs slice
    	coverage.CoverableUnit
    }
    
    // fnfile is a function-name/file-name tuple.
    type fnfile struct {
    	file  string
    	fname string
    	lit   bool
    }
    
    func NewFormatter(cm coverage.CounterMode) *Formatter {
    	return &Formatter{
    		pm: make(map[string]*pstate),
    		cm: cm,
    	}
    }
    
    // SetPackage tells the formatter that we're about to visit the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testerrors/ptr_test.go

    		name:    "passstringslice",
    		c:       `void f24(void *p) {}`,
    		imports: []string{"strings", "unsafe"},
    		support: `type S24 struct { a [1]string }`,
    		body:    `s := S24{a:[1]string{strings.Repeat("a", 2)}}; C.f24(unsafe.Pointer(&s.a[0]))`,
    		fail:    true,
    	},
    	{
    		// Exported functions may not return strings.
    		name:    "retstring",
    		c:       `extern void f25();`,
    		imports: []string{"strings"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:49 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

            val ignoredFileSystemCheckInputs: String?
            fun gradleProperty(propertyName: String): String?
            fun fingerprintOf(fileCollection: FileCollectionInternal): HashCode
            fun hashCodeAndTypeOf(file: File): Pair<HashCode, FileType>
            fun hashCodeOf(file: File): HashCode?
            fun hashCodeOfDirectoryContent(file: File): HashCode?
            fun displayNameOf(fileOrDirectory: File): String
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  6. pkg/kubelet/util/store/filestore.go

    import (
    	"fmt"
    	"os"
    	"path/filepath"
    	"strings"
    
    	utilfs "k8s.io/kubernetes/pkg/util/filesystem"
    )
    
    const (
    	// Name prefix for the temporary files.
    	tmpPrefix = "."
    )
    
    // FileStore is an implementation of the Store interface which stores data in files.
    type FileStore struct {
    	// Absolute path to the base directory for storing data files.
    	directoryPath string
    
    	// filesystem to use.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 18 15:08:27 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/topologymanager/scope.go

    	podMap containermap.ContainerMap
    }
    
    func (s *scope) Name() string {
    	return s.name
    }
    
    func (s *scope) getTopologyHints(podUID string, containerName string) TopologyHint {
    	s.mutex.Lock()
    	defer s.mutex.Unlock()
    	return s.podTopologyHints[podUID][containerName]
    }
    
    func (s *scope) setTopologyHints(podUID string, containerName string, th TopologyHint) {
    	s.mutex.Lock()
    	defer s.mutex.Unlock()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 14:44:24 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/test/TestTaskPropertiesServiceIntegrationTest.groovy

                        type == 'DIRECTORY'
                        files.collect { new File(it as String) } == [file('build/reports/tests/test')]
                    }
                }
            }
        }
    
        def "can be used to disable storing task in build cache"() {
            given:
            def cacheDir = createDir("cache-dir")
            settingsFile << """
                buildCache {
                    local {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. android/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.7K bytes
    - Viewed (0)
  10. pkg/registry/storagemigration/storagemigration/strategy.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package storagemigration provides Registry interface and its RESTStorage
    // implementation for storing StorageVersionMigration objects.
    package storagemigration // import "k8s.io/kubernetes/pkg/registry/storagemigration/storagemigration"
    
    import (
    	"context"
    
    	"k8s.io/apimachinery/pkg/runtime"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top