Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 9,567 for Implements (0.18 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r30/CustomToolingModelCrossVersionSpec.groovy

    }
    
    class CustomThing implements Serializable {
    }
    
    class CustomBuilder implements ToolingModelBuilder {
        boolean canBuild(String modelName) {
            return modelName == '${CustomModel.name}'
        }
        Object buildAll(String modelName, Project project) {
            return new CustomModel()
        }
    }
    
    class CustomPlugin implements Plugin<Project> {
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. pkg/registry/core/resourcequota/storage/storage.go

    	return &REST{store}, &StatusREST{store: &statusStore}, nil
    }
    
    // Implement ShortNamesProvider
    var _ rest.ShortNamesProvider = &REST{}
    
    // ShortNames implements the ShortNamesProvider interface. Returns a list of short names for a resource.
    func (r *REST) ShortNames() []string {
    	return []string{"quota"}
    }
    
    // StatusREST implements the REST endpoint for changing the status of a resourcequota.
    type StatusREST struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  3. pkg/registry/core/persistentvolume/storage/storage.go

    	return &REST{store}, &StatusREST{store: &statusStore}, nil
    }
    
    // Implement ShortNamesProvider
    var _ rest.ShortNamesProvider = &REST{}
    
    // ShortNames implements the ShortNamesProvider interface. Returns a list of short names for a resource.
    func (r *REST) ShortNames() []string {
    	return []string{"pv"}
    }
    
    // StatusREST implements the REST endpoint for changing the status of a persistentvolume.
    type StatusREST struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/initialization/DefaultGradlePropertiesController.java

    import org.gradle.initialization.properties.SystemPropertiesInstaller;
    
    import javax.annotation.Nullable;
    import java.io.File;
    import java.util.Map;
    
    public class DefaultGradlePropertiesController implements GradlePropertiesController {
    
        private State state = new NotLoaded();
        private final GradleProperties sharedGradleProperties = new SharedGradleProperties();
        private final IGradlePropertiesLoader propertiesLoader;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 03 11:26:22 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r81/ToolchainsParallelActionExecutionCrossVersionSpec.groovy

                        registry.register(new ToolchainBuilder())
                    }
                }
    
                class ToolchainModel implements Serializable {
                    String path
                    Integer javaVersion
                }
    
                class ToolchainBuilder implements ToolingModelBuilder {
                    boolean canBuild(String modelName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 05:31:40 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/DefaultFilePropertyFactory.java

            }
        }
    
        private static class ToFileTransformer implements Transformer<File, FileSystemLocation> {
            @Override
            public File transform(FileSystemLocation location) {
                return location.getAsFile();
            }
        }
    
        private static class DirectoryProviderPathToFileResolver implements PathToFileResolver {
            private final Provider<Directory> directoryProvider;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:53:33 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/hash/Funnels.java

      /** Returns a funnel that extracts the bytes from a {@code byte} array. */
      public static Funnel<byte[]> byteArrayFunnel() {
        return ByteArrayFunnel.INSTANCE;
      }
    
      private enum ByteArrayFunnel implements Funnel<byte[]> {
        INSTANCE;
    
        @Override
        public void funnel(byte[] from, PrimitiveSink into) {
          into.putBytes(from);
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 25 20:32:46 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/hash/Funnels.java

      /** Returns a funnel that extracts the bytes from a {@code byte} array. */
      public static Funnel<byte[]> byteArrayFunnel() {
        return ByteArrayFunnel.INSTANCE;
      }
    
      private enum ByteArrayFunnel implements Funnel<byte[]> {
        INSTANCE;
    
        @Override
        public void funnel(byte[] from, PrimitiveSink into) {
          into.putBytes(from);
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 25 20:32:46 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/ExtensibleEnums.java

            }
        }
    
        private static class DefaultProjectScope extends DefaultExtensibleEnum implements ProjectScope {
    
            DefaultProjectScope(String id) {
                super(id);
            }
        }
    
        private static class DefaultLanguage extends DefaultExtensibleEnum implements Language {
    
            DefaultLanguage(String id) {
                super(id);
            }
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 05 09:42:51 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/AbstractComponentModelIntegrationTest.groovy

                interface CustomBinary extends BinarySpec {
                    String getData()
                    void setData(String value)
                }
                class DefaultCustomBinary extends BaseBinarySpec implements CustomBinary {
                    String data = "bar"
                }
    
                class BinaryRules extends RuleSource {
                    @ComponentType
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top