Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 554 for Invokes (0.18 sec)

  1. src/cmd/gofmt/gofmt.go

    //
    // f may run concurrently in a goroutine, but its output to the passed-in
    // reporter will be sequential relative to the other tasks in the sequencer.
    //
    // If f invokes a method on the reporter, execution of that method may block
    // until the previous task has finished. (To maximize concurrency, f should
    // avoid invoking the reporter until it has finished any parallelizable work.)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. src/text/template/doc.go

    	{{define "T1"}}ONE{{end}}
    	{{define "T2"}}TWO{{end}}
    	{{define "T3"}}{{template "T1"}} {{template "T2"}}{{end}}
    	{{template "T3"}}
    
    This defines two templates, T1 and T2, and a third T3 that invokes the other two
    when it is executed. Finally it invokes T3. If executed this template will
    produce the text
    
    	ONE TWO
    
    By construction, a template may reside in only one association. If it's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/InterruptibleTask.java

      /**
       * Interrupts the running task. Because this internally calls {@link Thread#interrupt()} which can
       * in turn invoke arbitrary code it is not safe to call while holding a lock.
       */
      final void interruptTask() {
        // Since the Thread is replaced by DONE before run() invokes listeners or returns, if we succeed
        // in this CAS, there's no risk of interrupting the wrong thread or interrupting a thread that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Sep 29 21:34:48 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

      // Base part of test case name for display purposes.
      virtual const string& GetTestCaseName() const = 0;
      // Test case id to verify identity.
      virtual TypeId GetTestCaseTypeId() const = 0;
      // UnitTest class invokes this method to register tests in this
      // test case right before running them in RUN_ALL_TESTS macro.
      // This method should not be called more then once on any single
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/InterruptibleTask.java

      /**
       * Interrupts the running task. Because this internally calls {@link Thread#interrupt()} which can
       * in turn invoke arbitrary code it is not safe to call while holding a lock.
       */
      final void interruptTask() {
        // Since the Thread is replaced by DONE before run() invokes listeners or returns, if we succeed
        // in this CAS, there's no risk of interrupting the wrong thread or interrupting a thread that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Sep 29 21:34:48 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

      // Base part of test case name for display purposes.
      virtual const string& GetTestCaseName() const = 0;
      // Test case id to verify identity.
      virtual TypeId GetTestCaseTypeId() const = 0;
      // UnitTest class invokes this method to register tests in this
      // test case right before running them in RUN_ALL_TESTS macro.
      // This method should not be called more then once on any single
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/volumebinding/binder.go

    //     a. Invokes all pre-filter plugins for the pod. GetPodVolumeClaims() is invoked
    //     here, pod volume information will be saved in current scheduling cycle state for later use.
    //     If pod has bound immediate PVCs, GetEligibleNodes() is invoked to potentially reduce
    //     down the list of eligible nodes based on the bound PV's NodeAffinity (if any).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/base/JoinerTest.java

        public Integer next() {
          return iterator.next();
        }
    
        @Override
        public void remove() {
          iterator.remove();
        }
      }
    
      @GwtIncompatible // StringBuilder.append in GWT invokes Object.toString(), unlike the JRE version.
      public void testDontConvertCharSequenceToString() {
        assertEquals("foo,foo", Joiner.on(",").join(new DontStringMeBro(), new DontStringMeBro()));
        assertEquals(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/base/JoinerTest.java

        public Integer next() {
          return iterator.next();
        }
    
        @Override
        public void remove() {
          iterator.remove();
        }
      }
    
      @GwtIncompatible // StringBuilder.append in GWT invokes Object.toString(), unlike the JRE version.
      public void testDontConvertCharSequenceToString() {
        assertEquals("foo,foo", Joiner.on(",").join(new DontStringMeBro(), new DontStringMeBro()));
        assertEquals(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/serviceentry/controller.go

    	for _, i := range instances {
    		keys[makeInstanceKey(i)] = struct{}{}
    	}
    	s.queueEdsEvent(keys, s.doEdsCacheUpdate)
    }
    
    // queueEdsEvent processes eds events sequentially for the passed keys and invokes the passed function.
    func (s *Controller) queueEdsEvent(keys sets.Set[instancesKey], edsFn func(keys sets.Set[instancesKey])) {
    	// wait for the cache update finished
    	waitCh := make(chan struct{})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
Back to top