Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 179 for representing (0.27 sec)

  1. 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)
  2. 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)
  3. 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)
  4. guava/src/com/google/common/base/Ticker.java

     * the License.
     */
    
    package com.google.common.base;
    
    import com.google.common.annotations.GwtCompatible;
    
    /**
     * A time source; returns a time value representing the number of nanoseconds elapsed since some
     * fixed but arbitrary point in time. Note that most users should use {@link Stopwatch} instead of
     * interacting with this class directly.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 23 23:27:53 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. pkg/controller/endpointslicemirroring/metrics/cache.go

    	lock sync.Mutex
    	// numEndpoints represents the total number of endpoints stored in
    	// EndpointSlices.
    	numEndpoints int
    	// cache stores a EndpointPortCache grouped by NamespacedNames representing
    	// Services.
    	cache map[types.NamespacedName]*EndpointPortCache
    }
    
    // EndpointPortCache tracks values for total numbers of desired endpoints as well
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/AggregateTestReport.java

         * Contains the {@link TestReport} task instance which produces this report.
         *
         * @return the task instance
         */
        TaskProvider<TestReport> 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: Mon Sep 18 20:52:40 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/TargetMachineFactory.java

         */
        TargetMachineBuilder getMacOS();
    
        /**
         * Returns a {@link TargetMachineBuilder} representing the specified operating system and the architecture of the current host.
         */
        TargetMachineBuilder os(String operatingSystemFamily);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/flow/FlowScope.java

         * @param <P> the parameters defined by the given {@link FlowAction dataflow action} type.
         * @return a {@link Registration} object representing the registered action.
         */
        <P extends FlowParameters> Registration<P> always(
            Class<? extends FlowAction<P>> action,
            Action<? super FlowActionSpec<P>> configure
        );
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. platforms/software/version-control/src/main/java/org/gradle/vcs/internal/VersionControlSystem.java

     * specified by the underlying implementations.
     */
    public interface VersionControlSystem {
        /**
         * Returns a {@link Set} of {@link VersionRef}s representing
         * versions of a software package as they are known to the version
         * control system.
         */
        Set<VersionRef> getAvailableVersions(VersionControlSpec spec);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. src/runtime/symtabinl.go

    		// value we use for the outermost frame.
    		index: pcdatavalue1(u.f, abi.PCDATA_InlTreeIndex, pc, false),
    	}
    }
    
    func (uf inlineFrame) valid() bool {
    	return uf.pc != 0
    }
    
    // next returns the frame representing uf's logical caller.
    func (u *inlineUnwinder) next(uf inlineFrame) inlineFrame {
    	if uf.index < 0 {
    		uf.pc = 0
    		return uf
    	}
    	parentPc := u.inlTree[uf.index].parentPc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top