Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 419 for representing (0.2 sec)

  1. maven-core/src/main/java/org/apache/maven/toolchain/Toolchain.java

         * @return the toolchain type
         */
        String getType();
    
        /**
         * Gets the platform tool executable.
         *
         * @param toolName the tool platform independent tool name.
         * @return file representing the tool executable, or null if the tool can not be found
         */
        String findTool(String toolName);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/fingerprint/classpath/ClasspathFingerprinter.java

    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Responsible for calculating a {@link FileCollectionFingerprint} for a {@link org.gradle.api.file.FileCollection} representing a Java classpath. Compared to {@link RelativePathFileCollectionFingerprinter} this fingerprinter orders files within any sub-tree.
     *
     * @see org.gradle.api.tasks.Classpath
     */
    @ServiceScope(Scope.UserHome.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/child/WorkerDirectoryProvider.java

     * limitations under the License.
     */
    
    package org.gradle.process.internal.worker.child;
    
    import java.io.File;
    
    public interface WorkerDirectoryProvider {
        /**
         * Returns a File object representing the working directory for workers.
         */
        File getWorkingDirectory();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 860 bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/NativeTestSuiteSpec.java

     */
    package org.gradle.nativeplatform.test;
    
    import org.gradle.api.Incubating;
    import org.gradle.nativeplatform.NativeComponentSpec;
    import org.gradle.testing.base.TestSuiteSpec;
    
    /**
     * A component representing a suite of tests that will be executed together.
     *
     * @since 4.2
     */
    @Incubating
    public interface NativeTestSuiteSpec extends TestSuiteSpec, NativeComponentSpec {
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

    	// AsCanonicalBytes returns a byte array representing the string representation
    	// of the value mantissa and an int32 representing its exponent in base-10. Callers may
    	// pass a byte slice to the method to avoid allocations.
    	AsCanonicalBytes(out []byte) ([]byte, int32)
    	// AsCanonicalBase1024Bytes returns a byte array representing the string representation
    	// of the value mantissa and an int32 representing its exponent in base-1024. Callers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Library.java

     */
    
    package org.gradle.plugins.ide.eclipse.model;
    
    import groovy.util.Node;
    import org.gradle.plugins.ide.eclipse.model.internal.FileReferenceFactory;
    
    /**
     * A classpath entry representing a library.
     */
    public class Library extends AbstractLibrary {
        public Library(Node node, FileReferenceFactory fileReferenceFactory) {
            super(node, fileReferenceFactory);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXNativeTarget.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.ide.xcode.internal.xcodeproj;
    
    /**
     * Concrete target type representing targets built by xcode itself, rather than an external build
     * system.
     */
    public class PBXNativeTarget extends PBXTarget {
        public PBXNativeTarget(String name, ProductType productType) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1023 bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/rules/RuleAction.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.rules;
    
    import java.util.List;
    
    /**
     * An action representing a rule, taking declared inputs and performing an action on a subject.
     *
     * @param <T> The subject type
     */
    public interface RuleAction<T> {
        List<Class<?>> getInputTypes();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 931 bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/KtInitializerValue.kt

    import org.jetbrains.kotlin.analysis.api.annotations.KaAnnotationValue
    import org.jetbrains.kotlin.analysis.api.base.KaConstantValue
    import org.jetbrains.kotlin.psi.KtExpression
    
    /**
     * Value representing some property or variable initializer
     */
    public sealed class KaInitializerValue {
        /**
         * [com.intellij.psi.PsiElement] of initializer. May be null if property/variable came from non-source file.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoCoverageReport.java

         * Contains the {@link JacocoReport} task instance which produces this report
         *
         * @return the task instance
         */
        TaskProvider<JacocoReport> getReportTask();
    
        /**
         * Contains a value representing the type of test suite this task belongs to.  See static constants on {@link org.gradle.api.attributes.TestSuiteType} for examples.
         *
         * @return this report's test type
         */
        Property<String> getTestType();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top