Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for whatev (0.18 sec)

  1. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

       * General magic matches which could trigger a false-positive need
         a low one
       * The priority for containers normally need to be higher than for
         the things they contain, so they don't accidently get detected
         as what's in them
       * For logic too complex to be expressed in a magic match, do the best
         you can here, then provide a Custom Detector for the rest
    -->
    <mime-info xmlns:tika="https://tika.apache.org/">
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    // main ServeHTTP goroutine, this will show up rarely.
    var http2errHandlerPanicked = errors.New("http2: handler panicked")
    
    // wroteFrame is called on the serve goroutine with the result of
    // whatever happened on writeFrameAsync.
    func (sc *http2serverConn) wroteFrame(res http2frameWriteResult) {
    	sc.serveG.check()
    	if !sc.writingFrame {
    		panic("internal error: expected to be already writing a frame")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.6.md

      * You can find out what taints you have in place on a node while you are still running Kubernetes 1.5 by doing `kubectl describe node <node name>`; the `Taints` section will show the taints you have in place. To see the taints that were created under 1.5 when you are running...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  4. ChangeLog.md

    - [`KT-67347`](https://youtrack.jetbrains.com/issue/KT-67347) Remove docs on dropped K/JS feature "Ignoring compilation errors"
    - [`KT-64710`](https://youtrack.jetbrains.com/issue/KT-64710) [Docs] Update What's new for 2.0.0-BetaX
    - [`KT-63001`](https://youtrack.jetbrains.com/issue/KT-63001) K2: Organize team-wide talks about new FIR2IR & PCLA
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.11.md

    Kubernetes 1.11 also makes it easier to see what's happening, as audit events can now be annotated with information about how an API request was handled:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
  6. doc/go_spec.html

    </p>
    
    <h3 id="Tokens">Tokens</h3>
    
    <p>
    Tokens form the vocabulary of the Go language.
    There are four classes: <i>identifiers</i>, <i>keywords</i>, <i>operators
    and punctuation</i>, and <i>literals</i>.  <i>White space</i>, formed from
    spaces (U+0020), horizontal tabs (U+0009),
    carriage returns (U+000D), and newlines (U+000A),
    is ignored except as it separates tokens
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  7. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

            "properties": {
              "excludeResourceRules": {
                "description": "ExcludeResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy should not care about. The exclude rules take precedence over include rules (if a resource matches both, it is excluded)",
                "items": {
                  "allOf": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types.go

    }
    
    // StorageMedium defines ways that storage can be allocated to a volume.
    type StorageMedium string
    
    const (
    	StorageMediumDefault         StorageMedium = ""           // use whatever the default is for the node, assume anything we don't explicitly handle is this
    	StorageMediumMemory          StorageMedium = "Memory"     // use memory (e.g. tmpfs on linux)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    		name        string
    		storedRule  string
    		updatedRule string
    		errors      []validationMatch
    	}{
    		{
    			name:        "functions declared for storage mode allowed if expression is unchanged from what is stored",
    			storedRule:  "test() == true",
    			updatedRule: "test() == true",
    		},
    		{
    			name:        "functions declared for storage mode not allowed if expression is changed",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.28.md

     
    ## Changes by Kind
    
    ### Deprecation
    
    - Changed `kubectl version` default output to be identical to what `kubectl version --short` printed,
      and removed `--short` flag entirely. ([#116720](https://github.com/kubernetes/kubernetes/pull/116720), [@soltysh](https://github.com/soltysh))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
Back to top