Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 350 for regular (0.27 sec)

  1. src/cmd/vendor/github.com/google/pprof/profile/filter.go

    			}
    		}
    		for lab := range s.NumLabel {
    			if matchRemove(lab) {
    				delete(s.NumLabel, lab)
    			}
    		}
    	}
    	return
    }
    
    // matchesName returns whether the location matches the regular
    // expression. It checks any available function names, file names, and
    // mapping object filename.
    func (loc *Location) matchesName(re *regexp.Regexp) bool {
    	for _, ln := range loc.Line {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/functional/src/main/java/org/gradle/internal/io/IoRunnable.java

     */
    @FunctionalInterface
    public interface IoRunnable {
        void run() throws IOException;
    
        /**
         * Wraps an {@link IOException}-throwing {@link IoRunnable} into a regular {@link Runnable}.
         *
         * Any {@code IOException}s are rethrown as {@link UncheckedIOException}.
         */
        static Runnable wrap(IoRunnable runnable) {
            return () -> {
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:33 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. platforms/software/resources/src/main/java/org/gradle/internal/resource/local/FileResourceListener.java

    import org.gradle.internal.service.scopes.Scope;
    
    import java.io.File;
    
    @EventScope(Scope.Build.class)
    public interface FileResourceListener {
        /**
         * Called when a file system resource is accessed as a regular file.
         */
        void fileObserved(File file);
    
        /**
         * Called when the children of a file system resource are listed.
         */
        void directoryChildrenObserved(File file);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. src/encoding/json/example_text_marshaling_test.go

    	switch s {
    	default:
    		name = "unrecognized"
    	case Small:
    		name = "small"
    	case Large:
    		name = "large"
    	}
    	return []byte(name), nil
    }
    
    func Example_textMarshalJSON() {
    	blob := `["small","regular","large","unrecognized","small","normal","small","large"]`
    	var inventory []Size
    	if err := json.Unmarshal([]byte(blob), &inventory); err != nil {
    		log.Fatal(err)
    	}
    
    	counts := make(map[Size]int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 12 14:18:06 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  5. pkg/apis/core/pods/helpers_test.go

    		description string
    		path        *field.Path
    		haveSpec    *api.PodSpec
    		wantNames   []string
    	}{
    		{
    			"empty podspec",
    			field.NewPath("spec"),
    			&api.PodSpec{},
    			[]string{},
    		},
    		{
    			"regular containers",
    			field.NewPath("spec"),
    			&api.PodSpec{
    				Containers: []api.Container{
    					{Name: "c1"},
    					{Name: "c2"},
    				},
    			},
    			[]string{"spec.containers[0]", "spec.containers[1]"},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:35:30 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  6. src/os/dirent_dragonfly.go

    	switch typ {
    	case syscall.DT_BLK:
    		return ModeDevice
    	case syscall.DT_CHR:
    		return ModeDevice | ModeCharDevice
    	case syscall.DT_DBF:
    		// DT_DBF is "database record file".
    		// fillFileStatFromSys treats as regular file.
    		return 0
    	case syscall.DT_DIR:
    		return ModeDir
    	case syscall.DT_FIFO:
    		return ModeNamedPipe
    	case syscall.DT_LNK:
    		return ModeSymlink
    	case syscall.DT_REG:
    		return 0
    	case syscall.DT_SOCK:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 00:59:20 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  7. src/crypto/rand/rand_darwin.go

    func init() {
    	// arc4random_buf is the recommended application CSPRNG, accepts buffers of
    	// any size, and never returns an error.
    	//
    	// "The subsystem is re-seeded from the kernel random number subsystem on a
    	// regular basis, and also upon fork(2)." - arc4random(3)
    	//
    	// Note that despite its legacy name, it uses a secure CSPRNG (not RC4) in
    	// all supported macOS versions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:02:21 UTC 2024
    - 667 bytes
    - Viewed (0)
  8. test/fixedbugs/issue30862.dir/main.go

    import (
    	"fmt"
    	"os"
    
    	"issue30862.dir/b"
    )
    
    // Test case for issue 30862.
    
    // Be aware that unless GOEXPERIMENT=fieldtrack is set when building
    // the compiler, this test will fail if executed with a regular GC
    // compiler.
    
    func main() {
    	bad := b.Test()
    	if len(bad) > 0 {
    		for _, s := range bad {
    			fmt.Fprintf(os.Stderr, "test failed: %s\n", s)
    		}
    		os.Exit(1)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 26 18:43:12 UTC 2021
    - 549 bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/FileSystemLocationSnapshot.java

    import java.util.Optional;
    
    /**
     * A snapshot of a single location on the file system.
     *
     * We know everything about this snapshot, including children and Merkle hash.
     *
     * The snapshot can be a snapshot of a regular file or of a whole directory tree.
     * The file at the location is not required to exist (see {@link MissingFileSnapshot}).
     */
    public interface FileSystemLocationSnapshot extends FileSystemSnapshot, FileSystemNode, MetadataSnapshot {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 15:09:45 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/cover.bash

    # example:
    #
    #     ./cover.bash && go tool cover -html=cover.out
    #
    # This script is needed to set up a temporary test file, so that we don't break
    # regular 'go run .' usage to run the generator.
    
    cat >main_test.go <<-EOF
    	//go:build ignore
    
    	package main
    
    	import "testing"
    
    	func TestCoverage(t *testing.T) { main() }
    EOF
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 664 bytes
    - Viewed (0)
Back to top