Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 455 for selectioner (0.17 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/KnownProblemIds.groovy

            'validation' : 'Validation',
            'compilation' : 'Compilation',
            'deprecation' : 'Deprecation',
            'compilation:java' : 'Java compilation',
            'task-selection' : 'Task selection',
            'dependency-version-catalog' : 'Version catalog',
            'compilation:groovy-dsl' : 'Groovy DSL script compilation',
            'validation:property-validation' : 'Property validation problems',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/DependencyMetadata.java

        /**
         * Select the matching variants for this dependency from the given target component.
         *
         * @implSpec An instance of {@link ResolutionFailureHandler} is supplied to this method, and
         * any failures during selection should be routed through that handler. This is done to keep all failure handling done
         * in a consistent manner.  See {@link GraphVariantSelector} for comparison.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 11:43:09 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/exception/ConfigurationSelectionException.java

    package org.gradle.internal.component.resolution.failure.exception;
    
    import org.gradle.internal.component.resolution.failure.type.ResolutionFailure;
    
    import java.util.List;
    
    /**
     * Represents a failure during variant selection when a named {@link org.gradle.api.artifacts.Configuration Configuration}
     * cannot be selected
     */
    public final class ConfigurationSelectionException extends AbstractResolutionFailureException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/internal/component/ResolutionFailureHandlerIntegrationTest.groovy

    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.util.GradleVersion
    import spock.lang.Ignore
    /**
     * These tests demonstrate the behavior of the [ResolutionFailureHandler] when a project has various
     * variant selection failures.
     *
     * It can also build a text report demonstrating all these errors in a single place by running
     * the [generateFailureShowcase] method, which is marked with [spock.lang.Ignore] so it doesn't
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 45K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ComponentGraphResolveState.java

        /**
         * Returns the public view of all variants of this component that are available for variant selection, either during graph resolution or artifact resolution.
         */
        List<ResolvedVariantResult> getAllSelectableVariantResults();
    
        /**
         * Returns the candidates for variant selection during graph resolution.
         */
        GraphSelectionCandidates getCandidatesForGraphVariantSelection();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/fields/selector.go

    import (
    	"bytes"
    	"fmt"
    	"sort"
    	"strings"
    
    	"k8s.io/apimachinery/pkg/selection"
    )
    
    // Selector represents a field selector.
    type Selector interface {
    	// Matches returns true if this selector matches the given set of fields.
    	Matches(Fields) bool
    
    	// Empty returns true if this selector does not restrict the selection space.
    	Empty() bool
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 23 20:40:07 UTC 2020
    - 12.3K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultFinalizedExecutionPlan.java

                }
            }
        }
    
        @Override
        public Selection<Node> selectNext() {
            lockCoordinator.assertHasStateLock();
            if (waitingToStartNodes.isEmpty()) {
                return Selection.noMoreWorkToStart();
            }
            if (readyNodes.isEmpty() || !maybeNodesSelectable) {
                return Selection.noWorkReadyToStart();
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 28 21:49:39 UTC 2022
    - 28.1K bytes
    - Viewed (0)
  8. pkg/registry/core/configmap/strategy.go

    }
    
    // Matcher returns a selection predicate for a given label and field selector.
    func Matcher(label labels.Selector, field fields.Selector) pkgstorage.SelectionPredicate {
    	return pkgstorage.SelectionPredicate{
    		Label:    label,
    		Field:    field,
    		GetAttrs: GetAttrs,
    	}
    }
    
    // SelectableFields returns a field set that can be used for filter selection
    func SelectableFields(obj *api.ConfigMap) fields.Set {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 20:38:11 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java

                log.error("Server returned invalid hash selection");
                return false;
            }
            return true;
        }
    
    
        private static boolean checkEncryptionContext ( Smb2NegotiateRequest req, EncryptionNegotiateContext ec ) {
            if ( ec.getCiphers() == null || ec.getCiphers().length != 1 ) {
                log.error("Server returned no cipher selection");
                return false;
            }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Mar 22 10:09:46 UTC 2020
    - 17.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/meta/priority.go

    		case 1:
    			// one match, return
    			return matchedGVRs[0], originalErr
    		default:
    			// more than one match, use the matched hits as the list moving to the next pattern.
    			// this way you can have a series of selection criteria
    			remainingGVRs = matchedGVRs
    		}
    	}
    
    	return schema.GroupVersionResource{}, &AmbiguousResourceError{PartialResource: partiallySpecifiedResource, MatchingResources: originalGVRs}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 23:44:02 UTC 2021
    - 7.6K bytes
    - Viewed (0)
Back to top