Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 272 for sometype (0.14 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/Task.java

     * {@code task} keyword in your build file: </p>
     * <pre>
     * task myTask
     * task myTask { configure closure }
     * task myTask(type: SomeType)
     * task myTask(type: SomeType) { configure closure }
     * </pre>
     *
     * <p>Each task has a name, which can be used to refer to the task within its owning project, and a fully qualified
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

            }
        }
    
        public interface SomeType {
            String getInterfaceProperty();
        }
    
        public interface SomeNamedType extends SomeType, Named {
        }
    
        @NonExtensible
        public static class NotExtensibleBean {
    
        }
    
        @NoConventionMapping
        public static class NoMappingBean implements SomeType {
            public String getProperty() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyHandler.java

     *     artifact {
     *       //useful when some artifact properties unconventional
     *       name = 'someArtifact' //artifact name different than module name
     *       extension = 'someExt'
     *       type = 'someType'
     *       classifier = 'someClassifier'
     *     }
     *   }
     * }
     * </pre>
     *
     * <h2>Dependency notations</h2>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  4. architecture/networking/pilot.md

    `PushContext` is built up by querying the above layers. For some simple use cases, this is as simple as storing something like `configstore.List(SomeType)`; in this case, the only difference from directly exposing the configstore is to snapshot the current state. In other cases, some pre-computations and indexes are computed to make later accesses efficient.
    
    #### Endpoints
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/exentity/RoleType.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.es.config.exentity;
    
    import org.codelibs.fess.es.config.bsentity.BsRoleType;
    
    /**
     * @author FreeGen
     */
    public class RoleType extends BsRoleType {
    
        private static final long serialVersionUID = 1L;
    
        public String getId() {
            return asDocMeta().id();
        }
    
        public void setId(final String id) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/typeparams/coretype.go

    // license that can be found in the LICENSE file.
    
    package typeparams
    
    import (
    	"fmt"
    	"go/types"
    )
    
    // CoreType returns the core type of T or nil if T does not have a core type.
    //
    // See https://go.dev/ref/spec#Core_types for the definition of a core type.
    func CoreType(T types.Type) types.Type {
    	U := T.Underlying()
    	if _, ok := U.(*types.Interface); !ok {
    		return U // for non-interface types,
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/ds/AbstractDataStore.java

            // label: labelType
            // role: roleType
            final List<String> roleTypeList = new ArrayList<>();
            stream(config.getPermissions()).of(stream -> stream.forEach(p -> roleTypeList.add(p)));
            defaultDataMap.put(fessConfig.getIndexFieldRole(), roleTypeList);
            // mimetype
            defaultDataMap.put(fessConfig.getIndexFieldMimetype(), mimeType);
            // title
            // content
            // cache
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. internal/s3select/progress.go

    }
    
    func newProgressReader(rc io.ReadCloser, compType CompressionType) (*progressReader, error) {
    	if rc == nil {
    		return nil, errors.New("newProgressReader: nil reader provided")
    	}
    	scannedReader := newCountUpReader(rc)
    	pr := progressReader{
    		rc:            rc,
    		scannedReader: scannedReader,
    	}
    	var r io.Reader
    
    	switch compType {
    	case noneType:
    		r = scannedReader
    	case gzipType:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Oct 18 15:44:36 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  9. fess-crawler-lasta/src/main/resources/crawler/mimetype.xml

    Shinsuke Sugaya <******@****.***> 1444529815 +0900
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 374 bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/types/KtFirTypeParameterType.kt

                ?: errorWithFirSpecificEntries("Type parameter was not found", coneType = coneType)
        }
    
        override val annotations: KaAnnotationList by cached {
            KaFirAnnotationListForType.create(coneType, builder)
        }
    
        override val nullability: KaTypeNullability get() = withValidityAssertion { coneType.nullability.asKtNullability() }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top