Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 559 for Selections (0.13 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-declaringCapabilities/tests/dependencyReportReplaced.out

        | org.gradle.dependency.bundling |          | external     |
        | org.gradle.jvm.environment     |          | standard-jvm |
        | org.gradle.jvm.version         |          | 11           |
       Selection reasons:
          - By conflict resolution: On capability log4j:log4j use slf4j in place of log4j
    
    log4j:log4j:1.2.16 -> org.slf4j:log4j-over-slf4j:1.7.10
    \--- org.apache.zookeeper:zookeeper:3.4.9
         \--- compileClasspath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. pilot/pkg/leaderelection/k8sleaderelection/k8sresourcelock/configmaplock.go

    	ConfigMapMeta metav1.ObjectMeta
    	Client        corev1client.ConfigMapsGetter
    	LockConfig    ResourceLockConfig
    	cm            *v1.ConfigMap
    }
    
    // Get returns the election record from a ConfigMap Annotation
    func (cml *ConfigMapLock) Get(ctx context.Context) (*LeaderElectionRecord, []byte, error) {
    	var record LeaderElectionRecord
    	var err error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 11 16:58:48 UTC 2021
    - 4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/GraphVariantSelector.java

            this.failureHandler = failureHandler;
        }
    
        /**
         * Returns the failure processor which must be used to report failures during variant selection.
         *
         * @return the failure processor
         */
        public ResolutionFailureHandler getFailureHandler() {
            return failureHandler;
        }
    
        public VariantGraphResolveState selectByAttributeMatching(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  4. pilot/pkg/leaderelection/k8sleaderelection/k8sresourcelock/endpointslock.go

    	EndpointsMeta metav1.ObjectMeta
    	Client        corev1client.EndpointsGetter
    	LockConfig    ResourceLockConfig
    	e             *v1.Endpoints
    }
    
    // Get returns the election record from a Endpoints Annotation
    func (el *EndpointsLock) Get(ctx context.Context) (*LeaderElectionRecord, []byte, error) {
    	var record LeaderElectionRecord
    	var err error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 11 16:58:48 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/mutation/optional_test.go

    			// still require the field to be declared in the schema.
    			//
    			// Quoting from
    			// https://github.com/google/cel-spec/blob/master/doc/langdef.md#field-selection
    			//
    			// To test for the presence of a field, the boolean-valued macro has(e.f) can be used.
    			//
    			// 2. If e evaluates to a message and f is not a declared field for the message,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 21:52:39 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/exception/VariantSelectionException.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 variant of a component cannot be selected
     * by the {@link org.gradle.internal.component.model.GraphVariantSelector GraphVariantSelector}.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/internal/artifacts/dsl/DependencyHandlerInternal.java

    import org.gradle.api.attributes.AttributeContainer;
    
    public interface DependencyHandlerInternal extends DependencyHandler {
    
        /**
         * Default attributes added to all artifact variants during artifact selection.
         */
        AttributeContainer getDefaultArtifactAttributes();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 14:52:13 UTC 2024
    - 1003 bytes
    - Viewed (0)
  8. prepare-svg.sh

    # under the License.
    
    #libreoffice --headless --convert-to svg src/site/xdoc/maven-deps.odg
    # CLI export keeps full A3 page
    # I prefer doing it by hand, limiting export to "selection" = avoids extra space
    
    # svgo https://github.com/svg/svgo
    svgo --config src/site/svgo.config.mjs maven-deps.svg -o maven-deps-optimized.svg
    
    cat maven-deps-optimized.svg \
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 24 18:29:19 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/type/VariantAwareAmbiguousResolutionFailure.java

    import java.util.List;
    
    /**
     * A specialization of {@link AmbiguousResolutionFailure} that represents the situation when multiple variants are
     * available that would satisfy a dependency selection request during a variant-aware matching scenario.
     */
    public final class VariantAwareAmbiguousResolutionFailure extends AmbiguousResolutionFailure {
        private final ModuleVersionIdentifier targetComponentId;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/selection/operator.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package selection
    
    // Operator represents a key/field's relationship to value(s).
    // See labels.Requirement and fields.Requirement for more details.
    type Operator string
    
    const (
    	DoesNotExist Operator = "!"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 14:09:48 UTC 2017
    - 1K bytes
    - Viewed (0)
Back to top