Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 487 for representing (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/WorkerLeaseRegistry.java

        /**
         * Creates a new {@link ResourceLock} that can be used to reserve a worker lease.  Note that this does not actually reserve a lease,
         * it simply creates a {@link ResourceLock} representing the worker lease.  The worker lease can be reserved only when
         * {@link ResourceLock#tryLock()} is called from a {@link org.gradle.internal.resources.ResourceLockCoordinationService#withStateLock(org.gradle.api.Transformer)}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Output.java

    import com.google.common.base.Preconditions;
    import groovy.util.Node;
    import org.gradle.plugins.ide.eclipse.model.internal.PathUtil;
    
    import java.util.LinkedHashMap;
    import java.util.Map;
    
    /**
     * A classpath entry representing an output folder.
     */
    public class Output implements ClasspathEntry {
    
        private String path;
    
        public Output(Node node) {
            this((String)node.attribute("path"));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top