Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 655 for reflectively (0.28 sec)

  1. platforms/documentation/docs/src/samples/java/modules-multi-project-with-integration-tests/README.adoc

    ```
    src
    └── integrationTest
        └── java
            └── module-info.java
    ```
    
    We effectively declare a second module that is only used for testing.
    The module is `open`, which means that it allows reflective access to its classes at runtime as required by JUnit's test execution engine.
    
    ```
    open module org.gradle.sample.integtest.utilities {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/incubating/java/modules-multi-project-with-integration-tests/README.adoc

    
    ```
    src
    └── integrationTest
        └── java
            └── module-info.java
    ```
    
    We effectively declare a second module that is only used for testing.
    The module is `open`, which means that it allows reflective access to its classes at runtime as required by JUnit's test execution engine.
    
    ```
    open module org.gradle.sample.integtest.utilities {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    ----
    
    Wildcards, indicated with `*`, can be used in the group or module name. They can be the only character or appear at the end of the group or module respectively.
    The following wildcard notation examples are valid:
    
    * `org.apache.commons:*`: will let all modules belonging to group `org.apache.commons` update
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. src/go/types/gcsizes.go

    }
    
    func (s *gcSizes) Alignof(T Type) (result int64) {
    	defer func() {
    		assert(result >= 1)
    	}()
    
    	// For arrays and structs, alignment is defined in terms
    	// of alignment of the elements and fields, respectively.
    	switch t := under(T).(type) {
    	case *Array:
    		// spec: "For a variable x of array type: unsafe.Alignof(x)
    		// is the same as unsafe.Alignof(x[0]), but at least 1."
    		return s.Alignof(t.elem)
    	case *Struct:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/gcsizes.go

    }
    
    func (s *gcSizes) Alignof(T Type) (result int64) {
    	defer func() {
    		assert(result >= 1)
    	}()
    
    	// For arrays and structs, alignment is defined in terms
    	// of alignment of the elements and fields, respectively.
    	switch t := under(T).(type) {
    	case *Array:
    		// spec: "For a variable x of array type: unsafe.Alignof(x)
    		// is the same as unsafe.Alignof(x[0]), but at least 1."
    		return s.Alignof(t.elem)
    	case *Struct:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/scan/config/BuildScanConfig.java

     * Does not include configuration aspects that the scan plugin manages (e.g. server address).
     * Currently, this is effectively the --scan and --no-scan invocation options.
     *
     * @since 4.0
     */
    public interface BuildScanConfig {
    
        /**
         * Indicates whether a scan was <b>explicitly</b> requested.
         *
         * This effectively maps to {@link StartParameter#isBuildScan()}.
         */
        boolean isEnabled();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    +
    Depending on whether the file can be recreated locally or downloaded from a remote repository, it will be deleted after 7 or 30 days, respectively.
    - Gradle distributions in `wrapper/dists/` are checked for whether they are still in use, i.e., whether there's a corresponding version-specific cache directory.
    +
    Unused distributions are deleted.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/scopeids/DefaultPersistentScopeIdLoader.java

            return new WorkspaceScopeId(uniqueId);
        }
    
        // This method is effectively part of a cross Gradle version contract.
        // User scope is expected to be persisted in the global cache since 4.0.
        private GlobalScopedCacheBuilderFactory userScopeCacheScopeMarker() {
            return globalScopedcacheBuilderFactory;
        }
    
        // This method is effectively part of a cross Gradle version contract.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 10 18:14:29 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/internal/classpath/GroovyDynamicDispatchingInterceptingTest.groovy

            when: 'another closure is called that makes a potentially intercepted call, which should turn all closures "on the stack" into effectively instrumented ones'
            transformedInterceptedClosure()
    
            then: 'the closure that threw an exception should not have become effectively instrumented'
            !(GroovySystem.metaClassRegistry.getMetaClass(InterceptorTestReceiver) instanceof CallInterceptingMetaClass)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 09:44:54 UTC 2023
    - 8K bytes
    - Viewed (0)
  10. releasenotes/notes/29918.yaml

    issue:
      - 29154
    
    releaseNotes:
    - |
      **Added** `istioctl analyze` now informs if deprecated or alpha-level annotations are present.
      (These checks can be disabled using `--suppress "IST0135=*"` and `--suppress "IST0136=*"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 14 17:21:19 UTC 2021
    - 300 bytes
    - Viewed (0)
Back to top