Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 843 for describeTo (0.16 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/UnknownArtifactSelectionFailureDescriber.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.component.resolution.failure.describer;
    
    import org.gradle.api.internal.attributes.AttributesSchemaInternal;
    import org.gradle.internal.component.resolution.failure.exception.ArtifactVariantSelectionException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/ExternalRequestedConfigurationNotFoundFailureDescriber.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.component.resolution.failure.describer;
    
    import org.gradle.api.internal.attributes.AttributesSchemaInternal;
    import org.gradle.internal.component.resolution.failure.exception.ConfigurationSelectionException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/RequestedConfigurationNotFoundFailureDescriber.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.component.resolution.failure.describer;
    
    import org.gradle.api.internal.attributes.AttributesSchemaInternal;
    import org.gradle.internal.component.resolution.failure.exception.ConfigurationSelectionException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. platforms/jvm/jvm-services/src/main/java/org/gradle/api/internal/artifacts/JavaEcosystemAttributesDescriber.java

    import java.util.stream.Collectors;
    
    /**
     * Describes JVM ecosystem related attributes.
     *
     * Methods on this class that accept {@link Attribute}s and attempt to match them against known values,
     * such as the {@link #getDescribableAttributes()} used by this class, <strong>MUST match on
     * attribute name only, NOT type</strong>.  This allows "desugared" attributes to be described
     * in the same manner.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 19:13:00 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/NoMatchingCapabilitiesFailureDescriber.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.component.resolution.failure.describer;
    
    import org.gradle.api.internal.attributes.AttributesSchemaInternal;
    import org.gradle.internal.component.resolution.failure.CapabilitiesDescriber;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/NewerGradleNeededByPluginFailureDescriber.java

    import org.gradle.internal.component.resolution.failure.ResolutionCandidateAssessor.AssessedCandidate;
    import org.gradle.internal.component.resolution.failure.describer.AbstractResolutionFailureDescriber;
    import org.gradle.internal.component.resolution.failure.describer.ResolutionFailureDescriber;
    import org.gradle.internal.component.resolution.failure.exception.AbstractResolutionFailureException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/AbstractJVMVersionTooNewFailureDescriber.java

    import org.gradle.internal.component.resolution.failure.ResolutionCandidateAssessor;
    import org.gradle.internal.component.resolution.failure.describer.AbstractResolutionFailureDescriber;
    import org.gradle.internal.component.resolution.failure.describer.ResolutionFailureDescriber;
    import org.gradle.internal.component.resolution.failure.type.IncompatibleGraphVariantFailure;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 19:13:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/networking/v1alpha1/generated.proto

      repeated IPAddress items = 2;
    }
    
    // IPAddressSpec describe the attributes in an IP Address.
    message IPAddressSpec {
      // ParentRef references the resource that an IPAddress is attached to.
      // An IPAddress must reference a parent object.
      // +required
      optional ParentReference parentRef = 1;
    }
    
    // ParentReference describes a reference to a parent object.
    message ParentReference {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/unitchecker/unitchecker.go

    //
    // The protocol required by 'go vet -vettool=...' is that the tool must support:
    //
    //	-flags          describe flags in JSON
    //	-V=full         describe executable for build caching
    //	foo.cfg         perform separate modular analyze on the single
    //	                unit described by a JSON config file foo.cfg.
    func Main(analyzers ...*analysis.Analyzer) {
    	progname := filepath.Base(os.Args[0])
    	log.SetFlags(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. src/io/fs/fs.go

    type DirEntry interface {
    	// Name returns the name of the file (or subdirectory) described by the entry.
    	// This name is only the final element of the path (the base name), not the entire path.
    	// For example, Name would return "hello.go" not "home/gopher/hello.go".
    	Name() string
    
    	// IsDir reports whether the entry describes a directory.
    	IsDir() bool
    
    	// Type returns the type bits for the entry.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 15 21:21:41 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top