Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,265 for Calling (0.15 sec)

  1. pkg/apis/storage/fuzzer/fuzzer.go

    var Funcs = func(codecs runtimeserializer.CodecFactory) []interface{} {
    	return []interface{}{
    		func(obj *storage.StorageClass, c fuzz.Continue) {
    			c.FuzzNoCustom(obj) // fuzz self without calling this function again
    			reclamationPolicies := []api.PersistentVolumeReclaimPolicy{api.PersistentVolumeReclaimDelete, api.PersistentVolumeReclaimRetain}
    			obj.ReclaimPolicy = &reclamationPolicies[c.Rand.Intn(len(reclamationPolicies))]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 13:32:38 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. src/runtime/cgo_mmap.go

    // using the GCC calling convention. It is implemented in assembly.
    func callCgoMmap(addr unsafe.Pointer, n uintptr, prot, flags, fd int32, off uint32) uintptr
    
    // sysMunmap calls the munmap system call. It is implemented in assembly.
    func sysMunmap(addr unsafe.Pointer, n uintptr)
    
    // callCgoMunmap calls the munmap function in the runtime/cgo package
    // using the GCC calling convention. It is implemented in assembly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 20:58:13 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/CompositeFileCollection.java

     *
     * <p>The source file collections are calculated from the result of calling {@link #visitChildren(Consumer)}, and may be lazily created.
     * </p>
     *
     * <p>The dependencies of this collection are calculated from the result of calling {@link #visitDependencies(TaskDependencyResolveContext)}.</p>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/caching/ImplicitInputsProvidingService.java

     * we can ask the service by calling {@code isUpToDate(IN, OUT)} with
     * the URI as an input.
     *
     * It's up to the service implementation to determine:
     *
     * - the type of the input which allows requesting its up-to-date ness ({@link IN}
     * - the type of the output which allows checking if the result of calling the service is the same ({@link OUT}
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/CursorTest.groovy

        }
    
        def "move cursor to (0,0) when calling bottomLeft"() {
            given:
            Cursor cursor = Cursor.at(row, col)
    
            when:
            cursor.bottomLeft()
    
            then:
            cursor.row == 0
            cursor.col == 0
    
            where:
            row << ROWS
            col << COLS
        }
    
        def "move cursor to (#row,#col) when calling copyFrom on another cursor"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. src/runtime/sys_darwin_amd64.s

    	// Tell pthread everything is ok (we never join with this thread, so
    	// the value here doesn't really matter).
    	XORL	AX, AX
    	RET
    
    // These trampolines help convert from Go calling convention to C calling convention.
    // They should be called with asmcgocall.
    // A pointer to the arguments is passed in DI.
    // A single int32 result is returned in AX.
    // (For more results, make an args/results structure.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testsanitizers/testdata/msan8.go

    // has been initialized. This is accessed atomically.
    static int32_t msanGoSignalThreadSet;
    
    // uninit is explicitly poisoned, so that we can make all registers
    // undefined by calling msanGoWait.
    static unsigned long uninit;
    
    // msanGoLoop loops calling msanGoWait, with the arguments passed
    // such that msan thinks that they are undefined. msan permits
    // undefined values to be used as long as they are not used to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:30:58 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. test/fixedbugs/bug354.go

    // compile
    
    // Copyright 2011 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.
    
    // issue 2086
    // was calling makeclosure twice on the closure
    
    package bug354
    
    type Inner struct {
    	F func() error
    }
    
    type Outer struct {
    	Inners []Inner
    }
    
    // calls makeclosure twice on same closure
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 434 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/wait/backoff.go

    // The returned timer must be drained before calling Backoff() the second time
    func (b *exponentialBackoffManagerImpl) Backoff() clock.Timer {
    	if b.backoffTimer == nil {
    		b.backoffTimer = b.clock.NewTimer(b.getNextBackoff())
    	} else {
    		b.backoffTimer.Reset(b.getNextBackoff())
    	}
    	return b.backoffTimer
    }
    
    // Deprecated: Will be removed when the legacy polling functions are removed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  10. doc/next/6-stdlib/99-minor/reflect/66056.md

    The new methods [Value.Seq] and [Value.Seq2] return sequences that iterate over the value
    as though it were used in a for/range loop.
    The new methods [Type.CanSeq] and [Type.CanSeq2] report whether calling
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 11:54:18 UTC 2024
    - 282 bytes
    - Viewed (0)
Back to top