Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 5,332 for efter (0.39 sec)

  1. guava-tests/test/com/google/common/util/concurrent/MonitorTestCase.java

      private String leave() {
        return "leave";
      }
    
      public final void testMutualExclusion() throws Exception {
        thread1.callAndAssertReturns(enter());
        thread2.callAndAssertBlocks(enter());
        thread1.callAndAssertReturns(leave());
        thread2.assertPriorCallReturns(enter());
      }
    
      public final void testTryEnter() throws Exception {
        thread1.callAndAssertReturns(true, tryEnter());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 26 20:07:17 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/MonitorTestCase.java

      private String leave() {
        return "leave";
      }
    
      public final void testMutualExclusion() throws Exception {
        thread1.callAndAssertReturns(enter());
        thread2.callAndAssertBlocks(enter());
        thread1.callAndAssertReturns(leave());
        thread2.assertPriorCallReturns(enter());
      }
    
      public final void testTryEnter() throws Exception {
        thread1.callAndAssertReturns(true, tryEnter());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 26 20:07:17 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/continuous/ContinuousIntegrationTestFixtureTest.groovy

        }
    
        def "output parsing with info logging after 'waiting for changes' line"() {
            given:
            def sampleTest = testCase()
            def gradleHandle = setupStubs(sampleTest)
            gradleHandle.getStandardOutput() >> '''
    :sometask
    
    BUILD SUCCESSFUL in 1s
    
    Waiting for changes to input files... (ctrl-d then enter to exit)
    [info] play - Listening for HTTP on /0:0:0:0:0:0:0:0:49788
    '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/shape_inference.cc

          }
        }
    
        // Sometimes we have VariableShape nodes in while loop (after Enter nodes).
        // They won't be constant-folded because TensorFlow constant folding does
        // not handle Enter nodes (and thus does not handle any nodes after Enter
        // nodes). We try to replace such VariableShape nodes with Const nodes here.
        if (n->type_string() == "VariableShape") {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/cluster_scoping_pass.cc

      const string unique_suffix = absl::StrCat("_", GetUniqueScopeId());
    
      std::vector<Node*> starts;
      starts.push_back(start);
      auto enter = [&](Node* n) { AddOrAppendXlaInternalScope(n, unique_suffix); };
      ReverseDFSFrom(*graph_, starts, enter, /*leave=*/nullptr,
                     /*stable_comparator=*/NodeComparatorName());
    }
    
    void ClusterScopingPassImpl::AddScopeToAllTransitiveSuccessors(Node* start) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/ServiceManager.java

          // We check the state after adding the listener as a way to ensure that our listener was added
          // to a NEW service.
          checkArgument(service.state() == NEW, "Can only manage NEW services, %s", service);
        }
        // We have installed all of our listeners and after this point any state transition should be
        // correct.
        this.state.markReady();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 33K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/ServiceManager.java

          // We check the state after adding the listener as a way to ensure that our listener was added
          // to a NEW service.
          checkArgument(service.state() == NEW, "Can only manage NEW services, %s", service);
        }
        // We have installed all of our listeners and after this point any state transition should be
        // correct.
        this.state.markReady();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/readme-templates/common-body.adoc.template

    For the other questions, press enter to use the default values.
    
    The output will look like this:
    
    [listing.terminal.sample-command,user-inputs="${componentTypeIndex.raw}|${languageIndex.raw}|1|||"]
    ----
    \$ gradle init
    
    Select type of project to generate:
      1: basic
      2: application
      3: library
      4: Gradle plugin
    Enter selection (default: basic) [1..4] ${componentTypeIndex.raw}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  9. src/internal/singleflight/singleflight_test.go

    			// so the key was re-added and may have been shared after the call.
    			// Try again with more time to park.
    			d *= 2
    			continue
    		}
    
    		// All of the Do calls ended up sharing the first
    		// invocation, so the key should have been unused
    		// (and therefore unshared) when they returned.
    		if shared.Load() > 0 {
    			t.Errorf("after a single shared Do, ForgetUnshared returned false %d times", shared.Load())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 29 22:21:50 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Stream.kt

       * We always do timeouts in the HTTP server role. For clients, we only do timeouts after the
       * request is transmitted. This is only interesting for duplex calls where the request and
       * response may be interleaved.
       *
       * Read this value only once for each enter/exit pair because its value can change.
       */
      private fun doReadTimeout() = !connection.client || sink.closed || sink.finished
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 23.2K bytes
    - Viewed (0)
Back to top