Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,203 for aranges (0.24 sec)

  1. architecture/build-state-model.md

    # Build state model
    
    The Gradle daemon tracks state for various elements. These are arranged in a hierarchy:
    
    ```mermaid
      graph TD
    
      process["build process"]
      
      session["build session"]
      process --> session
      
      build_tree["build tree"]
      session --> build_tree
      
      build1["root build"]
      build_tree --> build1
      
      project1["root project"]
      build1 --> project1
      
      project2["project"]
      build1 --> project2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/LinePreservingSubstringTest.kt

                equalTo(
                    """
                    buildscript {
                        // line 2
                    }""".replaceIndent()
                )
            )
        }
    
        @Test
        fun `given ranges linePreservingBlankRange should blank lines`() {
            val original = """
                |// line 1
                |// line 2
                |buildscript {
                |    // line 4
                |}
                |// line 6
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. cni/pkg/nodeagent/options.go

    	// APIPA/"link-local" IP.
    	//
    	// It doesn't matter what this IP is, so long as it's not routable and doesn't collide with anything else.
    	//
    	// IPv6 link local ranges are designed to be collision-resistant by default, and so probably never need to be overridden
    	DefaultHostProbeSNATIP   = "169.254.7.127"
    	DefaultHostProbeSNATIPV6 = "fd16:9254:7127:1337:ffff:ffff:ffff:ffff"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. cluster/addons/calico-policy-controller/networkpolicies-crd.yaml

                                the rule to only apply to traffic that has a source (destination)
                                port that matches one of these ranges/values. This value
                                is a list of integers or strings that represent ranges
                                of ports. \n Since only some protocols have ports, if
                                any ports are specified it requires the Protocol match
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 44.2K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.2.md

      - [Changes since v1.2.3](#changes-since-v123)
        - [Other notable changes](#other-notable-changes-3)
    - [v1.2.3](#v123)
      - [Downloads for v1.2.3](#downloads-for-v123)
      - [Changes since v1.2.2](#changes-since-v122)
        - [Action Required](#action-required)
        - [Other notable changes](#other-notable-changes-4)
    - [v1.2.2](#v122)
      - [Downloads for v1.2.2](#downloads-for-v122)
      - [Changes since v1.2.1](#changes-since-v121)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/typeMismatches.txt

        ARGUMENT_TYPE_MISMATCH      text ranges: [(54,55)]
          PSI: KtNameReferenceExpression at (4,9-10)
      for PSI element of type KtProperty at (1,1-16)
        INITIALIZER_TYPE_MISMATCH      text ranges: [(13,15)]
          PSI: KtProperty at (1,1-16)
      for PSI element of type KtConstantExpression at (5,12-13)
        RETURN_TYPE_MISMATCH      text ranges: [(68,69)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Dec 09 12:56:52 UTC 2021
    - 494 bytes
    - Viewed (0)
  7. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/errorsInFunctionalInterfacesInstances.txt

        ABSTRACT_MEMBER_NOT_IMPLEMENTED      text ranges: [(110,116)]
          PSI: KtObjectDeclaration at (7,14-48)
      for PSI element of type KtConstantExpression at (4,9-10)
        ARGUMENT_TYPE_MISMATCH      text ranges: [(88,89)]
          PSI: KtConstantExpression at (4,9-10)
      for PSI element of type KtConstantExpression at (10,38-39)
        RETURN_TYPE_MISMATCH      text ranges: [(230,231)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Dec 21 19:36:44 UTC 2023
    - 516 bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/RangeMap.java

      /**
       * Returns the range containing this key and its associated value, if such a range is present in
       * the range map, or {@code null} otherwise.
       */
      @CheckForNull
      Entry<Range<K>, V> getEntry(K key);
    
      /**
       * Returns the minimal range {@linkplain Range#encloses(Range) enclosing} the ranges in this
       * {@code RangeMap}.
       *
       * @throws NoSuchElementException if this range map is empty
       */
      Range<K> span();
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. src/unicode/graphic.go

    // IsOneOf reports whether the rune is a member of one of the ranges.
    // The function "In" provides a nicer signature and should be used in preference to IsOneOf.
    func IsOneOf(ranges []*RangeTable, r rune) bool {
    	for _, inside := range ranges {
    		if Is(inside, r) {
    			return true
    		}
    	}
    	return false
    }
    
    // In reports whether the rune is a member of one of the ranges.
    func In(r rune, ranges ...*RangeTable) bool {
    	for _, inside := range ranges {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. pkg/registry/core/rest/storage_core.go

    	Services ServicesConfig
    }
    
    type ProxyConfig struct {
    	Transport           http.RoundTripper
    	KubeletClientConfig kubeletclient.KubeletClientConfig
    }
    
    type ServicesConfig struct {
    	// Service IP ranges
    	ClusterIPRange          net.IPNet
    	SecondaryClusterIPRange net.IPNet
    	NodePortRange           utilnet.PortRange
    
    	IPRepairInterval time.Duration
    }
    
    type rangeRegistries struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 19.1K bytes
    - Viewed (0)
Back to top