Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 737 for numKeys (0.66 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/CharSequenceExtensions.kt

    }
    
    
    /**
     * Computes the 1-based line and column numbers from the given [range].
     */
    internal
    fun CharSequence.lineAndColumnFromRange(range: IntRange): Pair<Int, Int> {
        require(range.endInclusive <= lastIndex)
        return lineAndColumnFor(range.start)
    }
    
    
    /**
     * Computes the 1-based line and column numbers for the given [index].
     */
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/OrderingTest.java

        Ordering<Number> i = numbers.compound(objects.compound(objects));
        Ordering<Number> j = objects.compound(numbers.compound(objects)); // bad IDEA
        Ordering<Number> k = objects.compound(objects.compound(numbers));
    
        // You can also arbitrarily assign a more restricted type - not an intended
        // feature, exactly, but unavoidable (I think) and harmless
        Ordering<Integer> l = objects.compound(numbers);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  3. internal/bucket/lifecycle/expiration.go

    // greater than zero
    func (eDays *ExpirationDays) UnmarshalXML(d *xml.Decoder, startElement xml.StartElement) error {
    	var numDays int
    	err := d.DecodeElement(&numDays, &startElement)
    	if err != nil {
    		return err
    	}
    	if numDays <= 0 {
    		return errLifecycleInvalidDays
    	}
    	*eDays = ExpirationDays(numDays)
    	return nil
    }
    
    // MarshalXML encodes number of days to expire if it is non-zero and
    // encodes empty string otherwise
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 21 20:28:34 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/controlFlow/unconditionalJumps/nonLocalReturn.txt

    KaDataFlowExitPointSnapshot:
      defaultExpressionInfo = DefaultExpressionInfo:
        expression = numbers.forEach {
                if (it == 3) {
                    return
                }
            }
        type = kotlin.Unit
      hasEscapingJumps = true
      hasJumps = true
      hasMultipleJumpKinds = false
      hasMultipleJumpTargets = false
      jumpExpressions = [
        return
      ]
      returnValueType = null
      valuedReturnExpressions = []
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 439 bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/base/OptionalTest.java

        // Number value = optionalInt.or(0.5); // error
      }
    
      @SuppressWarnings("unused") // compilation test
      public void testSampleCodeError2() {
        FluentIterable<? extends Number> numbers = getSomeNumbers();
        Optional<? extends Number> first = numbers.first();
        // Number value = first.or(0.5); // error
      }
    
      @SuppressWarnings("unused") // compilation test
      public void testSampleCodeFine1() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 18:32:41 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/CombinatorsTest.kt

            assertSuccess(parser("13UL"))
            assertSuccess(parser("1_000_000ul"))
    
            // hex numbers
            assertSuccess(parser("0x0"))
            assertSuccess(parser("0X0"))
            assertSuccess(parser("0Xff_ee"))
            assertSuccess(parser("0Xabc_e"))
    
            // binary numbers
            assertSuccess(parser("0b0"))
            assertSuccess(parser("0B0"))
            assertSuccess(parser("0b101010"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  7. pkg/controller/endpointslicemirroring/metrics/cache.go

    }
    
    // EndpointPortCache tracks values for total numbers of desired endpoints as well
    // as the efficiency of EndpointSlice endpoints distribution for each unique
    // Service Port combination.
    type EndpointPortCache struct {
    	items map[endpointsliceutil.PortMapKey]EfficiencyInfo
    }
    
    // EfficiencyInfo stores the number of Endpoints and Slices for calculating
    // total numbers of desired endpoints and the efficiency of EndpointSlice
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/testdata/infloop.go

    package main
    
    var sink int
    
    //go:noinline
    func test() {
    	// This is for #30167, incorrect line numbers in an infinite loop
    	go func() {}()
    
    	for {
    	}
    }
    
    func main() {
    	test()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 21:04:34 UTC 2019
    - 177 bytes
    - Viewed (0)
  9. test/ken/cplx0.go

    // run
    
    // Copyright 2010 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test trivial, bootstrap-level complex numbers, including printing.
    
    package main
    
    const (
    	R = 5
    	I = 6i
    
    	C1 = R + I // ADD(5,6)
    )
    
    func doprint(c complex128) { println(c) }
    
    func main() {
    
    	// constants
    	println(C1)
    	doprint(C1)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 31 17:36:45 UTC 2018
    - 455 bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/ipset/types.go

    	// you can store IP address and protocol-port pairs in it.  TCP, SCTP, UDP, UDPLITE, ICMP and ICMPv6 are supported
    	// with port numbers/ICMP(v6) types and other protocol numbers without port information.
    	HashIPPort Type = "hash:ip,port"
    	// HashIPPortIP represents the `hash:ip,port,ip` type ipset.  The hash:ip,port,ip set type uses a hash to store
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top