Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 279 for setDescription (0.21 sec)

  1. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationState.java

        public BuildOperationState(BuildOperationDescriptor descriptor, long startTime) {
            this.startTime = startTime;
            this.description = descriptor;
        }
    
        public BuildOperationDescriptor getDescription() {
            return description;
        }
    
        public boolean isRunning() {
            return running.get();
        }
    
        public void setRunning(boolean running) {
            this.running.set(running);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/resolveExtensionInfoProvider/AbstractResolveExtensionInfoProviderTest.kt

    import org.jetbrains.kotlin.analysis.api.impl.base.test.cases.resolve.extensions.KtResolveExtensionTestSupport
    import org.jetbrains.kotlin.analysis.api.impl.base.test.cases.resolve.extensions.getDescription
    import org.jetbrains.kotlin.analysis.api.scopes.KaScope
    import org.jetbrains.kotlin.analysis.api.symbols.KaDeclarationSymbol
    import org.jetbrains.kotlin.analysis.test.framework.base.AbstractAnalysisApiBasedTest
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/main/java/org/gradle/language/base/internal/plugins/CleanRule.java

        public CleanRule(TaskContainer tasks) {
            this.tasks = tasks;
        }
    
        @Override
        public String getDescription() {
            return "Pattern: " + CLEAN + "<TaskName>: Cleans the output files of a task.";
        }
    
        @Override
        public String toString() {
            return "Rule: " + getDescription();
        }
    
        @Override
        public void apply(String taskName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/SourceFileChangeProcessor.java

            DependentsSet actualDependents = previousCompilation.findDependentsOfSourceChanges(classNames);
            if (actualDependents.isDependencyToAll()) {
                spec.setFullRebuildCause(actualDependents.getDescription());
                return;
            }
            spec.addClassesToCompile(actualDependents.getAllDependentClasses());
            spec.addResourcesToGenerate(actualDependents.getDependentResources());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/metadata/SwiftcMetadataProvider.java

            @Override
            public String getIdentifier() {
                return "swiftc";
            }
    
            @Override
            public String getDescription() {
                return "SwiftC";
            }
        };
    
        public SwiftcMetadataProvider(ExecActionFactory execActionFactory) {
            super(execActionFactory);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. testing/architecture-test/src/test/java/org/gradle/architecture/test/FreezeInstructionsPrintingArchRule.java

        }
    
        @Override
        public ArchRule allowEmptyShould(boolean allowEmptyShould) {
            return delegate.allowEmptyShould(allowEmptyShould);
        }
    
        @Override
        public String getDescription() {
            return delegate.getDescription();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/dependencies/AsciiDependencyReportRenderer.java

                getTextOutput().withStyle(Description).text(getDescription(configuration));
                if (!configuration.isCanBeResolved()) {
                    getTextOutput().withStyle(Info).text(" (n)");
                }
            }
    
            private String getDescription(ConfigurationDetails configuration) {
                String description = configuration.getDescription();
                if (description != null && !description.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 13 07:41:09 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/flatmultimodule/some-thing/webinar-impl/src/main/java/webinar/Webinar.java

      
      private final String description;
      
      public Webinar() {
        this("I'm happy today!");
      }
      
      public Webinar(String description) {
        this.description = description;
      }
    
      public String getDescription() {
        return StringUtils.normalizeSpace(description);
      }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 379 bytes
    - Viewed (0)
  9. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/multiModule/some-thing/webinar-impl/src/main/java/webinar/Webinar.java

      
      private final String description;
      
      public Webinar() {
        this("I'm happy today!");
      }
      
      public Webinar(String description) {
        this.description = description;
      }
    
      public String getDescription() {
        return StringUtils.normalizeSpace(description);
      }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 379 bytes
    - Viewed (0)
  10. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/flatmultimodule/some-thing/webinar-api/src/main/java/webinar/Demoable.java

    package webinar;
    
    public interface Demoable {
      String getDescription();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 75 bytes
    - Viewed (0)
Back to top