Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,059 for reasons (0.32 sec)

  1. maven-core/src/main/java/org/apache/maven/plugin/internal/PluginDependenciesResolver.java

    import org.eclipse.aether.resolution.DependencyResult;
    
    /**
     * Assists in resolving the dependencies of a plugin. <strong>Warning:</strong> This is an internal utility interface
     * that is only public for technical reasons, it is not part of the public API. In particular, this interface can be
     * changed or deleted without prior notice.
     *
     * @since 3.0
     */
    public interface PluginDependenciesResolver {
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/ProjectBuildingHelper.java

    import org.apache.maven.plugin.version.PluginVersionResolutionException;
    
    /**
     * Assists the project builder. <strong>Warning:</strong> This is an internal utility interface that is only public for
     * technical reasons, it is not part of the public API. In particular, this interface can be changed or deleted without
     * prior notice.
     *
     */
    public interface ProjectBuildingHelper {
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/gover/gover.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package gover implements support for Go toolchain versions like 1.21.0 and 1.21rc1.
    // (For historical reasons, Go does not use semver for its toolchains.)
    // This package provides the same basic analysis that golang.org/x/mod/semver does for semver.
    // It also provides some helpers for extracting versions from go.mod files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesDependencyResolveIntegTest.groovy

                resolve.expectGraph {
                    root(":", ":test:") {
                        edge("org.utils:api:${selector}", "org.utils:${chosenModule}:${chosenVersion}") {
                            byReasons(reasons)
                            maybeRequested()
                        }
                    }
                }
            }
    
            when:
            resetExpectations()
    
            then:
            checkDependencies()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types_jsonschema.go

    	// +optional
    	MessageExpression string
    	// reason provides a machine-readable validation failure reason that is returned to the caller when a request fails this validation rule.
    	// The HTTP status code returned to the caller will match the reason of the reason of the first failed validation rule.
    	// The currently supported reasons are: "FieldValueInvalid", "FieldValueForbidden", "FieldValueRequired", "FieldValueDuplicate".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 22:23:23 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/extender.go

    	// expected to be a subset of the supplied list.
    	// The failedNodes and failedAndUnresolvableNodes optionally contains the list
    	// of failed nodes and failure reasons, except nodes in the latter are
    	// unresolvable.
    	Filter(pod *v1.Pod, nodes []*NodeInfo) (filteredNodes []*NodeInfo, failedNodesMap extenderv1.FailedNodesMap, failedAndUnresolvable extenderv1.FailedNodesMap, err error)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/MetadataBridge.java

    import org.eclipse.aether.metadata.MergeableMetadata;
    import org.eclipse.aether.metadata.Metadata;
    
    /**
     * <strong>Warning:</strong> This is an internal utility class that is only public for technical reasons, it is not part
     * of the public API. In particular, this class can be changed or deleted without prior notice.
     *
     */
    @Deprecated
    public final class MetadataBridge extends AbstractMetadata implements MergeableMetadata {
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. maven-embedder/src/test/java/org/apache/maven/cli/transfer/SimplexTransferListenerTest.java

            DefaultRepositorySystemSession session = new DefaultRepositorySystemSession(h -> false); // no close handle
    
            // for technical reasons we cannot throw here, even if delegate does cancel transfer
            listener.transferInitiated(event(session, resource, TransferEvent.EventType.INITIATED));
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 20:50:56 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. src/reflect/badlinkname.go

    //go:linkname unusedIfaceIndir reflect.ifaceIndir
    func unusedIfaceIndir(t *abi.Type) bool {
    	return t.Kind_&abi.KindDirectIface == 0
    }
    
    //go:linkname valueInterface
    
    // The compiler doesn't allow linknames on methods, for good reasons.
    // We use this trick to push linknames of the methods.
    // Do not call them in this package.
    
    //go:linkname badlinkname_rtype_Align reflect.(*rtype).Align
    func badlinkname_rtype_Align(*rtype) int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/settings/SettingsBlocksCheck.kt

                documentNode.name == Settings::pluginManagement.name &&
                with(documentResolutionContainer.data(documentNode)) {
                    this is DocumentResolution.ElementResolution.ElementNotResolved && this.reasons == listOf(UnresolvedBase)
                }
    
        private
        fun isResolvedPluginsNode(resolvedDocumentNode: DocumentNode, documentResolutionContainer: DocumentResolutionContainer): Boolean =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top