Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for oplus (1.49 sec)

  1. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            def files = collection.files
    
            then:
            1 * callable.call() >> null
            0 * fileResolver._
            files.empty
        }
    
        def "can append contents to convention-based collection using plus operator"() {
            given:
            def file1 = new File("1")
            def file2 = new File("2")
            def src = containing(file2)
    
            when:
            collection.convention("src1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  2. src/fmt/fmt_test.go

    	// f.space should and f.plus should not have an effect with %v.
    	{"% v", []byte{1, 11, 111}, "[ 1  11  111]"},
    	{"%+v", [3]byte{1, 11, 111}, "[1 11 111]"},
    	{"%# -6v", []byte{1, 11, 111}, "[]byte{ 0x1  ,  0xb  ,  0x6f }"},
    	{"%#+-6v", [3]byte{1, 11, 111}, "[3]uint8{0x1   , 0xb   , 0x6f  }"},
    	// f.space and f.plus should have an effect with %d.
    	{"% d", []byte{1, 11, 111}, "[ 1  11  111]"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  3. src/runtime/mgcpacer.go

    	//
    	// Read and written with the world stopped or with mheap_.lock held.
    	lastHeapGoal uint64
    
    	// heapLive is the number of bytes considered live by the GC.
    	// That is: retained by the most recent GC plus allocated
    	// since then. heapLive ≤ memstats.totalAlloc-memstats.totalFree, since
    	// heapAlloc includes unmarked objects that have not yet been swept (and
    	// hence goes up as we allocate and down as we sweep) while heapLive
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. pkg/proxy/nftables/proxier.go

    		servicePortName.NamespacedName.Name,
    		protocol,
    		servicePortName.Port,
    	)
    
    	// The namespace, service, and port name can each be up to 63 characters, protocol
    	// can be up to 4, plus 8 for the hash and 4 additional punctuation characters.
    	// That's a total of 205, which is less than chainNameBaseLengthMax (240). So this
    	// will never actually return a truncated name.
    	return hashAndTruncate(name)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  5. src/regexp/syntax/parse.go

    	var size int64
    	switch re.Op {
    	case OpLiteral:
    		size = int64(len(re.Rune))
    	case OpCapture, OpStar:
    		// star can be 1+ or 2+; assume 2 pessimistically
    		size = 2 + p.calcSize(re.Sub[0], false)
    	case OpPlus, OpQuest:
    		size = 1 + p.calcSize(re.Sub[0], false)
    	case OpConcat:
    		for _, sub := range re.Sub {
    			size += p.calcSize(sub, false)
    		}
    	case OpAlternate:
    		for _, sub := range re.Sub {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/dwarf.go

    	dwarf.Uleb128put(d, fsd, int64(thearch.Dwarfregsp)) // ...to use the value in the platform's SP register (defined in l.go)...
    	if haslr {
    		dwarf.Uleb128put(d, fsd, int64(0)) // ...plus a 0 offset.
    
    		fsu.AddUint8(dwarf.DW_CFA_same_value) // The platform's link register is unchanged during the prologue.
    		dwarf.Uleb128put(d, fsd, int64(thearch.Dwarfreglr))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

            arrayAccessExpression: KtArrayAccessExpression,
        ): CompoundArrayAccessPartiallyAppliedSymbols? {
            // The last argument of `set` is the new value to be set. This value should be a call to the respective `plus`, `minus`,
            // `times`, `div`, or `rem` function.
            val operationCall = fir.arguments.lastOrNull() as? FirFunctionCall ?: return null
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Synchronized.java

     * Kotlin code. In this class, nothing is publicly visible (nor exposed indirectly through a
     * publicly visible subclass), and I doubt any of our current or future Kotlin extensions for the
     * package will refer to the class. Plus, @ParametricNullness is only a temporary workaround,
     * anyway, so we just need to get by without the annotations here until Kotlin better understands
     * our other nullness annotations.
     */
    final class Synchronized {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 53.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Synchronized.java

     * Kotlin code. In this class, nothing is publicly visible (nor exposed indirectly through a
     * publicly visible subclass), and I doubt any of our current or future Kotlin extensions for the
     * package will refer to the class. Plus, @ParametricNullness is only a temporary workaround,
     * anyway, so we just need to get by without the annotations here until Kotlin better understands
     * our other nullness annotations.
     */
    final class Synchronized {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 57.3K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_container.go

    }
    
    // startSpec wraps the spec required to start a container, either a regular/init container
    // or an ephemeral container. Ephemeral containers contain all the fields of regular/init
    // containers, plus some additional fields. In both cases startSpec.container will be set.
    type startSpec struct {
    	container          *v1.Container
    	ephemeralContainer *v1.EphemeralContainer
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
Back to top