Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for getBeans (0.19 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. maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionTest.java

         * otherwise sorting a list of ComparableVersions() will in some cases throw runtime exception;
         * see Netbeans issues <a href="https://netbeans.org/bugzilla/show_bug.cgi?id=240845">240845</a> and
         * <a href="https://netbeans.org/bugzilla/show_bug.cgi?id=226100">226100</a>
         */
        @Test
        void testMng5568() {
            String a = "6.1.0";
            String b = "6.1.0rc3";
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 06:39:47 UTC 2024
    - 14K bytes
    - Viewed (0)
  4. cni/pkg/nodeagent/net.go

    func (s *NetServer) getOrOpenNetns(pod *corev1.Pod, netNs string) (Netns, error) {
    	if netNs == "" {
    		return s.getNetns(pod)
    	}
    	return s.openNetns(pod, netNs)
    }
    
    func (s *NetServer) openNetns(pod *corev1.Pod, netNs string) (Netns, error) {
    	return s.currentPodSnapshot.UpsertPodCache(pod, netNs)
    }
    
    func (s *NetServer) getNetns(pod *corev1.Pod) (Netns, error) {
    	openNetns := s.currentPodSnapshot.Get(string(pod.UID))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskSerializationIntegrationTest.groovy

                    @Internal
                    Property<String> getUnused()
                }
    
                abstract class SomeTask extends DefaultTask {
                    @Nested
                    abstract Bean getBean()
    
                    @Nested
                    abstract Bean getUnusedBean()
    
                    @Internal
                    abstract Property<String> getValue()
    
                    @Internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/unfuse_batch_norm_pass.cc

        // Compute rhs = offset - mean * multiplier
        Value rhs = rewriter.create<mhlo::MulOp>(bn_op.getLoc(), multiplier,
                                                 bn_op.getMean());
        rhs = rewriter.create<mhlo::SubtractOp>(bn_op.getLoc(), bn_op.getOffset(),
                                                rhs);
    
        // Broadcast `multiplier` and `rhs`
        Value shape_value;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskParametersIntegrationTest.groovy

                    @Input
                    String getInput() {
                        count("inputValue")
                        return "Input"
                    }
    
                    @Nested
                    Object getBean() {
                        count("nestedInput")
                        return bean
                    }
    
                    @TaskAction
                    void doStuff() {
                        outputFile.text = inputFile.text
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/NestedInputIntegrationTest.groovy

                    public void setOutputFile(File outputFile) {
                        this.outputFile = outputFile;
                    }
    
                    @Nested
                    public NestedBeanWithAction getBean() {
                        return bean;
                    }
    
                    public void setBean(NestedBeanWithAction bean) {
                        this.bean = bean;
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

    * Using the latest versions of Gradle, applied plugins, and your IDE should be your first move.
    * Kotlin DSL is fully supported in Intellij IDEA and Android Studio. Other IDEs, such as Eclipse or NetBeans, do not yet provide helpful tools for editing Gradle Kotlin DSL files, however, importing and working with Kotlin DSL-based builds work as usual.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
Back to top