Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 266 for umagic (0.11 sec)

  1. pkg/test/echo/server/endpoint/tcp.go

    	defer func() {
    		if err != nil && err != io.EOF {
    			_ = forceClose(conn)
    		} else {
    			_ = conn.Close()
    		}
    	}()
    
    	// If this is server first, client expects a message from server. Send the magic string.
    	if s.Port.ServerFirst {
    		if _, err = conn.Write([]byte(common.ServerFirstMagicString)); err != nil {
    			epLog.WithLabels("id", id).Warnf("TCP server-first write failed: %v", err)
    			return
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 16:20:31 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/base/link.go

    package base
    
    import (
    	"cmd/internal/obj"
    )
    
    // ReservedImports are import paths used internally for generated
    // symbols by the compiler.
    //
    // The linker uses the magic symbol prefixes "go:" and "type:".
    // Avoid potential confusion between import paths and symbols
    // by rejecting these reserved imports for now. Also, people
    // "can do weird things in GOPATH and we'd prefer they didn't
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 11:28:56 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/tests/device_compiler_serialize_options_test.cc

    namespace tensorflow {
    namespace {
    
    TEST_F(DeviceCompilerSerializeTest, PersistentCacheOptionsTest) {
      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.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewritegeneric.go

    	// result: (Trunc32to16 (Rsh32Ux64 <typ.UInt32> (Mul32 <typ.UInt32> (Const32 <typ.UInt32> [int32(1<<15+umagic16(c).m/2)]) (ZeroExt16to32 x)) (Const64 <typ.UInt64> [16+umagic16(c).s-1])))
    	for {
    		x := v_0
    		if v_1.Op != OpConst16 {
    			break
    		}
    		c := auxIntToInt16(v_1.AuxInt)
    		if !(umagicOK16(c) && config.RegSize == 4 && umagic16(c).m&1 == 0) {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  5. src/cmd/internal/test2json/test2json.go

    	ok := false
    	indent := 0
    	for _, magic := range updates {
    		if bytes.HasPrefix(line, magic) {
    			ok = true
    			break
    		}
    	}
    	if !ok {
    		// "--- PASS: "
    		// "--- FAIL: "
    		// "--- SKIP: "
    		// "--- BENCH: "
    		// but possibly indented.
    		for bytes.HasPrefix(line, fourSpace) {
    			line = line[4:]
    			indent++
    		}
    		for _, magic := range reports {
    			if bytes.HasPrefix(line, magic) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 14.5K bytes
    - Viewed (0)
  6. src/runtime/vdso_elf32.go

    	vd_aux     uint32 /* Offset in bytes to verdaux array */
    	vd_next    uint32 /* Offset in bytes to next verdef entry */
    }
    
    type elfEhdr struct {
    	e_ident     [_EI_NIDENT]byte /* Magic number and other info */
    	e_type      uint16           /* Object file type */
    	e_machine   uint16           /* Architecture */
    	e_version   uint32           /* Object file version */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/README.md

    Directly serializing these types to proto will not result in data that matches
    the wire format or is compatible with other kubernetes ecosystem tools. The
    reason is that the wire format includes a magic prefix and an envelope proto.
    Please see:
    https://kubernetes.io/docs/reference/using-api/api-concepts/#protobuf-encoding
    
    For the same reason, we do not recommend embedding these proto objects within
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 03 01:38:34 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  8. src/runtime/vdso_elf64.go

    	vd_aux     uint32 /* Offset in bytes to verdaux array */
    	vd_next    uint32 /* Offset in bytes to next verdef entry */
    }
    
    type elfEhdr struct {
    	e_ident     [_EI_NIDENT]byte /* Magic number and other info */
    	e_type      uint16           /* Object file type */
    	e_machine   uint16           /* Architecture */
    	e_version   uint32           /* Object file version */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 19:32:35 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluator.java

            /*
             * MNG-4312: We neither have reserved all of the above magic expressions nor is their set fixed/well-known (it
             * gets occasionally extended by newer Maven versions). This imposes the risk for existing plugins to
             * unintentionally use such a magic expression for an ordinary property. So here we check whether we
             * ended up with a magic value that is not compatible with the type of the configured mojo parameter (a string
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  10. src/debug/macho/file_test.go

    	}
    }
    
    func TestOpenFat(t *testing.T) {
    	ff, err := openFatObscured("testdata/fat-gcc-386-amd64-darwin-exec.base64")
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	if ff.Magic != MagicFat {
    		t.Errorf("OpenFat: got magic number %#x, want %#x", ff.Magic, MagicFat)
    	}
    	if len(ff.Arches) != 2 {
    		t.Errorf("OpenFat: got %d architectures, want 2", len(ff.Arches))
    	}
    
    	for i := range ff.Arches {
    		arch := &ff.Arches[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 12.4K bytes
    - Viewed (0)
Back to top