Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 515 for 20something (0.23 sec)

  1. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerPluginClasspathInjectionIntegrationTest.groovy

                import org.gradle.api.DefaultTask
                import org.gradle.api.tasks.TaskAction
    
                class HelloWorld1 extends DefaultTask {
                    @TaskAction
                    void doSomething() {
                        println 'Hello world! (buildSrc)'
                    }
                }
            """
    
            buildFile << plugin.useDeclaration << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 03:45:31 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractClassChangeIncrementalCompilationIntegrationTest.groovy

        @Unroll("detects changes to class referenced through a #modifier field")
        def "detects changes to class referenced through a field"() {
            given:
            source """class A {
        $modifier B b;
        void doSomething() {
            Runnable r = b;
            r.run();
        }
    }"""
            source '''abstract class B implements Runnable { }'''
    
            outputs.snapshot { run language.compileTaskName }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/grappler/grappler.cc

    ==============================================================================*/
    // This file extends/implements core graph optimizer base classes in terms of
    // the C API defined in grappler.h. A class "CSomething" represents a
    // "Something" that can be manipulated via calls in the C interface and a C
    // struct called "TP_Something".
    
    #include "tensorflow/c/experimental/grappler/grappler.h"
    
    #include <algorithm>
    #include <cstddef>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 15K bytes
    - Viewed (0)
  4. src/encoding/gob/gobencdec_test.go

    // Structs that include GobEncodable fields.
    
    type GobTest0 struct {
    	X int // guarantee we have  something in common with GobTest*
    	G *ByteStruct
    }
    
    type GobTest1 struct {
    	X int // guarantee we have  something in common with GobTest*
    	G *StringStruct
    }
    
    type GobTest2 struct {
    	X int    // guarantee we have  something in common with GobTest*
    	G string // not a GobEncoder - should give us errors
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:26:13 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  5. pkg/controller/deployment/util/deployment_util_test.go

    			generatePodTemplateSpec("foo", "foo-node", map[string]string{}, map[string]string{apps.DefaultDeploymentUniqueLabelKey: "value-2", "something": "else"}),
    			true,
    		},
    		{
    			"Same spec, the former doesn't have pod-template-hash label",
    			generatePodTemplateSpec("foo", "foo-node", map[string]string{}, map[string]string{"something": "else"}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadataStoreTest.groovy

            @Large
            static void doStatic() {}
    
            @Small
            static String getStatic() { "static" }
    
            @Large
            void doSomething() {}
    
            @Large
            void setSomething(String something) {}
        }
    
    
        def "ignores validation of generated Groovy methods"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 11 15:31:37 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/DefaultModelSchemaExtractorTest.groovy

            InputStream doSomething(Object param)
            InputStream doSomething(Object param, Object other)
        }
    
        @Managed
        interface ManagedTypeExtendingUnmanagedTypeWithOverloadedMethod extends UnmanagedSuperTypeWithOverloadedMethod {
            @Override ByteArrayInputStream doSomething(Object param)
            @Override ByteArrayInputStream doSomething(Object param, Object other)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectSpec.groovy

            given:
            def project = project('root', null, Stub(GradleInternal))
            def action = { files -> files.builtBy('something') } as Action<ConfigurableFileCollection>
    
            when:
            def fileCollection = project.files('path', action)
    
            then:
            fileCollection.builtBy == ['something'] as Set
        }
    
        def "can create file tree configured with an Action"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. platforms/extensibility/test-kit/src/test/groovy/org/gradle/testkit/runner/internal/DefaultGradleRunnerTest.groovy

            new RuntimeException('Something went wrong')                                                                                  | 'Something went wrong'        | 'exception having no parent cause'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/VariantMetadataRules.java

            }
    
            @Override
            public void addAttributesAction(ImmutableAttributesFactory attributesFactory, VariantAction<? super AttributeContainer> action) {
                throw new UnsupportedOperationException("You are probably trying to add a variant attribute to something that wasn't supposed to be mutable");
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.4K bytes
    - Viewed (0)
Back to top