Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 559 for Selections (0.24 sec)

  1. internal/bucket/replication/sourceselectioncriteria.go

    )
    
    // ReplicaModifications specifies if replica modification sync is enabled
    type ReplicaModifications struct {
    	Status Status `xml:"Status" json:"Status"`
    }
    
    // SourceSelectionCriteria - specifies additional source selection criteria in ReplicationConfiguration.
    type SourceSelectionCriteria struct {
    	ReplicaModifications ReplicaModifications `xml:"ReplicaModifications" json:"ReplicaModifications"`
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/ui.go

    //
    // The order of the result is as for types.MethodSet(T).
    func IntuitiveMethodSet(T types.Type, msets *MethodSetCache) []*types.Selection {
    	isPointerToConcrete := func(T types.Type) bool {
    		ptr, ok := aliases.Unalias(T).(*types.Pointer)
    		return ok && !types.IsInterface(ptr.Elem())
    	}
    
    	var result []*types.Selection
    	mset := msets.MethodSet(T)
    	if types.IsInterface(T) || isPointerToConcrete(T) {
    		for i, n := 0, mset.Len(); i < n; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DependencyResolveDetails.java

         *
         * @param description a description of the selection reason
         *
         * @return this details object
         *
         * @since 4.5
         */
        DependencyResolveDetails because(String description);
    
        /**
         * Configures the artifact selection for the target component of this dependency resolution rule.
         * @param details the artifact selection details
         *
         * @since 6.6
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ExternalComponentGraphResolveMetadata.java

        /**
         * Returns the set of variants of this component to use for variant aware resolution of the dependency graph nodes.
         * May be empty, in which case selection falls back to an ecosystem-specific selection strategy.
         */
        List<? extends VariantGraphResolveMetadata> getVariantsForGraphTraversal();
    
        /**
         * Returns the names of all legacy configurations for this component.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ComponentSelectionCause.java

     * limitations under the License.
     */
    package org.gradle.api.artifacts.result;
    
    import org.gradle.internal.scan.UsedByScanPlugin;
    
    /**
     * The possible component selection causes. There are a limited number of causes, but each of them
     * can be provided with a custom description, via {@link ComponentSelectionDescriptor}.
     *
     * @since 4.6
     */
    @UsedByScanPlugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 05 14:58:55 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  6. cmd/kube-scheduler/app/options/options.go

    		o.ApplyDeprecated()
    		o.ApplyLeaderElectionTo(o.ComponentConfig)
    		c.ComponentConfig = *o.ComponentConfig
    	} else {
    		cfg, err := LoadConfigFromFile(logger, o.ConfigFile)
    		if err != nil {
    			return err
    		}
    		// If the --config arg is specified, honor the leader election CLI args only.
    		o.ApplyLeaderElectionTo(cfg)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 17:06:29 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. src/main/webapp/css/admin/adminlte.min.css

    .select2-selection--multiple .select2-search.select2-search--inline .select2-search__field{margin-top:8px}.select2-container--default .select2-selection--multiple.text-sm .select2-selection__choice,.text-sm .select2-container--default .select2-selection--multiple .select2-selection__choice{margin-top:.4rem}.select2-container--default.select2-container--focus .select2-selection--multiple{border-color:#80bdff}.select2-container--default.select2-container--focus .select2-selection--multiple .select2-...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 641.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-selectionRule/kotlin/settings.gradle.kts

    rootProject.name = "component-selection-rules"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 47 bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoryInteractionDependencyResolveIntegrationTest.groovy

                }
            }
    
            where:
            target << ['maven', 'maven-gradle', 'ivy-gradle']
        }
    
        def "explicit configuration selection in ivy modules is supported if targeting a ivy module"() {
            given:
            // use a different name if selection is supported to not follow the default expectations defined in leaksRuntime()
            String targetRepoName = "ivy-select"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultVersionedComponentChooser.java

            ComponentSelectionInternal selection = new DefaultComponentSelection(candidateIdentifier, metadataProvider);
            rulesProcessor.apply(selection, rules, metadataProvider);
            if (selection.isRejected()) {
                return new RejectedByRuleVersion(candidateIdentifier, selection.getRejectionReason());
            }
            return null;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 13 17:41:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top