Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 79 for Invoke (0.53 sec)

  1. src/cmd/go/internal/modload/load.go

    	// each package. If AllowPackage returns a non-nil error, that error is set
    	// for the package, and the imports and test of that package will not be
    	// loaded.
    	//
    	// AllowPackage may be invoked concurrently by multiple goroutines,
    	// and may be invoked multiple times for a given package path.
    	AllowPackage func(ctx context.Context, path string, mod module.Version) error
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  2. pkg/kubelet/pod_workers.go

    	"k8s.io/kubernetes/pkg/kubelet/util/queue"
    	"k8s.io/utils/clock"
    )
    
    // OnCompleteFunc is a function that is invoked when an operation completes.
    // If err is non-nil, the operation did not complete successfully.
    type OnCompleteFunc func(err error)
    
    // PodStatusFunc is a function that is invoked to override the pod status when a pod is killed.
    type PodStatusFunc func(podStatus *v1.PodStatus)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  3. pkg/kubelet/server/server_test.go

    			<-done
    
    			if verb == "exec" {
    				assert.True(t, execInvoked, "exec should be invoked")
    				assert.False(t, attachInvoked, "attach should not be invoked")
    			} else {
    				assert.True(t, attachInvoked, "attach should be invoked")
    				assert.False(t, execInvoked, "exec should not be invoked")
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        private static boolean isTestPathElement(final String scope) {
            return true;
        }
    
        /**
         * Returns a filtered list of classpath elements. This method is invoked when the caller
         * requested that all dependencies are placed on the classpath, with no module-path element.
         *
         * @param scopeFilter a filter returning {@code true} for the artifact scopes to accept.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

          GTEST_LOCK_EXCLUDED_(mutex_);
    
      // Adds a TestProperty to the current TestResult object when invoked from
      // inside a test, to current TestCase's ad_hoc_test_result_ when invoked
      // from SetUpTestCase or TearDownTestCase, or to the global property set
      // when invoked elsewhere.  If the result already contains a property with
      // the same key, the value will be updated.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  6. src/runtime/mprof.go

    		copyMemProfileRecord(&p[0], r)
    		p = p[1:]
    	})
    }
    
    // memProfileInternal returns the number of records n in the profile. If there
    // are less than size records, copyFn is invoked for each record, and ok returns
    // true.
    func memProfileInternal(size int, inuseZero bool, copyFn func(profilerecord.MemProfileRecord)) (n int, ok bool) {
    	cycle := mProfCycle.read()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Multimaps.java

       * and {@code get()} will return a general {@code Collection} as opposed to a {@code List} or a
       * {@code Set}.
       *
       * <p>The function is applied lazily, invoked when needed. This is necessary for the returned
       * multimap to be a view, but it means that the function will be applied many times for bulk
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Multimaps.java

       * and {@code get()} will return a general {@code Collection} as opposed to a {@code List} or a
       * {@code Set}.
       *
       * <p>The function is applied lazily, invoked when needed. This is necessary for the returned
       * multimap to be a view, but it means that the function will be applied many times for bulk
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modget/get.go

    // build list.
    //
    // loadPackages invokes the findPackage function for each package loaded from a
    // module outside the main module. If the module or version that supplies that
    // package needs to be changed due to a query, findPackage may return false
    // and the imports of that package will not be loaded.
    //
    // loadPackages also invokes the findPackage function for each imported package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  10. pkg/kubelet/pod_workers_test.go

    	runtime *containertest.FakeRuntime
    	holds   map[types.UID]chan struct{}
    }
    
    // UpdatePod increments the clock after UpdatePod is called, but before the workers
    // are invoked, and then drains all workers before returning. The provided functions
    // are invoked while holding the lock to prevent workers from receiving updates.
    func (w *timeIncrementingWorkers) UpdatePod(options UpdatePodOptions, afterFns ...func()) {
    	func() {
    		w.lock.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
Back to top