Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 218 for coordinator (0.15 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

      // Convert event coordinates to svg coordinates.
      function toSvg(x, y) {
        const p = svg.createSVGPoint();
        p.x = x;
        p.y = y;
        let m = svg.getCTM();
        if (m == null) m = svg.getScreenCTM(); // Firefox workaround.
        return p.matrixTransform(m.inverse());
      }
    
      // Change the scaling for the svg to s, keeping the point denoted
      // by u (in svg coordinates]) fixed at the same screen location.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/LibrariesSourceGenerator.java

                writeLn(" * <ul>");
                for (String coordinate : coordinates) {
                    writeLn(" *    <li>" + coordinate + "</li>");
                }
                writeLn(" * </ul>");
            }
            if (context != null) {
                writeLn(" * <p>");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 36K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultArtifactCoordinate.java

        private final @Nonnull org.eclipse.aether.artifact.Artifact coordinate;
    
        public DefaultArtifactCoordinate(
                @Nonnull InternalSession session, @Nonnull org.eclipse.aether.artifact.Artifact coordinate) {
            this.session = nonNull(session, "session");
            this.coordinate = nonNull(coordinate, "coordinate");
        }
    
        public org.eclipse.aether.artifact.Artifact getCoordinate() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. api/discovery/apis.json

              "version": "v1"
            }
          ]
        },
        {
          "name": "coordination.k8s.io",
          "preferredVersion": {
            "groupVersion": "coordination.k8s.io/v1",
            "version": "v1"
          },
          "versions": [
            {
              "groupVersion": "coordination.k8s.io/v1",
              "version": "v1"
            }
          ]
        },
        {
          "name": "node.k8s.io",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/plugins/MavenPluginPublishPlugin.java

            publication.setGroupId(pluginId);
    
            Provider<String> groupProvider = getProviderFactory().provider(coordinates::getGroupId);
            Provider<String> artifactIdProvider = getProviderFactory().provider(coordinates::getArtifactId);
            Provider<String> versionProvider = getProviderFactory().provider(coordinates::getVersion);
            publication.getPom().withXml(new Action<XmlProvider>() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 20:42:59 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/coordination/v1/doc.go

    limitations under the License.
    */
    
    // +k8s:deepcopy-gen=package
    // +k8s:protobuf-gen=package
    // +k8s:openapi-gen=true
    // +k8s:prerelease-lifecycle-gen=true
    
    // +groupName=coordination.k8s.io
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 778 bytes
    - Viewed (0)
  10. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/metadata/ModuleMetadataSpecBuilder.java

                ? identityFor(ownerData, relativeUrlTo(componentData.coordinates, ownerData.coordinates))
                : identityFor(componentData, null);
        }
    
        private ModuleMetadataSpec.Identity identityFor(ComponentData componentData, String relativeUrl) {
            return new ModuleMetadataSpec.Identity(
                componentData.coordinates,
                attributesFor(componentData.attributes),
                relativeUrl
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:07:04 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top