Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 479 for coordinator (0.21 sec)

  1. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/component/ConfigurationVariantDetailsInternal.java

            /**
             * If true, the resolved coordinates of the dependencies will be published instead of
             * the declared coordinates. For example, if a given dependency resolves to a variant
             * of the target component that is published as an external variant, then the external
             * coordinates will be published instead of the declared coordinates.
             */
            Property<Boolean> getPublishResolvedCoordinates();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:33:41 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/resolution/ModelResolver.java

    import org.apache.maven.api.model.Dependency;
    import org.apache.maven.api.model.Parent;
    import org.apache.maven.api.model.Repository;
    import org.apache.maven.model.building.ModelSource;
    
    /**
     * Resolves a POM from its coordinates. During the build process, the
     * {@link org.apache.maven.model.building.ModelBuilder} will add any relevant repositories to the model resolver. In
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 7K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelResolver.java

    /**
     * Resolves a POM from its coordinates.
     */
    public interface ModelResolver extends Service {
    
        /**
         * Tries to resolve the POM for the specified parent coordinates possibly updating {@code parent}.
         *
         * @param session The session to use to resolve the model, must not be {@code null}.
         * @param parent The parent coordinates to resolve, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/next_pluggable_device/c_api.h

    TF_CAPI_EXPORT extern void TF_DeleteVariableInfo(TF_VariableInfo* var_info);
    
    // ---------------------  Coordination service  --------------------------------
    // Returns a not owning pointer to the coordination service agent, which is
    // opaque to plugin. Plugin OpKernels need to use the accompanying C APIs to
    // access coordination service functionalities.
    TF_CAPI_EXPORT extern TF_CoordinationServiceAgent*
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 20:01:06 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  5. pkg/apis/coordination/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // +k8s:deepcopy-gen=package
    
    // +groupName=coordination.k8s.io
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 14 03:27:32 UTC 2018
    - 709 bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/component/ComponentWithCoordinates.java

    import org.gradle.api.artifacts.ModuleVersionIdentifier;
    
    /**
     * Represents a component that determines its publication coordinates.
     *
     * @since 4.7
     */
    public interface ComponentWithCoordinates extends SoftwareComponent {
        /**
         * The publication coordinates for this component.
         */
        ModuleVersionIdentifier getCoordinates();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 995 bytes
    - Viewed (0)
  7. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishCoordinatesIntegTest.groovy

            then:
            module.assertPublishedAsJavaModule()
            result.assertNotOutput("Multiple publications with coordinates")
    
            when:
            succeeds 'publish'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  8. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishCoordinatesIntegTest.groovy

            then:
            outputContains("Multiple publications with coordinates 'org.example:duplicate-publications:1.0' are published to repository 'ivy'. The publications 'main' in root project 'duplicate-publications' and 'other' in root project 'duplicate-publications' will overwrite each other!")
        }
    
        def "warns when publications in different projects share the same coordinates"() {
            given:
            createDirs("projectA", "projectB")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/HEAD/coordination.k8s.io.v1beta1.Lease.pb

    Daniel Smith <******@****.***> 1651776874 +0000
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 453 bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyCoordinateFactoryRequest.java

            return builder()
                    .session(nonNull(session, "session cannot be null"))
                    .groupId(nonNull(coordinate, "coordinate cannot be null").getGroupId())
                    .artifactId(coordinate.getArtifactId())
                    .version(coordinate.getVersion().asString())
                    .classifier(coordinate.getClassifier())
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 05 09:42:51 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top