Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 843 for GETs (0.24 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilderRequest.java

    @Immutable
    public interface SettingsBuilderRequest {
    
        @Nonnull
        Session getSession();
    
        /**
         * Gets the global settings source.
         *
         * @return the global settings source or {@code null} if none
         */
        @Nonnull
        Optional<Source> getGlobalSettingsSource();
    
        /**
         * Gets the project settings source.
         *
         * @return the project settings source or {@code null} if none
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/PhasedActionResult.java

     *
     * @since 4.8
     */
    public interface PhasedActionResult<T> extends InternalProtocolInterface, Serializable {
    
        /**
         * Gets the action result if it completed successfully.
         *
         * @return The result.
         */
        T getResult();
    
        /**
         * Gets the phase of the build when the action was run.
         *
         * @return The phase.
         */
        Phase getPhase();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/repository/legacy/metadata/MetadataResolutionRequest.java

         * @return This request, never {@code null}.
         */
        MetadataResolutionRequest setOffline(boolean offline);
    
        /**
         * Gets the artifact to resolve metadata for.
         *
         * @return The artifact to resolve metadata for or {@code null} if not set.
         */
        Artifact getArtifact();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. pkg/kubelet/stats/host_stats_provider.go

    type HostStatsProvider interface {
    	// getPodLogStats gets stats associated with pod log usage
    	getPodLogStats(podNamespace, podName string, podUID types.UID, rootFsInfo *cadvisorapiv2.FsInfo) (*statsapi.FsStats, error)
    	// getPodContainerLogStats gets stats associated with container log usage
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/upgrade/versiongetter.go

    }
    
    // NewKubeVersionGetter returns a new instance of KubeVersionGetter
    func NewKubeVersionGetter(client clientset.Interface) VersionGetter {
    	return &KubeVersionGetter{
    		client: client,
    	}
    }
    
    // ClusterVersion gets API server version
    func (g *KubeVersionGetter) ClusterVersion() (string, *versionutil.Version, error) {
    	var (
    		clusterVersionInfo *pkgversion.Info
    		err                error
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/resolution/UnresolvableModelException.java

            this.artifactId = artifactId;
            this.version = version;
        }
    
        /**
         * Gets the group id of the unresolvable model.
         *
         * @return The group id of the unresolvable model, can be empty but never {@code null}.
         */
        public String getGroupId() {
            return groupId;
        }
    
        /**
         * Gets the artifact id of the unresolvable model.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelNode.java

        /**
         * The number of link this node has.
         */
        int getLinkCount();
    
        /**
         * Gets the value represented by this node.
         *
         * Calling this method may create or transition the node.
         */
        Optional<String> getValueDescription();
    
        /**
         * Gets the underlying type of this node.
         * <p>
         * Calling this method may create or transition the node.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/convert-tf-control-flow-to-scf.mlir

    // RUN: tf-opt -convert-tf-control-flow-to-scf %s | FileCheck %s
    
    // `tf.IfRegion` which returns values gets converted to `scf.if`.
    func.func private @test_if_then1(tensor<4xf32>) -> tensor<4xf32>
    func.func private @test_if_else1(tensor<4xf32>) -> tensor<4xf32>
    // CHECK-LABEL: func @test_supported_lowering_of_tf_if_region1
    // CHECK-SAME: (%[[ARG0:.*]]: tensor<i1>, %[[ARG1:.*]]: tensor<4xf32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. tensorflow/cc/saved_model/fingerprinting_utils.h

            field_tags,
        Message* merged_message);
    
    // Gets the field tags for `graph_def`.::tensorflow
    inline RepeatedPtrField<::tensorflow::proto_splitter::FieldIndex>
    GraphDefFieldTags();
    
    // Gets the field tags for `signature_def`.
    inline RepeatedPtrField<::tensorflow::proto_splitter::FieldIndex>
    SignatureDefFieldTags();
    
    // Gets the field tags for `saved_object_graph`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 22:19:55 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelCacheTag.java

     *
     * @param <T> The type of data associated with the tag.
     */
    interface ModelCacheTag<T> {
    
        /**
         * Gets the name of the tag.
         *
         * @return The name of the tag, must not be {@code null}.
         */
        String getName();
    
        /**
         * Gets the type of data associated with this tag.
         *
         * @return The type of data, must not be {@code null}.
         */
        Class<T> getType();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Jan 13 13:02:40 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top