Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 312 for middot (0.18 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                            version("my.middle", "1.0")
                            version("my.middle.bottom", "1.1")
                        }
                    }
                }
            """
    
            buildFile """
                tasks.register("dumpVersions") {
                    def first = libs.versions.my.middle.asProvider()
                    def second = libs.versions.my.middle.bottom
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  2. test/recover4.go

    // after each modification, the result will be a stale value of n.
    //
    // The test is set up by mmapping a 64 kB block of memory and then
    // unmapping a 16 kB hole in the middle of it. Running memcopy
    // on the resulting slice will fault when it reaches the hole.
    
    package main
    
    import (
    	"log"
    	"runtime/debug"
    	"syscall"
    )
    
    func memcopy(dst, src []byte) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/google/AbstractMultimapTester.java

      private M multimap;
    
      protected M multimap() {
        return multimap;
      }
    
      /**
       * @return an array of the proper size with {@code null} as the key of the middle element.
       */
      protected Entry<K, V>[] createArrayWithNullKey() {
        Entry<K, V>[] array = createSamplesArray();
        int nullKeyLocation = getNullLocation();
        Entry<K, V> oldEntry = array[nullKeyLocation];
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tf_tfl_passes.h

        const mlir::TFL::PassConfig& pass_config,
        mlir::OpPassManager& pass_manager);
    
    // This is the early part of the conversion in isolation. This enables a caller
    // to inject more information in the middle of the conversion before resuming it
    // (like freezing variables for example).
    void AddPreVariableFreezingTFToTFLConversionPasses(
        const mlir::TFL::PassConfig& pass_config,
        mlir::OpPassManager* pass_manager);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 01 06:14:07 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. test/fixedbugs/gcc61265.go

    // compile
    
    // Copyright 2014 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.
    
    // PR61265: The gccgo middle-end failed to represent array composite literals
    // where the elements are zero-sized values.
    // This is a reduction of a program reported by GoSmith.
    
    package p
    
    var a = [1][0]int{B}[0]
    var B = [0]int{}
    var c = [1]struct{}{D}[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 450 bytes
    - Viewed (0)
  6. test/fixedbugs/issue26340.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // gccgo did not permit omitting the type of a composite literal
    // element when one of the middle omitted types was a pointer type.
    
    package p
    
    type S []T
    type T struct { x int }
    
    var _ = map[string]*S{
    	"a": {
    		{ 1 },
    	},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 05:29:12 UTC 2018
    - 426 bytes
    - Viewed (0)
  7. src/internal/trace/batchcursor_test.go

    	heap = heapInsert(heap, makeBatchCursor(5))
    	checkHeap(t, heap)
    	for i := int64(-20); i < 20; i++ {
    		heap = heapInsert(heap, makeBatchCursor(i))
    		checkHeap(t, heap)
    	}
    
    	// Update an element in the middle to be the new minimum.
    	for i := range heap {
    		if heap[i].ev.time == 5 {
    			heap[i].ev.time = -21
    			heapUpdate(heap, i)
    			break
    		}
    	}
    	checkHeap(t, heap)
    	if heap[0].ev.time != -21 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. src/go/printer/testdata/comments.input

    */
    
    /* a line of stars
     */
    
    /*	and another line of
     */
    
    /*
    aligned in middle
    here
            not here
    */
    
    /*
    blank line in middle:
    
    with no leading spaces on blank line.
    */
    
    /*
       aligned in middle
       here
               not here
    */
    
    /*
    	blank line in middle:
    
    	with no leading spaces on blank line.
    */
    
    func _() {
    	/*
    	 * line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 23:11:14 UTC 2022
    - 11.3K bytes
    - Viewed (0)
  9. src/container/list/list_test.go

    	checkListPointers(t, l, []*Element{e1, e2, e3, e4})
    
    	l.Remove(e2)
    	checkListPointers(t, l, []*Element{e1, e3, e4})
    
    	l.MoveToFront(e3) // move from middle
    	checkListPointers(t, l, []*Element{e3, e1, e4})
    
    	l.MoveToFront(e1)
    	l.MoveToBack(e3) // move from middle
    	checkListPointers(t, l, []*Element{e1, e4, e3})
    
    	l.MoveToFront(e3) // move from back
    	checkListPointers(t, l, []*Element{e3, e1, e4})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 7.7K bytes
    - Viewed (0)
  10. test/typeparam/listimp2.dir/main.go

    	l2.Remove(e2)
    	a.CheckListPointers(l2, []*(a.Element[int]){e1, e3, e4})
    
    	l2.MoveToFront(e3) // move from middle
    	a.CheckListPointers(l2, []*(a.Element[int]){e3, e1, e4})
    
    	l2.MoveToFront(e1)
    	l2.MoveToBack(e3) // move from middle
    	a.CheckListPointers(l2, []*(a.Element[int]){e1, e4, e3})
    
    	l2.MoveToFront(e3) // move from back
    	a.CheckListPointers(l2, []*(a.Element[int]){e3, e1, e4})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 7.4K bytes
    - Viewed (0)
Back to top