Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,265 for Calling (0.12 sec)

  1. internal/lsync/lrwmutex.go

    }
    
    // NewLRWMutex - initializes a new lsync RW mutex.
    func NewLRWMutex() *LRWMutex {
    	return &LRWMutex{}
    }
    
    // Lock holds a write lock on lm.
    //
    // If the lock is already in use, the calling go routine
    // blocks until the mutex is available.
    func (lm *LRWMutex) Lock() {
    	const isWriteLock = true
    	lm.lockLoop(context.Background(), lm.id, lm.source, math.MaxInt64, isWriteLock)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  2. src/testing/helperfuncs_test.go

    	t.Error(msg)
    }
    
    var genericIntHelper = genericHelper[int]
    
    func testTestHelper(t *testing.T) {
    	testHelper(t)
    }
    
    func testHelper(t *testing.T) {
    	// Check combinations of directly and indirectly
    	// calling helper functions.
    	notHelper(t, "0")
    	helper(t, "1")
    	notHelperCallingHelper(t, "2")
    	helperCallingHelper(t, "3")
    
    	// Check a function literal closing over t that uses Helper.
    	fn := func(msg string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:24:47 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_client_test.go

    	c.t.Log("calling fake.NodeUnstageVolume...")
    	req := &csipbv1.NodeUnstageVolumeRequest{
    		VolumeId:          volID,
    		StagingTargetPath: stagingTargetPath,
    	}
    	_, err := c.nodeClient.NodeUnstageVolume(ctx, req)
    	return err
    }
    
    func (c *fakeCsiDriverClient) NodeSupportsNodeExpand(ctx context.Context) (bool, error) {
    	c.t.Log("calling fake.NodeSupportsNodeExpand...")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/IvyContextManager.java

         *
         * <p>The Ivy instance of the calling thread is reused if the thread is already executing an action against an Ivy instance.
         */
        void withIvy(Action<? super Ivy> action);
    
        /**
         * Executes the given action against an Ivy instance and returns the result. Sets up the Ivy context before the action and cleans up at the end.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/RangeSet.java

      @CheckForNull
      Range<C> rangeContaining(C value);
    
      /**
       * Returns {@code true} if there exists a non-empty range enclosed by both a member range in this
       * range set and the specified range. This is equivalent to calling {@code
       * subRangeSet(otherRange)} and testing whether the resulting range set is non-empty.
       *
       * @since 20.0
       */
      boolean intersects(Range<C> otherRange);
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. src/encoding/gob/example_interface_test.go

    }
    
    // interfaceEncode encodes the interface value into the encoder.
    func interfaceEncode(enc *gob.Encoder, p Pythagoras) {
    	// The encode will fail unless the concrete type has been
    	// registered. We registered it in the calling function.
    
    	// Pass pointer to interface so Encode sees (and hence sends) a value of
    	// interface type. If we passed p directly it would see the concrete type instead.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 02 00:13:47 UTC 2016
    - 2.1K bytes
    - Viewed (0)
  7. src/net/file_unix_test.go

    //go:build unix
    
    package net
    
    import (
    	"internal/syscall/unix"
    	"testing"
    )
    
    // For backward compatibility, opening a net.Conn, turning it into an os.File,
    // and calling the Fd method should return a blocking descriptor.
    func TestFileFdBlocks(t *testing.T) {
    	if !testableNetwork("unix") {
    		t.Skipf("skipping: unix sockets not supported")
    	}
    
    	ls := newLocalServer(t, "unix")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 16:48:53 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. test/fixedbugs/issue47317.dir/x.go

    // Copyright 2021 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 47317: ICE when calling ABI0 function via func value.
    
    package main
    
    func main() { F() }
    
    func F() interface{} {
    	g := G
    	g(1)
    	return G
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 22 20:47:59 UTC 2021
    - 330 bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/provider/SetProperty.java

        /**
         * {@inheritDoc}
         *
         * <p>
         * This is similar to calling {@link #value(Iterable)} with a <code>null</code> argument.
         * </p>
         */
        @Override
        SetProperty<T> unset();
    
        /**
         * {@inheritDoc}
         * <p>
         * This is similar to calling {@link #convention(Iterable)} with a <code>null</code> argument.
         * </p>
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/InternalProblemBuilder.java

    import org.gradle.api.problems.Severity;
    
    public interface InternalProblemBuilder extends InternalProblemSpec {
    
        /**
         * Creates the new problem. Calling this method won't report the problem via build operations, it can be done separately by calling {@link org.gradle.api.problems.internal.InternalProblemReporter#report(Problem)}.
         *
         * @return the new problem
         */
        Problem build();
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top