Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/cmd/compile/internal/ssa/deadstore.go

    			// for open-coded defers from being removed (since they
    			// may not be used by the inline code, but will be used by
    			// panic processing).
    			n, ok := v.Aux.(*ir.Name)
    			if !ok || n.Class != ir.PAUTO {
    				return
    			}
    			if !used.Has(n) {
    				used.Add(n)
    				changed = true
    			}
    			return
    		case OpStore, OpMove, OpZero:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/PluginDeclaration.java

         *
         * <p>The display name is used when publishing this plugin to repositories
         * that support human-readable artifact names.
         *
         * @since 4.10
         */
        public String getDisplayName() {
            return displayName;
        }
    
        /**
         * Sets the display name for this plugin declaration.
         *
         * <p>The display name is used when publishing this plugin to repositories
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/JavaClassChangeIncrementalCompilationIntegrationTest.groovy

            run language.compileTaskName
    
            then:
            outputs.recompiledClasses 'A', 'B'
        }
    
        def "changing an used non-private constant incurs partial rebuild when used on annotation"() {
            source "class A { static final int x = 1; }",
                """import java.lang.annotation.Retention;
                   import java.lang.annotation.RetentionPolicy;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  8. 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)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DependencyConstraint.java

        /**
         * Returns a reason why this dependency constraint should be used, in particular with regards to its version. The dependency report will use it to explain why a specific dependency was selected, or why a
         * specific dependency version was used.
         *
         * @return a reason to use this dependency constraint
         * @since 4.6
         */
        @Nullable
        String getReason();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 2.7K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/CompileJavaBuildOperationType.java

            String getTaskIdentityPath();
        }
    
        public interface Result {
    
            /**
             * Returns details about the used annotation processors, if available.
             *
             * <p>Details are only available if an instrumented compiler was used.
             *
             * @return details about used annotation processors; {@code null} if unknown.
             */
            @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top