Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 39 for churn (0.13 sec)

  1. guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

       * ThreadLocal; however, ThreadLocal is not well optimized for the case where the ThreadLocal is
       * non-static, and is initialized/removed frequently - this causes churn in the Thread specific
       * hashmaps. Using a static ThreadLocal to avoid that overhead would mean that different
       * ExecutionSequencer objects interfere with each other, which would be undesirable, in addition
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/values.yaml

        configSource:
          subscribedResources: []
    
        # The following is used to limit how long a sidecar can be connected
        # to a pilot. It balances out load across pilot instances at the cost of
        # increasing system churn.
        keepaliveMaxServerConnectionAge: 30m
    
        # Additional labels to apply to the deployment.
        deploymentLabels: {}
    
        ## Mesh config settings
    
        # Install the mesh config map, generated from values.yaml.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. src/syscall/syscall_linux_test.go

    		{call: "Setresuid(0,0,0)", fn: func() error { return syscall.Setresuid(0, 0, 0) }, filter: "Uid:", expect: "\t0\t0\t0\t0"},
    	}
    
    	for i, v := range vs {
    		// Generate some thread churn as we execute the tests.
    		c := make(chan struct{})
    		go killAThread(c)
    		close(c)
    
    		if err := v.fn(); err != nil {
    			t.Errorf("[%d] %q failed: %v", i, v.call, err)
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/import.go

    // allows 'go mod tidy' to preserve a minor checksum-preservation bug
    // (https://go.dev/issue/56222) for modules with 'go' versions between 1.17 and
    // 1.20, preventing unnecessary go.sum churn and network access in those
    // modules.
    func importFromModules(ctx context.Context, path string, rs *Requirements, mg *ModuleGraph, skipModFile bool) (m module.Version, modroot, dir string, altMods []module.Version, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/buildlist.go

    	)
    	for _, root := range rs.rootModules {
    		// If the selected version of the root is the same as what was already
    		// listed in the go.mod file, retain it as a root (even if redundant) to
    		// avoid unnecessary churn. (See https://golang.org/issue/34822.)
    		//
    		// We do this even for indirect requirements, since we don't know why they
    		// were added and they could become direct at any time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/init.go

    			// However, we didn't do so before Go 1.21, and the bug is relatively
    			// minor, so we maintain the previous (buggy) behavior in 'go mod tidy' to
    			// avoid introducing unnecessary churn.
    			if keepPkgGoModSums {
    				r := resolveReplacement(pkg.mod)
    				keep[modkey(r)] = true
    			}
    
    			if rs.pruning == pruned && pkg.mod.Path != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.18.md

    ### Bug or Regression
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 16 17:18:28 UTC 2021
    - 373.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/load.go

    		//
    		// We don't actually rely on that invariant at the moment, but it may
    		// improve efficiency somewhat and makes the behavior a bit easier to reason
    		// about (by reducing churn on the flag bits of dependencies), and costs
    		// essentially nothing (these atomic flag ops are essentially free compared
    		// to scanning source code for imports).
    		ld.applyPkgFlags(ctx, pkg, pkgInAll)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  9. docs/vi/docs/features.md

    Tất cả được dựa trên khai báo kiểu dữ liệu chuẩn của **Python 3.8** (cảm ơn Pydantic). Bạn không cần học cú pháp mới, chỉ cần biết chuẩn Python hiện đại.
    
    Nếu bạn cần 2 phút để làm mới lại cách sử dụng các kiểu dữ liệu mới của Python (thậm chí nếu bạn không sử dụng FastAPI), xem hướng dẫn ngắn: [Kiểu dữ liệu Python](python-types.md){.internal-link target=_blank}.
    
    Bạn viết chuẩn Python với kiểu dữ liệu như sau:
    
    ```Python
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. docs/vi/docs/python-types.md

    Bây giờ, bạn chỉ cần biết rằng `Annotated` tồn tại, và nó là tiêu chuẩn của Python. 😎
    
    
    Sau đó, bạn sẽ thấy sự **mạnh mẽ** mà nó có thể làm.
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top