Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 44 for GetTypeName (0.18 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/VisualCppToolChain.java

            this.ucrtLocator = ucrtLocator;
            this.instantiator = instantiator;
            this.workerLeaseService = workerLeaseService;
        }
    
        @Override
        protected String getTypeName() {
            return "Visual Studio";
        }
    
        @Override
        public File getInstallDir() {
            return installDir;
        }
    
        @Override
        public void setInstallDir(Object installDirPath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/PreCompiledHeader.java

        }
    
        @Internal
        @Override
        public String getProjectPath() {
            return super.getProjectPath();
        }
    
        @Internal
        @Override
        protected String getTypeName() {
            return super.getTypeName();
        }
    
        @Internal
        @Override
        public String getDisplayName() {
            return super.getDisplayName();
        }
    
        @Internal
        @Nullable
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/reflect/Types.java

          }
    
          @Override
          String typeName(Type type) {
            try {
              Method getTypeName = Type.class.getMethod("getTypeName");
              return (String) getTypeName.invoke(type);
            } catch (NoSuchMethodException e) {
              throw new AssertionError("Type.getTypeName should be available in Java 8");
            } catch (InvocationTargetException | IllegalAccessException e) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/GccToolChain.java

        }
    
        @Override
        protected String getTypeName() {
            return "GNU GCC";
        }
    
        @Override
        protected void initForImplementation(DefaultGccPlatformToolChain platformToolChain, GccMetadata versionResult) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/TypeValidationData.java

     */
    public interface TypeValidationData extends AdditionalData {
        String getPluginId();
        String getPropertyName();
        String getParentPropertyName();
        String getTypeName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 942 bytes
    - Viewed (0)
  6. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/cunit/internal/DefaultCUnitTestSuiteSpec.java

    public class DefaultCUnitTestSuiteSpec extends AbstractNativeComponentSpec implements CUnitTestSuiteSpec {
        private NativeComponentSpec testedComponent;
    
        @Override
        protected String getTypeName() {
            return "Cunit test suite";
        }
    
        @Override
        public NativeComponentSpec getTestedComponent() {
            return testedComponent;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/DefaultNativeLibrarySpec.java

    import org.gradle.nativeplatform.NativeLibrarySpec;
    
    public class DefaultNativeLibrarySpec extends AbstractTargetedNativeComponentSpec implements NativeLibrarySpec {
        @Override
        protected String getTypeName() {
            return "native library";
        }
    
        @Override
        public NativeLibraryRequirement getShared() {
            return new ProjectNativeLibraryRequirement(getProjectPath(), this.getName(), "shared");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/reflect/Types.java

          }
    
          @Override
          String typeName(Type type) {
            try {
              Method getTypeName = Type.class.getMethod("getTypeName");
              return (String) getTypeName.invoke(type);
            } catch (NoSuchMethodException e) {
              throw new AssertionError("Type.getTypeName should be available in Java 8");
            } catch (InvocationTargetException | IllegalAccessException e) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/TaskReportRenderer.java

            getTextOutput().withStyle(Identifier).text(task.getPath());
            if (showTypes) {
                final StyledTextOutput typeOutput = getTextOutput().withStyle(Info);
                typeOutput.format(" (%s)", task.getTypeName());
            }
        }
    
        private void maybeWriteTaskDescription(TaskDetails task) {
            if (GUtil.isTrue(task.getDescription())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 29 11:53:41 UTC 2021
    - 5K bytes
    - Viewed (0)
  10. maven-di/src/main/java/org/apache/maven/di/impl/ReflectionUtils.java

            String typeName;
            if (raw.isAnonymousClass()) {
                Type superclass = raw.getGenericSuperclass();
                typeName = "? extends " + superclass.getTypeName();
            } else {
                typeName = type.getTypeName();
            }
    
            return PACKAGE_AND_PARENT
                    .matcher(ARRAY_SIGNATURE.matcher(typeName).replaceAll("$1[]"))
                    .replaceAll("");
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top