Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 996 for Preferred (0.19 sec)

  1. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyModuleDescriptorSpec.java

     * <p>
     * The {@link #withXml(org.gradle.api.Action)} method can be used to modify the descriptor after it has been generated according to the publication data.
     * However, the preferred way to customize the project information to be published is to use the dedicated configuration methods exposed by this class, e.g.
     * {@link #description(Action)}.
     *
     * @since 1.3
     */
    @HasInternalProtocol
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apidiscovery/v2/types.go

    // It contains a list of APIVersionDiscovery that holds a list of APIResourceDiscovery types served for a version.
    // Versions are in descending order of preference, with the first version being the preferred entry.
    type APIGroupDiscovery struct {
    	v1.TypeMeta `json:",inline"`
    	// Standard object's metadata.
    	// The only field completed will be name. For instance, resourceVersion will be empty.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/plugins/ExtensionContainer.java

         * <li> add 'foo' dynamic method that accepts a closure that is a configuration script block
         * </ul>
         *
         * The extension will be exposed as {@code extension.getClass()} unless the extension itself declares a preferred public type via the {@link org.gradle.api.reflect.HasPublicType} protocol.
         *
         * @param name The name for the extension
         * @param extension Any object
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 05 16:56:20 UTC 2019
    - 9.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apidiscovery/v2beta1/generated.proto

    // It contains a list of APIVersionDiscovery that holds a list of APIResourceDiscovery types served for a version.
    // Versions are in descending order of preference, with the first version being the preferred entry.
    message APIGroupDiscovery {
      // Standard object's metadata.
      // The only field completed will be name. For instance, resourceVersion will be empty.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. platforms/jvm/ear/src/integTest/resources/org/gradle/plugins/ear/application_1_3.dtd

    with "/") are considered relative to the root of the JAR file's namespace. Absolute filenames (i.e., those starting with "/") also specify names in the root of the JAR file's namespace. In general, relative names are preferred. The exception is .war files where absolute names are preferred for consistency with the servlet API. --> <!-- The application element is the root element of a J2EE application deployment descriptor. --> <!ELEMENT application (icon?, display-name, description?, module+, security-role*)>...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/IvyDependencyDescriptor.java

            if (startFallback >= 0) {
                if (targetPattern.endsWith(")")) {
                    String preferred = targetPattern.substring(0, startFallback);
                    ConfigurationGraphResolveState configuration = targetComponent.getConfiguration(preferred);
                    if (configuration != null) {
                        maybeAddConfiguration(targetConfigurations, configuration);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. pkg/credentialprovider/config.go

    	configFileName     = ".dockercfg"
    	configJSONFileName = "config.json"
    )
    
    // SetPreferredDockercfgPath set preferred docker config path
    func SetPreferredDockercfgPath(path string) {
    	preferredPathLock.Lock()
    	defer preferredPathLock.Unlock()
    	preferredPath = path
    }
    
    // GetPreferredDockercfgPath get preferred docker config path
    func GetPreferredDockercfgPath() string {
    	preferredPathLock.Lock()
    	defer preferredPathLock.Unlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 19 15:11:57 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  8. pkg/apis/apidiscovery/types.go

    // It contains a list of APIVersionDiscovery that holds a list of APIResourceDiscovery types served for a version.
    // Versions are in descending order of preference, with the first version being the preferred entry.
    type APIGroupDiscovery struct {
    	v1.TypeMeta
    	// Standard object's metadata.
    	// The only field completed will be name. For instance, resourceVersion will be empty.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 09 18:45:33 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  9. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/ParallelProjectExecutionIntegrationTest.groovy

            blockingServer.expectConcurrent(':a:ping', ':b:ping')
            blockingServer.expect(':c:ping')
    
            run 'd:ping'
        }
    
        void 'tasks with should run after ordering rules are preferred when running over an idle worker thread'() {
            buildFile << """
                tasks.getByPath(':a:pingA').shouldRunAfter(':b:pingB')
                tasks.getByPath(':b:pingB').dependsOn(':b:pingA')
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/ConfigurationRoles.java

    import com.google.common.collect.ImmutableSet;
    
    import java.util.Optional;
    import java.util.Set;
    
    /**
     * Defines {@link ConfigurationRole}s representing common allowed usage patterns.
     *
     * These should be preferred over defining custom roles; whenever possible.  Use {@link #byUsage(boolean, boolean, boolean)}
     * to attempt to locate a matching role by its usage characteristics.
     *
     * @since 8.1
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 12 16:55:27 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top