Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,164 for providedBy (0.19 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r25/ToolingApiEclipseModelCrossVersionSpec.groovy

    apply plugin: 'eclipse'
    
    ${mavenCentralRepository()}
    
    configurations {
        provided
    }
    
    dependencies {
        ${implementationConfiguration} project(':a')
        ${implementationConfiguration} 'com.google.guava:guava:17.0'
        provided 'org.slf4j:slf4j-log4j12:1.7.12'
    }
    
    eclipse {
        classpath {
            plusConfigurations += [ configurations.provided ]
        }
    }
    
    configure(project(':a')){
        apply plugin:'java'
    }"""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. platforms/core-execution/hashing/src/main/java/org/gradle/internal/hash/FileHasher.java

    public interface FileHasher {
        /**
         * Returns the hash of the current content of the given file. The provided file must exist and be a file (rather than, say, a directory).
         */
        HashCode hash(File file);
    
        /**
         * Returns the hash of the current content of the given file, assuming the given file metadata. The provided file must exist and be a file (rather than, say, a directory).
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:43:29 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformUpstreamDependenciesResolverFactory.java

    package org.gradle.api.internal.artifacts.transform;
    
    import org.gradle.api.artifacts.component.ComponentIdentifier;
    
    /**
     * Factory for {@link TransformUpstreamDependenciesResolver} that relies on the information provided to its {@code create} method.
     */
    public interface TransformUpstreamDependenciesResolverFactory {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top