Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for managed (0.21 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * -Dfile.encoding=UTF-8<br>
         * -Djna.nosys=true<br>
         * -Djdk.io.permissionsUseCanonicalPath=true<br>
         * -Dhttp.maxConnections=20<br>
         * -Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager<br>
         * -server<br>
         * -Xms128m<br>
         * -Xmx512m<br>
         * -XX:MaxMetaspaceSize=128m<br>
         * -XX:CompressedClassSpaceSize=32m<br>
         * -XX:-UseGCOverheadLimit<br>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
  2. docs/en/docs/release-notes.md

    * Fix serialization of errors for exotic Pydantic types. PR [#748](https://github.com/tiangolo/fastapi/pull/748) by [@dmontagu](https://github.com/dmontagu).
    
    ## 0.44.0
    
    * Add GitHub action [Issue Manager](https://github.com/tiangolo/issue-manager). PR [#742](https://github.com/tiangolo/fastapi/pull/742).
    * Fix typos in docs. PR [734](https://github.com/tiangolo/fastapi/pull/734) by [@bundabrg](https://github.com/bundabrg).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation.go

    		if _, ok := addresses[address]; ok {
    			allErrs = append(allErrs, field.Duplicate(field.NewPath("status", "addresses").Index(i), address))
    		}
    		addresses[address] = true
    	}
    
    	// Allow the controller manager to assign a CIDR to a node if it doesn't have one.
    	if len(oldNode.Spec.PodCIDRs) > 0 {
    		// compare the entire slice
    		if len(oldNode.Spec.PodCIDRs) != len(node.Spec.PodCIDRs) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  4. src/net/http/h2_bundle.go

    		http2cipher_TLS_PSK_WITH_AES_256_CCM,
    		http2cipher_TLS_PSK_WITH_AES_128_CCM_8,
    		http2cipher_TLS_PSK_WITH_AES_256_CCM_8:
    		return true
    	default:
    		return false
    	}
    }
    
    // ClientConnPool manages a pool of HTTP/2 client connections.
    type http2ClientConnPool interface {
    	// GetClientConn returns a specific HTTP/2 connection (usually
    	// a TLS-TCP connection) to an HTTP/2 server. On success, the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  5. prow/config/calico.yaml

      # Pools are watched to maintain a mapping of blocks to IP pools.
      - apiGroups: ["crd.projectcalico.org"]
        resources:
          - ippools
        verbs:
          - list
          - watch
      # kube-controllers manages hostendpoints.
      - apiGroups: ["crd.projectcalico.org"]
        resources:
          - hostendpoints
        verbs:
          - get
          - list
          - create
          - update
          - delete
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  6. doc/go_spec.html

    </p>
    
    <pre>
    panic(42)
    panic("unreachable")
    panic(Error("cannot parse"))
    </pre>
    
    <p>
    The <code>recover</code> function allows a program to manage behavior
    of a panicking goroutine.
    Suppose a function <code>G</code> defers a function <code>D</code> that calls
    <code>recover</code> and a panic occurs in a function on the same goroutine in which <code>G</code>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
Back to top