Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 384 for Implements (0.18 sec)

  1. testing/architecture-test/src/changes/archunit-store/public-api-not-extends-internal-types.txt

    Class <org.gradle.api.DefaultTask> extends/implements org.gradle.api.internal.AbstractTask that is Gradle Internal API in (DefaultTask.java:0)
    Class <org.gradle.api.ExtensiblePolymorphicDomainObjectContainer> extends/implements org.gradle.api.internal.rules.NamedDomainObjectFactoryRegistry that is Gradle Internal API in (ExtensiblePolymorphicDomainObjectContainer.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFlowScopeIntegrationTest.groovy

            def configCache = newConfigurationCacheFixture()
            scriptFileFor(scriptTarget) << """
                import org.gradle.api.flow.*
                import org.gradle.api.services.*
    
                class LavaLampPlugin implements Plugin<$targetType> {
    
                    final FlowScope flowScope
                    final FlowProviders flowProviders
    
                    @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r89/ToolingApiPolymorphismCrossVersionTest.groovy

                    String getVeryDeepMessage()
                }
    
                interface SideModel extends BaseModel {
                }
    
                abstract class AbstractModel implements DeepChildModel {
                }
    
                class DefaultModel extends AbstractModel implements ShallowChildModel, DeepChildModel, VeryDeepChildModel, SideModel, java.io.Serializable {
    
                    private final String message
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:03:18 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. cmd/storage-datatypes_gen.go

    				err = msgp.WrapError(err)
    				return
    			}
    		}
    	}
    	return
    }
    
    // EncodeMsg implements msgp.Encodable
    func (z BaseOptions) EncodeMsg(en *msgp.Writer) (err error) {
    	// map header, size 0
    	_ = z
    	err = en.Append(0x80)
    	if err != nil {
    		return
    	}
    	return
    }
    
    // MarshalMsg implements msgp.Marshaler
    func (z BaseOptions) MarshalMsg(b []byte) (o []byte, err error) {
    	o = msgp.Require(b, z.Msgsize())
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/ReceivedProblem.groovy

    import org.gradle.api.problems.internal.ProblemLocation
    
    /*
     * A deserialized representation of a problem received from the build operation trace.
     */
    @CompileStatic
    class ReceivedProblem implements Problem {
        private final long operationId
        private final ReceivedProblemDefinition definition
        private final String contextualLabel
        private final String details
        private final List<String> solutions
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 12:45:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/MissingScriptFixture.groovy

            TestFile addMissingScript(TestFile dir, ScriptLanguage scriptLanguage)
    
            String getDisplayName(String scriptExtension)
        }
    
        static class MissingBuild implements Scenario {
    
            @Override
            void setup(AbstractIntegrationSpec spec) {}
    
            @Override
            void createInitialBuildLayoutIn(TestFile dir, ScriptLanguage scriptLanguage) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheValueSourceIntegrationTest.groovy

             given:
             def configurationCache = newConfigurationCacheFixture()
    
             buildFile("""
                import org.gradle.api.provider.*
    
                abstract class GreetValueSource implements ValueSource<String, ValueSourceParameters.None> {
                    String obtain() {
                        return "Hello!"
                    }
                }
    
                abstract class MyTask extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheJavaSerializationIntegrationTest.groovy

            buildFile << """
                class Placeholder implements Serializable {
                    String value
    
                    private Object readResolve() {
                        return new OtherBean(prop: "[\$value]")
                    }
                }
    
                class OtherBean implements Serializable {
                    String prop
    
                    private Object writeReplace() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

      }
    
      public static class NoOpRunnable implements Runnable {
        @Override
        public void run() {}
      }
    
      public static class NoOpCallable implements Callable<Object> {
        @Override
        public Object call() {
          return Boolean.TRUE;
        }
      }
    
      public static final String TEST_STRING = "a test string";
    
      public static class StringTask implements Callable<String> {
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/watch/watch.go

    // an error is not warranted.
    func NewEmptyWatch() Interface {
    	ch := make(chan Event)
    	close(ch)
    	return emptyWatch(ch)
    }
    
    // Stop implements Interface
    func (w emptyWatch) Stop() {
    }
    
    // ResultChan implements Interface
    func (w emptyWatch) ResultChan() <-chan Event {
    	return chan Event(w)
    }
    
    // FakeWatcher lets you test anything that consumes a watch.Interface; threadsafe.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:06:22 UTC 2024
    - 8.1K bytes
    - Viewed (1)
Back to top