Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 55 for default_ (0.19 sec)

  1. ChangeLog.md

    - [`KT-65453`](https://youtrack.jetbrains.com/issue/KT-65453) Kapt4:  error "annotation `@ParameterName` is missing a default value for the element 'name'" for a composable lambda fun without parameters
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  2. docs/en/docs/release-notes.md

    @app.get("/items/{item_id}")
    def main(
        item_id: int = Path(default=..., gt=0),
        query: str = Query(default=..., max_length=10),
        session: str = Cookie(default=..., min_length=3),
        x_trace: str = Header(default=..., title="Tracing header"),
    ):
        return {"message": "Hello World"}
    ```
    
    ...all these parameters are required because the default value is `...` (Ellipsis).
    
    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. doc/go_spec.html

    a single one that can proceed is chosen via a uniform pseudo-random selection.
    Otherwise, if there is a default case, that case is chosen.
    If there is no default case, the "select" statement blocks until
    at least one of the communications can proceed.
    </li>
    
    <li>
    Unless the selected case is the default case, the respective communication
    operation is executed.
    </li>
    
    <li>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  4. pkg/proxy/iptables/proxier_test.go

    				return true
    			case !strings.HasPrefix(string(table.Chains[i].Name), "KUBE-") && strings.HasPrefix(string(table.Chains[j].Name), "KUBE-"):
    				// non-KUBE-* goes after KUBE-*
    				return false
    			default:
    				// We have two KUBE-* chains or two non-KUBE-* chains; either
    				// way they sort alphabetically
    				return table.Chains[i].Name < table.Chains[j].Name
    			}
    		})
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.25.md

    - Graduated ServerSideFieldValidation to `beta`. Schema validation is performed server-side and requests will receive warnings for any invalid/unknown fields by default. ([#110178](https://github.com/kubernetes/kubernetes/pull/110178),...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        // {sub} the subdiagonal alignment. "LEFT" means rows will be padded to the
        // left, "RIGHT" means rows will be padded ot the right.  The default is
        // "RIGHT_LEFT".
        StringRef align = op->getAttrOfType<StringAttr>("align").getValue();
        enum Alignment { kLeft, kRight };
    
        // default is RIGHT_LEFT
        Alignment superdiagonal_align = kRight;
        Alignment subdiagonal_align = kLeft;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  7. pkg/apis/core/v1/zz_generated.conversion.go

    	out.Type = core.LimitType(in.Type)
    	out.Max = *(*core.ResourceList)(unsafe.Pointer(&in.Max))
    	out.Min = *(*core.ResourceList)(unsafe.Pointer(&in.Min))
    	out.Default = *(*core.ResourceList)(unsafe.Pointer(&in.Default))
    	out.DefaultRequest = *(*core.ResourceList)(unsafe.Pointer(&in.DefaultRequest))
    	out.MaxLimitRequestRatio = *(*core.ResourceList)(unsafe.Pointer(&in.MaxLimitRequestRatio))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  8. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

        <sub-class-of type="application/dita+xml"/>
        <_comment>DITA Topic</_comment>
        <root-XML localName="topic"/>
        <root-XML localName="topic" namespaceURI="http://docs.oasis-open.org/namespace"/>
        <!-- Topic is the default, Task and Concept are specialisations -->
        <glob pattern="*.dita"/>
      </mime-type>
      <mime-type type="application/dita+xml;format=task">
        <sub-class-of type="application/dita+xml"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.26.md

    - [kubelet] Change default `cpuCFSQuotaPeriod` value with enabled `cpuCFSQuotaPeriod` flag from 100ms to 100µs to match the Linux CFS and k8s defaults. `cpuCFSQuotaPeriod` of 100ms now requires `customCPUCFSQuotaPeriod` flag to be set to work. ([#111520](https://github.com/kubernetes/kubernetes/pull/111520), [@paskal](https://github.com/paskal))...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.24.md

    see [this guide](https://kubernetes.io/blog/2022/03/31/ready-for-dockershim-removal/).
    
    ### Beta APIs Off by Default
    
    [New beta APIs will not be enabled in clusters by default](https://github.com/kubernetes/enhancements/issues/3136).
    Existing beta APIs and new versions of existing beta APIs, will continue to be enabled by default.
    
    ### Signing Release Artifacts
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
Back to top