Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 8,903 for usedBy (0.15 sec)

  1. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenArtifact.java

     */
    public interface MavenArtifact extends PublicationArtifact {
        /**
         * The extension used to publish the artifact file, never <code>null</code>.
         * For an artifact without an extension, this value will be an empty String.
         */
        String getExtension();
    
        /**
         * Sets the extension used to publish the artifact file.
         * @param extension The extension.
         */
        void setExtension(String extension);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. releasenotes/notes/43892.yaml

    # kind describes the type of change that this represents.
    # Valid Values are:
    # - bug-fix -- Used to specify that this change represents a bug fix.
    # - security-fix -- Used to specify that this change represents a vulnerability fix.
    # - feature -- Used to specify a new feature that has been added.
    # - test -- Used to describe additional testing added. This file is optional for
    #   tests, but included for completeness.
    kind: bug-fix
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 10:52:46 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/apis/resourcequota/register.go

    */
    
    package resourcequota
    
    import (
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    )
    
    var (
    	// SchemeBuilder is a pointer used to call AddToScheme
    	SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes)
    	// AddToScheme is used to register the types to API encoding/decoding machinery
    	AddToScheme = SchemeBuilder.AddToScheme
    )
    
    // LegacyGroupName is the group name use in this package
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 04 12:53:52 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/resources/TextResource.java

         * Not typically used directly.
         *
         * @return the input properties registered when this resource is used as task input
         */
        @Nullable
        @Optional
        @Input
        Object getInputProperties();
    
        /**
         * Returns the input files registered when this resource is used as task input.
         * Not typically used directly.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 10 09:43:44 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/plugin/use/PluginDependenciesSpec.java

     * That is, you can use this API in the body of the plugins script block to declare plugins to be used for the script.
     * </p>
     * <h3>Relationship with the apply() method</h3>
     * <p>
     * The <code>plugins {}</code> block serves a similar purpose to the {@link org.gradle.api.plugins.PluginAware#apply(java.util.Map)} method
     * that can be used to apply a plugin directly to a {@code Project} object or similar.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 16 17:46:02 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  6. docs/distributed/DECOMMISSION.md

    │ ID  │ Pools                           │ Capacity                         │ Status │
    │ 1st │ http://minio{1...2}/data{1...4} │ 439 GiB (used) / 561 GiB (total) │ Active │
    │ 2nd │ http://minio{3...4}/data{1...4} │ 329 GiB (used) / 421 GiB (total) │ Active │
    └─────┴─────────────────────────────────┴──────────────────────────────────┴────────┘
    ```
    
    ### Decommissioning status
    
    ```
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jul 11 14:59:49 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/initialization/dsl/ScriptHandler.java

    import java.io.File;
    import java.net.URI;
    
    /**
     * <p>A {@code ScriptHandler} allows you to manage the compilation and execution of a build script. You can declare the
     * classpath used to compile and execute a build script. This classpath is also used to load the plugins which the build
     * script uses.</p>
     *
     * <p>You can obtain a {@code ScriptHandler} instance using {@link org.gradle.api.Project#getBuildscript()} or {@link
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 20:33:21 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  8. releasenotes/notes/istioctl_completion.yaml

    # kind describes the type of change that this represents.
    # Valid Values are:
    # - bug-fix -- Used to specify that this change represents a bug fix.
    # - security-fix -- Used to specify that this change represents a vulnerability fix.
    # - feature -- Used to specify a new feature that has been added.
    # - test -- Used to describe additional testing added. This file is optional for
    #   tests, but included for completeness.
    kind: feature
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 25 06:15:33 UTC 2021
    - 998 bytes
    - Viewed (0)
  9. test/fixedbugs/issue18915.go

    package p
    
    func _() {
    	if a := 10 { // ERROR "cannot use a := 10 as value|expected .*;|declared and not used"
    	}
    
    	for b := 10 { // ERROR "cannot use b := 10 as value|parse error|declared and not used"
    	}
    
    	switch c := 10 { // ERROR "cannot use c := 10 as value|expected .*;|declared and not used"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 21:10:19 UTC 2022
    - 581 bytes
    - Viewed (0)
  10. test/fixedbugs/bug381.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 2276.
    
    // Check that the error messages says 
    //	bug381.go:29: unsafe.Alignof(0) not used
    // and not
    //	bug381.go:29: 4 not used
    
    // Issue 2768: previously got
    //    bug381.go:30: cannot use 3 (type time.Weekday) as type int in function argument
    // want
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 747 bytes
    - Viewed (0)
Back to top