Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 422 for representing (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/notify/BuildOperationFinishedNotification.java

        /**
         * A structured object providing details about the operation that was performed.
         */
        Object getNotificationOperationDetails();
    
        /**
         * A structured object representing the outcome of the operation.
         * Null if the operation failed, or if no result details are produced for the type of operation.
         */
        Object getNotificationOperationResult();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/EnabledOnlyBooleanBuildOption.java

     */
    
    package org.gradle.internal.buildoption;
    
    import org.gradle.cli.CommandLineParser;
    import org.gradle.cli.ParsedCommandLine;
    
    import java.util.Map;
    
    /**
     * A build option representing a boolean option with a enabled mode only e.g. {@code "--foreground"}.
     *
     * @since 4.3
     */
    public abstract class EnabledOnlyBooleanBuildOption<T> extends AbstractBuildOption<T, CommandLineOptionConfiguration> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 21:41:57 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. tensorflow/cc/framework/ops.h

      Tensor tensor_;
      const std::string node_name_ = "";
      int32 index_ = 0;
      DataType data_type_ = DT_INVALID;
    };
    
    /// A type for representing the output of ops that produce more than one output,
    /// or a list of tensors.
    typedef std::vector<Output> OutputList;
    
    /// A type for representing the input to ops that require a list of tensors.
    class InputList {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/Packaging.java

    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.annotations.Immutable;
    import org.apache.maven.api.annotations.Nonnull;
    import org.apache.maven.api.model.PluginContainer;
    
    /**
     * Interface representing a Maven project packaging.
     * <p>
     * TODO: define how to plug in new packaging definitions using the SPI.
     *   the packaging are currently defined by Maven 3 {@code Provider<LifecycleMapping>}
     *
     * @since 4.0.0
     */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top