Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for memprof (0.13 sec)

  1. src/runtime/testdata/testprog/memprof.go

    )
    
    func init() {
    	register("MemProf", MemProf)
    }
    
    var memProfBuf bytes.Buffer
    var memProfStr string
    
    func MemProf() {
    	// Force heap sampling for determinism.
    	runtime.MemProfileRate = 1
    
    	for i := 0; i < 10; i++ {
    		fmt.Fprintf(&memProfBuf, "%*d\n", i, i)
    	}
    	memProfStr = memProfBuf.String()
    
    	runtime.GC()
    
    	f, err := os.CreateTemp("", "memprof")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 869 bytes
    - Viewed (0)
  2. src/cmd/link/internal/benchmark/bench.go

    			// second GC to force sweep completion so we
    			// get a complete snapshot of the live heap at
    			// the end of this phase.
    			runtime.GC()
    			f, err := os.Create(makePProfFilename(m.filebase, m.curMark.name, "memprof"))
    			if err != nil {
    				panic(err)
    			}
    			err = pprof.WriteHeapProfile(f)
    			if err != nil {
    				panic(err)
    			}
    			err = f.Close()
    			if err != nil {
    				panic(err)
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 30 18:10:36 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. docs/pt/docs/tutorial/path-params.md

    <img src="/img/tutorial/path-params/image03.png">
    
    ### Trabalhando com os *enumeration* do Python
    
    O valor do *parâmetro da rota* será um *membro de enumeration*.
    
    #### Compare *membros de enumeration*
    
    Você pode comparar eles com o *membro de enumeration* no enum `ModelName` que você criou:
    
    ```Python hl_lines="17"
    {!../../../docs_src/path_params/tutorial005.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/base/login/SamlCredential.java

            final List<String> list = new ArrayList<>();
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final String key = fessConfig.getSystemProperty("saml.attribute.group.name", "memberOf");
            if (StringUtil.isNotBlank(key)) {
                final List<String> nameList = attributes.get(key);
                if (nameList != null) {
                    list.addAll(nameList);
                }
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. src/runtime/mklockrank.go

    < MALLOC
    # Below MALLOC is the malloc implementation.
    < fin,
      spanSetSpine,
      mspanSpecial,
      traceTypeTab,
      MPROF;
    
    # We can acquire gcBitsArenas for pinner bits, and
    # it's guarded by mspanSpecial.
    MALLOC, mspanSpecial < gcBitsArenas;
    
    # Memory profiling
    MPROF < profInsert, profBlock, profMemActive;
    profMemActive < profMemFuture;
    
    # Stack allocation and copying
    gcBitsArenas,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top