Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 68 of 68 for globAbs (0.25 sec)

  1. src/sync/atomic/atomic_test.go

    		t.Fatalf("wrong magic: %#x _ %#x != %#x _ %#x", x.before, x.after, magicptr, magicptr)
    	}
    }
    
    var global [1024]byte
    
    func testPointers() []unsafe.Pointer {
    	var pointers []unsafe.Pointer
    	// globals
    	for i := 0; i < 10; i++ {
    		pointers = append(pointers, unsafe.Pointer(&global[1<<i-1]))
    	}
    	// heap
    	pointers = append(pointers, unsafe.Pointer(new(byte)))
    	// nil
    	pointers = append(pointers, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  2. src/testing/testing.go

    			c.Fatalf("TempDir: %v", err)
    		}
    	}
    
    	if nonExistent {
    		c.Helper()
    
    		// Drop unusual characters (such as path separators or
    		// characters interacting with globs) from the directory name to
    		// avoid surprising os.MkdirTemp behavior.
    		mapper := func(r rune) rune {
    			if r < utf8.RuneSelf {
    				const allowed = "!#$%&()+,-.=@^_{}~ "
    				if '0' <= r && r <= '9' ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/generic.rules

    	=> ptr
    
    (NilCheck ptr:(OffPtr (SelectN [0] call:(StaticLECall _ _))) _)
    	&& isSameCall(call.Aux, "runtime.newobject")
    	&& warnRule(fe.Debug_checknil(), v, "removed nil check")
    	=> ptr
    
    // Addresses of globals are always non-nil.
    (NilCheck          ptr:(Addr {_} (SB))    _) => ptr
    (NilCheck ptr:(Convert (Addr {_} (SB)) _) _) => ptr
    
    // for late-expanded calls, recognize memequal applied to a single constant byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  4. api/go1.16.txt

    pkg io/fs, type FileInfo interface, Size() int64
    pkg io/fs, type FileInfo interface, Sys() interface{}
    pkg io/fs, type FileMode uint32
    pkg io/fs, type GlobFS interface { Glob, Open }
    pkg io/fs, type GlobFS interface, Glob(string) ([]string, error)
    pkg io/fs, type GlobFS interface, Open(string) (File, error)
    pkg io/fs, type PathError struct
    pkg io/fs, type PathError struct, Err error
    pkg io/fs, type PathError struct, Op string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    	defvars []map[ir.Node]*ssa.Value
    
    	// addresses of PPARAM and PPARAMOUT variables on the stack.
    	decladdrs map[*ir.Name]*ssa.Value
    
    	// starting values. Memory, stack pointer, and globals pointer
    	startmem *ssa.Value
    	sp       *ssa.Value
    	sb       *ssa.Value
    	// value representing address of where deferBits autotmp is stored
    	deferBitsAddr *ssa.Value
    	deferBitsTemp *ir.Name
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  6. pkg/generated/openapi/zz_generated.openapi.go

    will be invoked and given a chance to provide credentials. Images are expected to contain the registry domain and URL path.\n\nEach entry in matchImages is a pattern which can optionally contain a port and a path. Globs can be used in the domain, but not in the port or the path. Globs are supported as subdomains like '*.k8s.io' or 'k8s.*.io', and top-level-domains such as 'k8s.*'. Matching partial subdomains like 'app*.k8s.io' is also supported. Each glob can only match a single subdomain segment,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"File", Type, 16},
    		{"FileInfo", Type, 16},
    		{"FileInfoToDirEntry", Func, 17},
    		{"FileMode", Type, 16},
    		{"FormatDirEntry", Func, 21},
    		{"FormatFileInfo", Func, 21},
    		{"Glob", Func, 16},
    		{"GlobFS", Type, 16},
    		{"ModeAppend", Const, 16},
    		{"ModeCharDevice", Const, 16},
    		{"ModeDevice", Const, 16},
    		{"ModeDir", Const, 16},
    		{"ModeExclusive", Const, 16},
    		{"ModeIrregular", Const, 16},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  8. RELEASE.md

    *   Fixed `tf.set_random_seed(0)` to be deterministic for all ops.
    *   Stability improvements for the GCS file system support.
    *   Improved TensorForest performance.
    *   Added support for multiple filename globs in `tf.matching_files`.
    *   `LogMessage` now includes a timestamp as beginning of a message.
    *   Added MultiBox person detector example standalone binary.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top