Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,543 for providedBy (0.17 sec)

  1. gradle/dependency-management/capabilities.json

        {
            "name": "guava",
            "providedBy": [
                "com.google.collections:google-collections"
            ],
            "selected": "com.google.guava:guava"
        },
        {
            "name": "junit",
            "providedBy": [
                "junit:junit-dep"
            ],
            "selected": "junit:junit"
        },
        {
            "name": "beanshell",
            "providedBy": [
                "org.beanshell:bsh",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 14:54:52 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts

                }
            }
        }
    }
    
    
    class CapabilitySpec {
        lateinit var name: String
    
        private
        lateinit var providedBy: Set<String>
    
        private
        lateinit var selected: String
    
        private
        var upgrade: String? = null
    
        internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 20:15:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/options/TaskOptionIntegrationTest.groovy

            'boolean'        | ['--myProp']                         | 'true'              | 'provided'
            'boolean'        | []                                   | 'false'             | 'not provided'
            'Double'         | ['--myProp=123']                     | '123'               | 'provided'
            'Double'         | ['--myProp=12.3']                    | '12.3'              | 'provided'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/execution/scope/internal/MojoExecutionScope.java

                    return (T) seeded.get();
                }
    
                T provided = (T) state.provided.get(key);
                if (provided == null && unscoped != null) {
                    provided = unscoped.get();
                    state.provided.put(key, provided);
                }
    
                return provided;
            };
        }
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/InstantiatorFactory.java

    @ServiceScope(Scope.Global.class)
    public interface InstantiatorFactory {
        /**
         * Creates an {@link Instantiator} that can inject services and user provided values into the instances it creates, but does not decorate the instances. Is not lenient.
         *
         * <p>Use for any non-model types for which services or user provided constructor values need to injected. This is simply a convenience for {@link #injectScheme()}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. maven-compat/src/test/java/org/apache/maven/project/ProjectClasspathTestType.java

            assertEquals("test", artifact.getScope(), "Check scope");
    
            // check all transitive deps of a provided dependency are provided scope, except for test
            checkGroupIdScope(project, "provided", "maven-test-provided");
            artifact = getArtifact(project, "maven-test-provided", "scope-runtime");
            assertEquals("provided", artifact.getScope(), "Check scope");
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinDeclarationProviderFactory.kt

     * are not, such as file-based declaration providers. Not all declarations provided by such declaration providers can be provided by the
     * main declaration provider, even if the correct scope is provided (such as a file-based scope). For example, the main declaration provider
     * may be based on an index which doesn't contain the declarations provided by file-based declaration providers.
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/JavaClassUtil.java

        /**
         * Get the class file major version from the provided {@code file}.
         *
         * @throws IOException If the file does not exist or is malformed.
         */
        public static int getClassMajorVersion(File file) throws IOException {
            return getClassMajorVersion(new FileInputStream(file));
        }
    
        /**
         * Get the class file major version from the provided {@code javaClass}
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. src/crypto/internal/boring/LICENSE

     * as the author of the parts of the library used.
     * This can be in the form of a textual message at program startup or
     * in documentation (online or textual) provided with the package.
     *
     * Redistribution and use in source and binary forms, with or without
     * modification, are permitted provided that the following conditions
     * are met:
     * 1. Redistributions of source code must retain the copyright
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. fastapi/security/api_key.py

    
    class APIKeyBase(SecurityBase):
        pass
    
    
    class APIKeyQuery(APIKeyBase):
        """
        API key authentication using a query parameter.
    
        This defines the name of the query parameter that should be provided in the request
        with the API key and integrates that into the OpenAPI documentation. It extracts
        the key value sent in the query parameter automatically and provides it as the
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 23 22:29:18 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top