Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 479 for coordinator (0.19 sec)

  1. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/OffsetInFileLocation.java

     * limitations under the License.
     */
    
    package org.gradle.api.problems.internal;
    
    /**
     * A basic location pointing to a specific part of a file using a global offset and length for coordinates.
     * <p>
     * The coordinates are expected to be zero indexed.
     */
    public interface OffsetInFileLocation extends FileLocation {
    
        /**
         * The global offset from the beginning of the file.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:33:01 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyConstraintHandler.java

         * Declares a constraint on an enforced platform. If the target coordinates represent multiple
         * potential components, the platform component will be selected, instead of the library.
         * An enforced platform is a platform for which the direct dependencies are forced, meaning
         * that they would override any other version found in the graph.
         *
         * @param notation the coordinates of the platform
         *
         * @since 5.0
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  3. pkg/kubectl/.import-restrictions

          - k8s.io/kubernetes/pkg/apis/certificates/install
          - k8s.io/kubernetes/pkg/apis/certificates/v1beta1
          - k8s.io/kubernetes/pkg/apis/coordination
          - k8s.io/kubernetes/pkg/apis/coordination/install
          - k8s.io/kubernetes/pkg/apis/coordination/v1
          - k8s.io/kubernetes/pkg/apis/coordination/v1beta1
          - k8s.io/kubernetes/pkg/apis/core
          - k8s.io/kubernetes/pkg/apis/core/helper
          - k8s.io/kubernetes/pkg/apis/core/install
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 01 02:44:42 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/maven-publish/specify-relocation/kotlin/library/build.gradle.kts

            create<MavenPublication>("relocation") {
                pom {
                    // Old artifact coordinates
                    groupId = "com.example"
                    artifactId = "lib"
                    version = "2.0.0"
    
                    distributionManagement {
                        relocation {
                            // New artifact coordinates
                            groupId = "com.new-example"
                            artifactId = "lib"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tile.go

    	}
    	if len(data) == HashSize {
    		var h Hash
    		copy(h[:], data)
    		return h
    	}
    	n := len(data) / 2
    	return NodeHash(tileHash(data[:n]), tileHash(data[n:]))
    }
    
    // NewTiles returns the coordinates of the tiles of height h ≥ 1
    // that must be published when publishing from a tree of
    // size newTreeSize to replace a tree of size oldTreeSize.
    // (No tiles need to be published for a tree of size zero.)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. cluster/addons/rbac/cluster-autoscaler/cluster-autoscaler-rbac.yaml

    apiVersion: rbac.authorization.k8s.io/v1
    metadata:
      name: cluster-autoscaler
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    rules:
      # leader election
      - apiGroups: ["coordination.k8s.io"]
        resources: ["leases"]
        verbs: ["create"]
      - apiGroups: ["coordination.k8s.io"]
        resources: ["leases"]
        resourceNames: ["cluster-autoscaler"]
        verbs: ["get", "update", "patch", "delete"]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 12 16:56:45 UTC 2020
    - 2K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactCoordinateFactory.java

     *
     * @since 4.0.0
     */
    @Experimental
    public interface ArtifactCoordinateFactory extends Service {
    
        /**
         * Creates a coordinate.
         *
         * @param request the request holding coordinate creation parameters
         * @return an {@code ArtifactCoordinate}, never {@code null}
         * @throws IllegalArgumentException if {@code request} is null or {@code request.session} is null or invalid
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 18 10:30:20 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. pkg/apis/coordination/v1/register.go

    limitations under the License.
    */
    
    package v1
    
    import (
    	coordinationv1 "k8s.io/api/coordination/v1"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    )
    
    // GroupName is the group name use in this package
    const GroupName = "coordination.k8s.io"
    
    // SchemeGroupVersion is group version used to register these objects
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 25 10:06:08 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  9. pkg/apis/coordination/v1beta1/register.go

    limitations under the License.
    */
    
    package v1beta1
    
    import (
    	coordinationv1beta1 "k8s.io/api/coordination/v1beta1"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    )
    
    // GroupName is the group name use in this package
    const GroupName = "coordination.k8s.io"
    
    // SchemeGroupVersion is group version used to register these objects
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 25 10:06:08 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  10. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publication/IvyComponentParser.java

                ) {
                    revConstraint = dependency.getVersion();
                }
    
                return new DefaultIvyDependency(
                    coordinates.getGroup(),
                    coordinates.getName(),
                    nullToEmpty(coordinates.getVersion()),
                    confMapping,
                    dependency.isTransitive(),
                    revConstraint,
                    dependency.getArtifacts(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 18.4K bytes
    - Viewed (1)
Back to top