Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for memprof (0.11 sec)

  1. 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)
  2. src/runtime/crash_test.go

    		}
    
    		top, err := cmd.CombinedOutput()
    		t.Logf("%s:\n%s", cmd.Args, top)
    		if err != nil {
    			t.Error(err)
    		} else if !bytes.Contains(top, []byte("MemProf")) {
    			t.Error("missing MemProf in pprof output")
    		}
    	}
    }
    
    var concurrentMapTest = flag.Bool("run_concurrent_map_tests", false, "also run flaky concurrent map tests")
    
    func TestConcurrentMapWrites(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K 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/runtime/mprof.go

    Rhys Hiltner <******@****.***> 1717001018 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

                    for (final Map<String, Object> memberOf : memberOfList) {
                        if (logger.isDebugEnabled()) {
                            logger.debug("member: {}", memberOf);
                        }
                        String memberType = (String) memberOf.get("@odata.type");
                        if (memberType == null) {
                            logger.warn("@odata.type is null: {}", memberOf);
                            continue;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/net/interface.go

    				return matchingIP, nil
    			}
    		}
    	}
    	return nil, nil
    }
    
    // memberOf tells if the IP is of the desired family. Used for checking interface addresses.
    func memberOf(ip net.IP, family AddressFamily) bool {
    	if ip.To4() != nil {
    		return family == familyIPv4
    	} else {
    		return family == familyIPv6
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 27 07:07:03 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. cmd/iam-store.go

    		defer func() {
    			cache.updatedAt = time.Now()
    		}()
    
    		// 1. Start with updating user-group memberships
    		if store.getUsersSysType() == MinIOUsersSysType {
    			memberOf := cache.iamUserGroupMemberships[accessKey].ToSlice()
    			for _, group := range memberOf {
    				_, removeErr := removeMembersFromGroup(ctx, store, cache, group, []string{accessKey}, true)
    				if removeErr == errNoSuchGroup {
    					removeErr = nil
    				}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/Constants.java

        public static final String LDAP_ACCOUNT_FILTER = "ldap.account.filter";
    
        public static final String LDAP_GROUP_FILTER = "ldap.group.filter";
    
        public static final String LDAP_MEMBEROF_ATTRIBUTE = "ldap.memberof.attribute";
    
        public static final String NOTIFICATION_LOGIN = "notification.login";
    
        public static final String NOTIFICATION_SEARCH_TOP = "notification.search.top";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top