Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 84 for logic (0.04 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Ignore configuration inputs sparingly, and only if they do not affect the tasks produced by the configuration logic.
    The support for these options will be removed in future releases.
    
    
    [[config_cache:testing]]
    == Testing your build logic
    
    The Gradle TestKit (a.k.a. just TestKit) is a library that aids in testing Gradle plugins and build logic generally.
    For general guidance on how to use TestKit, see the <<test_kit.adoc#test_kit,dedicated chapter>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    ```
    
    This situation may arise when plugins or build logic eagerly queries an existing JVM Configuration's attributes to create a new Configuration with the same attributes.
    Previously, this logic would have omitted the two above noted attributes entirely, while now the same logic will copy the attributes and finalize the project's Java toolchain.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.3.md

    * Back port - Openstack provider allowing more than one service port for lbaas v2 ([#32001](https://github.com/kubernetes/kubernetes/pull/32001), [@dagnello](https://github.com/dagnello))
    * Fix a bug in kubelet hostport logic which flushes KUBE-MARK-MASQ iptables chain ([#32413](https://github.com/kubernetes/kubernetes/pull/32413), [@freehan](https://github.com/freehan))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  4. src/crypto/tls/common.go

    		}
    	}
    
    	// supportsRSAFallback returns nil if the certificate and connection support
    	// the static RSA key exchange, and unsupported otherwise. The logic for
    	// supporting static RSA is completely disjoint from the logic for
    	// supporting signed key exchanges, so we just check it as a fallback.
    	supportsRSAFallback := func(unsupported error) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/prove.go

    			}
    
    			if branch != unknown {
    				addBranchRestrictions(ft, parent, branch)
    				// After we add the branch restriction, re-check the logic operations in the parent block,
    				// it may give us more info to omit some branches
    				if logic, ok := logicVars[parent]; ok {
    					for _, v := range logic {
    						// we only have OpAnd for now
    						ft.update(parent, v, v.Args[1], unsigned, lt|eq)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    === Automatic build import vs. automatic reloading of script dependencies
    
    Both IntelliJ IDEA and Android Studio — which is derived from IntelliJ IDEA — will detect when you make changes to your build logic and offer two suggestions:
    
     1. Import the whole build again
    +
    image::intellij-build-import-popup.png[IntelliJ IDEA, width=300]
    +
    image::android-studio-build-sync-popup.png[IntelliJ IDEA]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener.go

    	TCPOverAuto
    	// AutoOverHTTP represents incoming AUTO existing HTTP
    	AutoOverHTTP
    	// AutoOverTCP represents incoming AUTO existing TCP
    	AutoOverTCP
    )
    
    // A set of pre-allocated variables related to protocol sniffing logic for
    // propagating the ALPN to upstreams
    var (
    	// These are sniffed by the HTTP Inspector in the outbound listener
    	// We need to forward these ALPNs to upstream so that the upstream can
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. pkg/apis/admissionregistration/types.go

    	// There are a maximum of 64 match conditions allowed.
    	//
    	// If a parameter object is provided, it can be accessed via the `params` handle in the same
    	// manner as validation expressions.
    	//
    	// The exact matching logic is (in order):
    	//   1. If ANY matchCondition evaluates to FALSE, the policy is skipped.
    	//   2. If ALL matchConditions evaluate to TRUE, the policy is evaluated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // namespaceSelector, and objectSelector. An empty list of matchConditions matches all requests.
      // There are a maximum of 64 match conditions allowed.
      //
      // The exact matching logic is (in order):
      //   1. If ANY matchCondition evaluates to FALSE, the webhook is skipped.
      //   2. If ALL matchConditions evaluate to TRUE, the webhook is called.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // namespaceSelector, and objectSelector. An empty list of matchConditions matches all requests.
      // There are a maximum of 64 match conditions allowed.
      //
      // The exact matching logic is (in order):
      //   1. If ANY matchCondition evaluates to FALSE, the webhook is skipped.
      //   2. If ALL matchConditions evaluate to TRUE, the webhook is called.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
Back to top