Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,960 for usedBy (0.21 sec)

  1. 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)
  2. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaPluginExtension.java

     * the {@code JvmPluginExtension} extension.  It is used to configure many of the project's
     * JVM-related settings and behavior.
     *
     * @since 4.10
     */
    public interface JavaPluginExtension {
    
        /**
         * Returns the source compatibility used for compiling Java sources.
         */
        JavaVersion getSourceCompatibility();
    
        /**
         * Sets the source compatibility used for compiling Java sources.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 10.4K bytes
    - Viewed (1)
  3. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/tasks/SourceSet.java

         *
         * @return The name. Never returns null.
         */
        String getName();
    
        /**
         * Returns the classpath used to compile this source.
         *
         * @return The classpath. Never returns null.
         */
        FileCollection getCompileClasspath();
    
        /**
         * Sets the classpath used to compile this source.
         *
         * @param classpath The classpath. Should not be null.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/v1beta4/doc.go

    //   - Add `ClusterConfiguration.EncryptionAlgorithm` that can be used to set the asymmetric encryption algorithm
    //     used for this cluster's keys and certificates. Can be one of "RSA-2048" (default), "RSA-3072", "RSA-4096" or "ECDSA-P256".
    //   - Add `ClusterConfiguration.DNS.Disabled` and `ClusterConfiguration.Proxy.Disabled` that can be used to disable
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/Ascii.java

       * transmission, which may have contained one or more texts and any associated headings.
       *
       * @since 8.0
       */
      public static final byte EOT = 4;
    
      /**
       * Enquiry: A communication control character used in data communication systems as a request for
       * a response from a remote station. It may be used as a "Who Are You" (WRU) to obtain
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/mips/obj0.go

    			m = E_MEMSP
    		}
    
    		s.used.cc |= m
    
    	case C_SACON,
    		C_LACON:
    		cls = int(p.From.Reg)
    		if cls == 0 {
    			cls = REGSP
    		}
    		s.used.ireg |= 1 << uint(cls-REG_R0)
    
    	case C_SECON,
    		C_LECON:
    		s.used.ireg |= 1 << (REGSB - REG_R0)
    
    	case C_REG:
    		s.used.ireg |= 1 << uint(p.From.Reg-REG_R0)
    
    	case C_FREG:
    		s.used.freg |= 1 << uint(p.From.Reg-REG_F0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 30.6K bytes
    - Viewed (0)
  7. pkg/volume/volume.go

    	// used, available space).
    	MetricsProvider
    }
    
    // MetricsProvider exposes metrics (e.g. used,available space) related to a
    // Volume.
    type MetricsProvider interface {
    	// GetMetrics returns the Metrics for the Volume. Maybe expensive for
    	// some implementations.
    	GetMetrics() (*Metrics, error)
    }
    
    // Metrics represents the used and available bytes of the Volume.
    type Metrics struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/tooling-api-provider/src/main/java/org/gradle/tooling/internal/provider/DefaultConnection.java

        private GradleVersion consumerVersion;
    
        /**
         * This is used by consumers 1.0-milestone-3 and later
         */
        public DefaultConnection() {
            LOGGER.debug("Tooling API provider {} created.", GradleVersion.current().getVersion());
        }
    
        /**
         * This is used by consumers 1.2-rc-1 and later.
         */
        @Override
        public void configure(ConnectionParameters parameters) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/builtins0.go

    	close(r /* ERROR "receive-only channel" */)
    	close(c)
    	_ = close /* ERROR "used as value" */ (c)
    
    	var s []chan int
    	close(s... /* ERROR "invalid use of ..." */ )
    }
    
    func close2() {
    	f1 := func() (ch chan int) { return }
    	f2 := func() (ch chan int, x int) { return }
    	close(f0 /* ERROR "used as value" */ ())
    	close(f1())
    	close(f2()) // ERROR "too many arguments"
    }
    
    func complex1() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/Ascii.java

       * transmission, which may have contained one or more texts and any associated headings.
       *
       * @since 8.0
       */
      public static final byte EOT = 4;
    
      /**
       * Enquiry: A communication control character used in data communication systems as a request for
       * a response from a remote station. It may be used as a "Who Are You" (WRU) to obtain
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
Back to top