Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 266 for umagic (0.15 sec)

  1. src/time/zoneinfo_read.go

    // (for example, the content of /etc/localtime on Unix systems).
    func LoadLocationFromTZData(name string, data []byte) (*Location, error) {
    	d := dataIO{data, false}
    
    	// 4-byte magic "TZif"
    	if magic := d.read(4); string(magic) != "TZif" {
    		return nil, errBadData
    	}
    
    	// 1-byte version, then 15 bytes of padding
    	var version int
    	var p []byte
    	if p = d.read(16); len(p) != 16 {
    		return nil, errBadData
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/filter/AnnotationProcessorFilter.java

            return new FilteringClassLoader(parent, getExtraAllowedPackages());
        }
    
        /**
         * Many popular annotation processors like lombok need access to compiler internals
         * to do their magic, e.g. to inspect or even change method bodies. This is not valid
         * according to the annotation processing spec, but forbidding it would upset a lot of
         * our users.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. src/internal/coverage/decodecounter/decodecounterfile.go

    		return nil, err
    	}
    	if cdr.debug {
    		fmt.Fprintf(os.Stderr, "=-= counter file header: %+v\n", cdr.hdr)
    	}
    	if !checkMagic(cdr.hdr.Magic) {
    		return nil, fmt.Errorf("invalid magic string: not a counter data file")
    	}
    	if cdr.hdr.Version > coverage.CounterFileVersion {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 27 15:29:54 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/extensibility/DefaultConvention.java

                        return result;
                    }
                }
                return DynamicInvokeResult.notFound();
            }
    
            @Nullable
            @SuppressWarnings("unused") // Groovy magic method
            public Object propertyMissing(String name) {
                return getProperty(name);
            }
    
            @Override
            public DynamicInvokeResult trySetProperty(String name, @Nullable Object value) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. src/runtime/netpoll_kqueue_event.go

    // Copyright 2024 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build darwin || dragonfly || freebsd
    
    package runtime
    
    // Magic number of identifier used for EVFILT_USER.
    // This number had zero Google results when it's created.
    // That way, people will be directed here when this number
    // get printed somehow and they search for it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:46 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testcarchive/carchive_test.go

    		mode string
    		size string
    		fmag string
    	}
    
    	var magbuf [len(magic)]byte
    	if _, err := io.ReadFull(f, magbuf[:]); err != nil {
    		t.Errorf("%s: archive too short", arname)
    		return
    	}
    	if string(magbuf[:]) != magic {
    		t.Errorf("%s: incorrect archive magic string %q", arname, magbuf)
    	}
    
    	off := int64(len(magic))
    	for {
    		if off&1 != 0 {
    			var b [1]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  7. src/hash/test_cases.txt

    There is no reason for any individual to have a computer in their home. -Ken Olsen, 1977
    It's a tiny change to the code and not completely disgusting. - Bob Manchek
    size:  a.out:  bad magic
    The major problem is with sendmail.  -Mark Horton
    Give me a rock, paper and scissors and I will move the world.  CCFestoon
    If the enemy is within range, then so are you.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.3K bytes
    - Viewed (0)
  8. test/fixedbugs/issue13160.go

    	for i := 0; i < p; i++ {
    		i := i
    		go func() {
    			for j := 0; j < N; j++ {
    				// Write a pointer using memmove.
    				copy(collider[i:i+1], ptrs[i:i+1])
    				// Write nil using memclr.
    				// (This is a magic loop that gets lowered to memclr.)
    				r := collider[i : i+1]
    				for k := range r {
    					r[k] = nil
    				}
    			}
    			done <- struct{}{}
    		}()
    	}
    	// Start readers.  They read pointers from slots
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.5K bytes
    - Viewed (0)
  9. src/runtime/time_windows_386.s

    	MOVL	$1000000000, CX
    	DIVL	CX
    	MOVL	AX, DI
    	MOVL	DX, SI
    
    	// DI = nano/100/1e9 = nano/1e11 = sec/100, DX = SI = nano/100%1e9
    	// split DX into seconds and nanoseconds by div 1e7 magic multiply.
    	MOVL	DX, AX
    	MOVL	$1801439851, CX
    	MULL	CX
    	SHRL	$22, DX
    	MOVL	DX, BX
    	IMULL	$10000000, DX
    	MOVL	SI, CX
    	SUBL	DX, CX
    
    	// DI = sec/100 (still)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 17:19:45 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/tests/device_compiler_serialize_test.cc

    namespace tensorflow {
    namespace {
    
    TEST_F(DeviceCompilerSerializeTest, PersistentCacheTest) {
      GraphDef graph = GetTestGraph({-1, 4});
    
      // Warmup the persistent cache(s) with multiple runs. 4 is a magic number to
      // detect non-determinism in TF when running the test.
      listener()->ClearListenerHistory();
      for (int b = 1; b < 4; ++b) {
        TF_ASSERT_OK(ExecuteWithBatch(graph, b));
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top