Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for getBeans (0.13 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskPropertiesIntegrationTest.groovy

                        this.name = name
                    }
                }
    
                abstract class MyTask extends DefaultTask {
                    @Nested
                    abstract NamedDomainObjectContainer<Bean> getBeans()
    
                    @TaskAction
                    void go() {
                        println("beans = \${beans.collect { it.prop.get() } }")
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/project/taskfactory/AnnotationProcessingTasks.java

            @Nested
            public Object getBean() {
                return bean;
            }
        }
    
        public static class TaskWithNestedIterable extends TaskWithAction {
            Object bean;
    
            @Inject
            public TaskWithNestedIterable(Object nested) {
                bean = nested;
            }
    
            @Nested
            public List<?> getBeans() {
                return ImmutableList.of(bean);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 12 11:41:48 UTC 2022
    - 15.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/netbeans.png

    netbeans.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:03:53 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/running-builds/additional/gradle_ides.adoc

    You can find documentation link:https://projects.eclipse.org/projects/tools.buildship[here].
    
    == NetBeans
    
    The Apache Software Foundation maintains NetBeans, an open-source IDE for Java, PHP, Javascript and other languages.
    
    image::netbeans.png[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. README.md

    * [Android Studio](https://developer.android.com/studio/build/index.html)
    * [Eclipse](https://www.vogella.com/tutorials/EclipseGradle/article.html)
    * [IntelliJ IDEA](https://www.jetbrains.com/help/idea/gradle.html)
    * [NetBeans](https://netbeans.apache.org)
    * [Visual Studio Code](https://code.visualstudio.com/docs/languages/java)
    
    ## Need Help?
    
    * Get familiar with the [Gradle User Manual](https://docs.gradle.org/current/userguide/userguide.html)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 20:49:08 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/configuration/internal/DefaultBeanConfigurator.java

                classLoader = request.getBean().getClass().getClassLoader();
            }
    
            BeanExpressionEvaluator evaluator = new BeanExpressionEvaluator(request);
    
            ObjectWithFieldsConverter converter = new EnhancedConfigurationConverter();
    
            try {
                converter.processConfiguration(
                        converterLookup, request.getBean(), classLoader, plexusConfig, evaluator, null);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/hoist_broadcast_read.cc

          }
          is_cpu_read = parsed_name.type == kCpuDeviceType;
          return success();
        }
      }
      is_cpu_read = false;
      return success();
    }
    
    // Get the reads to hoist in the `replicate`.
    LogicalResult GetReads(FuncOp func, ReplicateOp replicate,
                           llvm::SmallVector<ReadVariableOp, 4>& reads) {
      for (Operation& op : replicate.getBody().front()) {
        if (auto read = llvm::dyn_cast<ReadVariableOp>(&op)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. .gitignore

    /*/*/*/out
    /*/*/*/*/out
    /.teamcity/target
    /gradle.ipr
    /gradle.iws
    
    # Eclipse
    # -------
    *.classpath
    *.project
    *.settings
    /bin
    /subprojects/*/bin
    atlassian-ide-plugin.xml
    .metadata/
    
    # NetBeans
    # --------
    .nb-gradle
    .nb-gradle-properties
    
    # Vim
    # ---
    *.sw[nop]
    
    # Emacs
    # -----
    *~
    \#*\#
    .\#*
    
    # Textmate
    # --------
    .textmate
    
    # Sublime Text
    # ------------
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 19:23:39 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise-workers/src/main/java/org/gradle/internal/operations/logging/StyledTextBuildOperationProgressDetails.java

     *
     * See LoggingBuildOperationProgressBroadcaster.
     *
     * @since 7.4
     */
    public interface StyledTextBuildOperationProgressDetails {
    
        List<? extends Span> getSpans();
    
        String getCategory();
    
        LogEventLevel getLevel();
    
        interface Span {
    
            /**
             * Always a value name of {@code org.gradle.internal.logging.text.StyledTextOutput.Style}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/serializer/StyledTextOutputEventSerializer.java

                encoder.writeBoolean(false);
            } else {
                encoder.writeBoolean(true);
                encoder.writeSmallLong(event.getBuildOperationId().getId());
            }
            spanSerializer.write(encoder, event.getSpans());
        }
    
        @Override
        public StyledTextOutputEvent read(Decoder decoder) throws Exception {
            long timestamp = decoder.readLong();
            String category = decoder.readString();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top