Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 479 for coordinator (0.29 sec)

  1. api/openapi-spec/v3/apis__coordination.k8s.io__v1_openapi.json

              }
            },
            "type": "object",
            "x-kubernetes-group-version-kind": [
              {
                "group": "coordination.k8s.io",
                "kind": "Lease",
                "version": "v1"
              }
            ]
          },
          "io.k8s.api.coordination.v1.LeaseList": {
            "description": "LeaseList is a list of Lease objects.",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 136.6K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/LineInFileLocation.java

     */
    
    package org.gradle.tooling.events.problems;
    
    import org.gradle.api.Incubating;
    
    /**
     * A basic location pointing to a specific part of a file using line number, column, and length for coordinates.
     * <p>
     * The line and column coordinates are one-indexed so that they can be easily matched to the content of a UI editor interface.
     *
     * @since 8.6
     */
    @Incubating
    public interface LineInFileLocation extends FileLocation {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:33:01 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/OffsetInFileLocation.java

     */
    
    package org.gradle.tooling.events.problems;
    
    import org.gradle.api.Incubating;
    
    /**
     * 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.
     *
     * @since 8.6
     */
    @Incubating
    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.3K bytes
    - Viewed (0)
  4. api/discovery/apis__coordination.k8s.io__v1.json

    {
      "apiVersion": "v1",
      "groupVersion": "coordination.k8s.io/v1",
      "kind": "APIResourceList",
      "resources": [
        {
          "kind": "Lease",
          "name": "leases",
          "namespaced": true,
          "singularName": "lease",
          "storageVersionHash": "gqkMMb/YqFM=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
            "list",
            "patch",
            "update",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 451 bytes
    - Viewed (0)
  5. cluster/addons/cloud-controller-manager/cloud-node-controller-role.yaml

    rules:
    - apiGroups:
      - ""
      - events.k8s.io
      resources:
      - events
      verbs:
      - create
      - patch
      - update
    - apiGroups:
      - coordination.k8s.io
      resources:
      - leases
      verbs:
      - create
    - apiGroups:
      - coordination.k8s.io
      resourceNames:
      - cloud-controller-manager
      resources:
      - leases
      verbs:
      - get
      - update
    - apiGroups:
      - ""
      resources:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 08 14:40:04 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. pkg/controlplane/controller/apiserverleasegc/gc_controller.go

    	"fmt"
    	"time"
    
    	v1 "k8s.io/api/coordination/v1"
    	"k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/labels"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apimachinery/pkg/util/wait"
    	informers "k8s.io/client-go/informers/coordination/v1"
    	"k8s.io/client-go/kubernetes"
    	listers "k8s.io/client-go/listers/coordination/v1"
    	"k8s.io/client-go/tools/cache"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 25 03:27:44 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/catalog/parser/TomlCatalogFileParser.java

            Object coordinates = librariesTable.get(alias);
            if (coordinates instanceof String) {
                List<String> split = SPLITTER.splitToList((String) coordinates);
                if (split.size() == 2) {
                    String id = notEmpty(split.get(0), "id", alias);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  8. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishMultiProjectIntegTest.groovy

    Found the following publications in project ':project2':
      - Maven publication 'maven' with coordinates org.gradle.test:project2:2.0
      - Maven publication 'extraComp' with coordinates extra.group:extra-comp:extra
      - Maven publication 'extra' with coordinates extra.group:extra:extra"""
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  9. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/DefaultMavenPublication.java

            Module module = dependencyMetaDataProvider.getModule();
            MavenPublicationCoordinates coordinates = pom.getCoordinates();
            coordinates.getGroupId().convention(providerFactory.provider(module::getGroup));
            coordinates.getArtifactId().convention(providerFactory.provider(module::getName));
            coordinates.getVersion().convention(providerFactory.provider(module::getVersion));
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 06:46:01 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util_test.cc

                std::vector<int64_t>(),
                "device coordinate (-1, 0, 0, 0) in 'topology' is outside "
                "of mesh shape (2, 1, 1, 1)"),
            std::make_tuple(
                2, 1, TopologyWithDeviceCoordinates({2, 0, 0, 0, 1, 0, 0, 0}),
                std::vector<int64_t>(),
                "device coordinate (2, 0, 0, 0) in 'topology' is outside "
                "of mesh shape (2, 1, 1, 1)"),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 46.8K bytes
    - Viewed (0)
Back to top