Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 86 for asmidx (0.15 sec)

  1. src/compress/gzip/gunzip_test.go

    			0x00,
    		},
    		nil,
    	},
    	{
    		"",
    		"truncated gzip file amid raw-block",
    		"hello",
    		[]byte{
    			0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff,
    			0x00, 0x0c, 0x00, 0xf3, 0xff, 0x68, 0x65, 0x6c, 0x6c, 0x6f,
    		},
    		io.ErrUnexpectedEOF,
    	},
    	{
    		"",
    		"truncated gzip file amid fixed-block",
    		"He",
    		[]byte{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 12 15:06:07 UTC 2022
    - 19.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/gccgo.go

    	}
    	fmt.Fprintf(os.Stderr, "cmd/go: gccgo: %s\n", gccgoErr)
    	base.SetExitStatus(2)
    	base.Exit()
    }
    
    func (tools gccgoToolchain) gc(b *Builder, a *Action, archive string, importcfg, embedcfg []byte, symabis string, asmhdr bool, pgoProfile string, gofiles []string) (ofile string, output []byte, err error) {
    	p := a.Package
    	sh := b.Shell(a)
    	objdir := a.Objdir
    	out := "_go_.o"
    	ofile = objdir + out
    	gcargs := []string{"-g"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. src/runtime/mgcscavenge.go

    	// Update minHeapIdx. Note that even if there's no mapping work to do,
    	// we may still have a new, lower minimum heap address.
    	minHeapIdx := s.minHeapIdx.Load()
    	if baseIdx := uintptr(chunkIndex(base)); minHeapIdx == 0 || baseIdx < minHeapIdx {
    		s.minHeapIdx.Store(baseIdx)
    	}
    	return s.sysGrow(base, limit, sysStat)
    }
    
    // find returns the highest chunk index that may contain pages available to scavenge.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/stream_executor/stream_executor.h

    } SP_AllocatorStats;
    
    #define SP_ALLOCATORSTATS_STRUCT_SIZE \
      TF_OFFSET_OF_END(SP_AllocatorStats, largest_free_block_bytes)
    
    // Potential states for an SP_Event. If `poll_for_status` returns anything aside
    // from kPending or kComplete, an error has occurred; kUnknown is a bad state.
    typedef enum SE_EventStatus {
      SE_EVENT_UNKNOWN,
      SE_EVENT_ERROR,
      SE_EVENT_PENDING,
      SE_EVENT_COMPLETE,
    } SE_EventStatus;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 24 08:40:35 UTC 2022
    - 21.6K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/x86/obj6.go

    	// processed twice.
    	if p.RegTo2 != 0 {
    		return
    	}
    	if p.As == obj.ATEXT || p.As == obj.AFUNCDATA || p.As == obj.ACALL || p.As == obj.ARET || p.As == obj.AJMP {
    		return
    	}
    	// Any Prog (aside from the above special cases) with an Addr with Name ==
    	// NAME_EXTERN, NAME_STATIC or NAME_GOTREF has a CALL __x86.get_pc_thunk.XX
    	// inserted before it.
    	isName := func(a *obj.Addr) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  6. architecture/networking/pilot.md

    #### Credentials Controller
    
    The Credentials controller exposes access to TLS certificate information, stored in cluster as `Secrets`. Aside from simply accessing certificates, it also has an authorization component that can verify whether a requester has access to read `Secret`s in its namespace.
    
    #### Discovery Filter
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/CoreJavadocOptions.java

         * -Jflag
         * <p>
         * Passes flag directly to the runtime system java that runs javadoc.
         * Notice there must be no space between the J and the flag. For example,
         * if you need to ensure that the system sets aside 32 megabytes of memory in which to process the generated documentation,
         * then you would call the -Xmx option of java as follows (-Xms is optional, as it only sets the size of initial memory,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/link.go

    	Attribute
    
    	Size   int64
    	Gotype *LSym
    	P      []byte
    	R      []Reloc
    
    	Extra *interface{} // *FuncInfo, *VarInfo, *FileInfo, or *TypeInfo, if present
    
    	Pkg    string
    	PkgIdx int32
    	SymIdx int32
    }
    
    // A FuncInfo contains extra fields for STEXT symbols.
    type FuncInfo struct {
    	Args      int32
    	Locals    int32
    	Align     int32
    	FuncID    abi.FuncID
    	FuncFlag  abi.FuncFlag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    [[sec:library_distribution]]
    == Distributing a library
    
    Aside from <<publishing_setup.adoc#publishing_components,publishing>> a library to a component repository, you may sometimes need to package a library and its dependencies in a distribution deliverable.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  10. src/encoding/gob/type.go

    		return tInterface.gobType(), nil
    
    	case reflect.Array:
    		at := newArrayType(name)
    		types[rt] = at
    		type0, err = getBaseType("", t.Elem())
    		if err != nil {
    			return nil, err
    		}
    		// Historical aside:
    		// For arrays, maps, and slices, we set the type id after the elements
    		// are constructed. This is to retain the order of type id allocation after
    		// a fix made to handle recursive types, which changed the order in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
Back to top