Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,409 for providedBy (0.29 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/PathScope.java

                DependencyScope.COMPILE,
                DependencyScope.PROVIDED);
    
        PathScope MAIN_RUNTIME =
                pathScope("main-runtime", ProjectScope.MAIN, DependencyScope.COMPILE, DependencyScope.RUNTIME);
    
        PathScope TEST_COMPILE = pathScope(
                "test-compile",
                ProjectScope.TEST,
                DependencyScope.COMPILE,
                DependencyScope.PROVIDED,
                DependencyScope.TEST_ONLY,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ArrayTable.java

      /**
       * Returns {@code true} if the provided keys are among the keys provided when the table was
       * constructed.
       */
      @Override
      public boolean contains(@CheckForNull Object rowKey, @CheckForNull Object columnKey) {
        return containsRow(rowKey) && containsColumn(columnKey);
      }
    
      /**
       * Returns {@code true} if the provided column key is among the column keys provided when the
       * table was constructed.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ArrayTable.java

      /**
       * Returns {@code true} if the provided keys are among the keys provided when the table was
       * constructed.
       */
      @Override
      public boolean contains(@CheckForNull Object rowKey, @CheckForNull Object columnKey) {
        return containsRow(rowKey) && containsColumn(columnKey);
      }
    
      /**
       * Returns {@code true} if the provided column key is among the column keys provided when the
       * table was constructed.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  4. pom.xml

    			<artifactId>opensearch</artifactId>
    			<version>${opensearch.version}</version>
    			<scope>provided</scope>
    		</dependency>
    		<dependency>
    			<groupId>org.apache.lucene</groupId>
    			<artifactId>lucene-queryparser</artifactId>
    			<version>${lucene.version}</version>
    			<scope>provided</scope>
    		</dependency>
    		<dependency>
    			<groupId>org.apache.logging.log4j</groupId>
    			<artifactId>log4j-api</artifactId>
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu May 30 06:30:41 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. pilot/test/xds/fake.go

    	KubernetesObjectString string
    	// If provided, these configs will be used directly
    	Configs []config.Config
    	// If provided, the yaml string will be parsed and used as configs
    	ConfigString string
    	// If provided, the ConfigString will be treated as a go template, with this as input params
    	ConfigTemplateInput any
    	// If provided, this mesh config will be used
    	MeshConfig      *meshconfig.MeshConfig
    	NetworksWatcher mesh.NetworksWatcher
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-declaringCapabilities/tests/dependencyReportReplaced.out

    org.slf4j:log4j-over-slf4j:1.7.10
      Variant compile:
        | Attribute Name                 | Provided | Requested    |
        |--------------------------------|----------|--------------|
        | org.gradle.status              | release  |              |
        | org.gradle.category            | library  | library      |
        | org.gradle.libraryelements     | jar      | classes      |
        | org.gradle.usage               | java-api | java-api     |
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/core/v1/nodestatus.go

    // WithConditions adds the given value to the Conditions field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    // If called multiple times, values provided by each call will be appended to the Conditions field.
    func (b *NodeStatusApplyConfiguration) WithConditions(values ...*NodeConditionApplyConfiguration) *NodeStatusApplyConfiguration {
    	for i := range values {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:06:39 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ProcessFixture.groovy

         */
        void kill(boolean killTree) {
            println "Killing process with pid: $pid"
            if (pid == null) {
                throw new RuntimeException("Unable to force kill the process because provided pid is null!")
            }
            if (!(OperatingSystem.current().unix || OperatingSystem.current().windows)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-application/src/main/java/org/gradle/jvm/application/scripts/TemplateBasedScriptGenerator.java

     * limitations under the License.
     */
    
    package org.gradle.jvm.application.scripts;
    
    import org.gradle.api.resources.TextResource;
    
    /**
     * Interface for generating scripts with the provided details based on a provided template.
     */
    public interface TemplateBasedScriptGenerator extends ScriptGenerator {
    
        /**
         * Sets the template text resource used for generating script.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. docs/en/docs/reference/websockets.md

    # WebSockets
    
    When defining WebSockets, you normally declare a parameter of type `WebSocket` and with it you can read data from the client and send data to it.
    
    It is provided directly by Starlette, but you can import it from `fastapi`:
    
    ```python
    from fastapi import WebSocket
    ```
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top