Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 237 for Keping (5.21 sec)

  1. android/guava/src/com/google/common/util/concurrent/ServiceManager.java

       */
      public void addListener(Listener listener, Executor executor) {
        state.addListener(listener, executor);
      }
    
      /**
       * Initiates service {@linkplain Service#startAsync startup} on all the services being managed. It
       * is only valid to call this method if all of the services are {@linkplain State#NEW new}.
       *
       * @return this
       * @throws IllegalStateException if any of the Services are not {@link State#NEW new} when the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/math/DoubleMath.java

       * mode, if possible.
       *
       * @throws ArithmeticException if
       *     <ul>
       *       <li>{@code x} is infinite or NaN
       *       <li>{@code x}, after being rounded to a mathematical integer using the specified rounding
       *           mode, is either less than {@code Integer.MIN_VALUE} or greater than {@code
       *           Integer.MAX_VALUE}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/math/DoubleMath.java

       * mode, if possible.
       *
       * @throws ArithmeticException if
       *     <ul>
       *       <li>{@code x} is infinite or NaN
       *       <li>{@code x}, after being rounded to a mathematical integer using the specified rounding
       *           mode, is either less than {@code Integer.MIN_VALUE} or greater than {@code
       *           Integer.MAX_VALUE}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/graph/AbstractGraphTest.java

      /**
       * A proxy method that adds the node {@code n} to the graph being tested. In case of Immutable
       * graph implementations, this method should replace {@link #graph} with a new graph that includes
       * this node.
       */
      abstract void addNode(Integer n);
    
      /**
       * A proxy method that adds the edge {@code e} to the graph being tested. In case of Immutable
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/KotlinScript.kt

         *
         * @param configuration The block to use to configure the [ExecSpec].
         * @return The result of the execution.
         */
        fun exec(configuration: Action<ExecSpec>): ExecResult
    
        /**
         * Executes an external Java process.
         *
         * This method blocks until the process terminates, with its result being returned.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/ServiceManager.java

       */
      public void addListener(Listener listener, Executor executor) {
        state.addListener(listener, executor);
      }
    
      /**
       * Initiates service {@linkplain Service#startAsync startup} on all the services being managed. It
       * is only valid to call this method if all of the services are {@linkplain State#NEW new}.
       *
       * @return this
       * @throws IllegalStateException if any of the Services are not {@link State#NEW new} when the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 33K bytes
    - Viewed (0)
  7. src/cmd/go/internal/help/helpdoc.go

    The meta tag has the form:
    
    	<meta name="go-import" content="import-prefix vcs repo-root">
    
    The import-prefix is the import path corresponding to the repository
    root. It must be a prefix or an exact match of the package being
    fetched with "go get". If it's not an exact match, another http
    request is made at the prefix to verify the <meta> tags match.
    
    The meta tag should appear as early in the file as possible.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/collect/testing/FeatureSpecificTestSuiteBuilder.java

      }
    
      public String getName() {
        return name;
      }
    
      // Test suppression
    
      private final Set<Method> suppressedTests = new HashSet<>();
    
      /**
       * Prevents the given methods from being run as part of the test suite.
       *
       * <p>Note: in principle this should never need to be used, but it might be useful if the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskSerializationIntegrationTest.groovy

            configurationCacheRun "ok"
    
            then:
            outputDoesNotContain("calculating value")
            outputContains("this.value = value")
        }
    
        def "Directory value can resolve paths after being restored"() {
            buildFile << """
                import ${Inject.name}
    
                class SomeTask extends DefaultTask {
                    @Internal
                    Directory value
                    @Internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    	return x.Pos, x.Pos.add(")")
    }
    
    // An input represents a single input file being parsed.
    type input struct {
    	// Lexing state.
    	filename   string    // name of input file, for errors
    	complete   []byte    // entire input
    	remaining  []byte    // remaining input
    	tokenStart []byte    // token being scanned to end of input
    	token      token     // next token to be returned by lex, peek
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top