Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,326 for if (0.15 sec)

  1. .cm/misc_labels.cm

    # Each automation has an `if` key that defines conditions to run the automation,
    # as well as a `run` key with the actions to do. All the conditions need to be true
    # for the actions to run (there is an implicit AND relation between
    # the conditions on each line).  Each condition is specified as a Jinja expression.  You
    # can also use the constant `true` if you want to always run the actions.
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 3K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/policy/v1beta1/generated.proto

      // readOnlyRootFilesystem when set to true will force containers to run with a read only root file
      // system.  If the container specifically requests to run with a non-read only root file system
      // the PSP should deny the pod.
      // If set to false the container may run with a read only root file system if it wishes but it
      // will not be forced to.
      // +optional
      optional bool readOnlyRootFilesystem = 14;
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 19.6K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/flowcontrol/v1beta1/generated.proto

      // +optional
      optional FlowDistinguisherMethod distinguisherMethod = 3;
    
      // `rules` describes which requests will match this flow schema. This FlowSchema matches a request if and only if
      // at least one member of rules matches the request.
      // if it is an empty slice, there will be no requests matching the FlowSchema.
      // +listType=atomic
      // +optional
      repeated PolicyRulesWithSubjects rules = 4;
    }
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 19.4K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/flowcontrol/v1beta3/generated.proto

      // +optional
      optional FlowDistinguisherMethod distinguisherMethod = 3;
    
      // `rules` describes which requests will match this flow schema. This FlowSchema matches a request if and only if
      // at least one member of rules matches the request.
      // if it is an empty slice, there will be no requests matching the FlowSchema.
      // +listType=atomic
      // +optional
      repeated PolicyRulesWithSubjects rules = 4;
    }
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 19.5K bytes
    - Viewed (0)
  5. licenses/github.com/hashicorp/go-version/LICENSE

    5.1. The rights granted under this License will terminate automatically if You
         fail to comply with any of its terms. However, if You become compliant,
         then the rights granted under this License from a particular Contributor
         are reinstated (a) provisionally, unless and until such Contributor
         explicitly and finally terminates Your grants, and (b) on an ongoing basis,
         if such Contributor fails to notify You of the non-compliance by some
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  6. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10SymbolContainingDeclarationProvider.kt

            val symbolPsi = descriptor?.let(DescriptorToSourceUtils::getContainingFile) ?: symbol.psi
            if (symbolPsi != null) {
                return analysisSession.getModule(symbolPsi)
            }
    
            if (descriptor is DescriptorWithContainerSource) {
                return getFakeContainingKtModule(descriptor)
            }
    
            if (symbol is KtBackingFieldSymbol) {
                return getContainingModule(symbol.owningProperty)
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Dec 21 15:34:34 GMT 2023
    - 9.3K bytes
    - Viewed (0)
  7. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/ide/AndroidStudioSystemProperties.kt

        val studioInstallationProvider = providers.provider {
            if (autoDownloadAndroidStudio) {
                studioInstallation
            } else {
                null
            }
        }
    
        override fun asArguments(): Iterable<String> {
            val systemProperties = mutableListOf<String>()
    
            systemProperties.add(getStudioHome())
    
            if (runAndroidStudioInHeadlessMode) {
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Tue Feb 20 09:51:32 GMT 2024
    - 2.9K bytes
    - Viewed (0)
  8. internal/grid/README.md

    	
        payload := []byte("request")
        response, err := conn.SingleRequest(ctx, grid.HandlerDiskInfo, payload)
    ```
    
    If the error type is `*RemoteErr`, then the error was returned by the remote server. Otherwise it is a local error.
    
    Context timeouts are propagated, and a default timeout of 1 minute is added if none is specified.
    
    There is no cancellation propagation for single payload requests.
    Plain Text
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 9.4K bytes
    - Viewed (0)
  9. docs/zh/docs/external-links.md

    ## 文章
    
    ### 英文
    
    {% if external_links %}
    {% for article in external_links.articles.english %}
    
    * <a href="{{ article.link }}" class="external-link" target="_blank">{{ article.title }}</a> by <a href="{{ article.author_link }}" class="external-link" target="_blank">{{ article.author }}</a>.
    {% endfor %}
    {% endif %}
    
    ### 日文
    
    {% if external_links %}
    {% for article in external_links.articles.japanese %}
    Plain Text
    - Registered: Sun Mar 31 07:19:09 GMT 2024
    - Last Modified: Sat Mar 30 22:45:29 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  10. docs/en/docs/fastapi-people.md

    {% if sponsors %}
    
    {% if sponsors.gold %}
    
    ### Gold Sponsors
    
    {% for sponsor in sponsors.gold -%}
    <a href="{{ sponsor.url }}" target="_blank" title="{{ sponsor.title }}"><img src="{{ sponsor.img }}" style="border-radius:15px"></a>
    {% endfor %}
    {% endif %}
    
    {% if sponsors.silver %}
    
    ### Silver Sponsors
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Sat Mar 16 23:54:24 GMT 2024
    - 8.7K bytes
    - Viewed (0)
Back to top