Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 996 for Preferred (0.18 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/plugins/PluginAware.java

     */
    @HasInternalProtocol
    public interface PluginAware {
    
        /**
         * The container of plugins that have been applied to this object.
         * <p>
         * While not deprecated, it is preferred to use the methods of this interface or the {@link #getPluginManager() plugin manager} than use the plugin container.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 06 22:26:55 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/metadata/DefaultGradleModuleMetadataSource.java

            if (listVersions) {
                // List modules based on metadata files, but only if we won't check for maven-metadata (which is preferred)
                IvyArtifactName metaDataArtifact = new DefaultIvyArtifactName(module.getName(), "module", "module");
                versionLister.listVersions(module, metaDataArtifact, ivyPatterns, result);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dependencies/DefaultResolvedVersionConstraint.java

        @VisibleForTesting
        public DefaultResolvedVersionConstraint(String requiredVersion, String preferredVersion, String strictVersion, List<String> rejectedVersions, VersionSelectorScheme scheme) {
            // For now, required and preferred are treated the same
    
            isStrict = !strictVersion.isEmpty();
            String version = isStrict ? strictVersion : requiredVersion;
            this.requiredVersionSelector = scheme.parseSelector(version);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_prefer_compatible.txt

    go list -m github.com/russross/blackfriday@v2.0.0+incompatible
    stdout '^github.com/russross/blackfriday v2\.0\.0\+incompatible$'
    
    # blackfriday v1.5.2 has a go.mod file, so v1.5.2 should be preferred over
    # v2.0.0+incompatible when resolving latest, upgrade, and patch.
    
    go list -m github.com/russross/blackfriday@latest
    stdout '^github.com/russross/blackfriday v1\.'
    
    go list -m github.com/russross/blackfriday@upgrade
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 17 18:25:37 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/volumebinding/volume_binding_test.go

    			wantFilterStatus: []*framework.Status{
    				nil,
    			},
    			wantScores: []int64{
    				0,
    			},
    		},
    		{
    			name: "local volumes with close capacity are preferred",
    			pod:  makePod("pod-a").withPVCVolume("pvc-a", "").Pod,
    			nodes: []*v1.Node{
    				makeNode("node-a").Node,
    				makeNode("node-b").Node,
    				makeNode("node-c").Node,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 32K bytes
    - Viewed (0)
  6. src/io/ioutil/ioutil.go

    // Package ioutil implements some I/O utility functions.
    //
    // Deprecated: As of Go 1.16, the same functionality is now provided
    // by package [io] or package [os], and those implementations
    // should be preferred in new code.
    // See the specific function documentation for details.
    package ioutil
    
    import (
    	"io"
    	"io/fs"
    	"os"
    	"slices"
    	"strings"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. hack/pin-dependency.sh

    # 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.
    
    # This script switches to the preferred version for specified module.
    # Usage: `hack/pin-dependency.sh $MODULE $SHA-OR-TAG`.
    # Example: `hack/pin-dependency.sh github.com/docker/docker 501cb131a7b7`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:43 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModule.java

        }
    
        /**
         * The directories containing the test sources.
         *
         * <strong>Note that late changes to default test directories may NOT be reflected in this collection and {@link #getTestSources()} should be preferred.</strong>
         *
         * For example see docs for {@link IdeaModule}
         *
         * <strong>This field is {@code @Deprecated}, please use {@link #getTestSources()} instead.</strong>
         */
        @Deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 09:58:16 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/output/types.go

    	// NOTE: This can be empty in case the config was not found on the cluster or it was unsupported
    	// kubeadm generated version
    	CurrentVersion string
    
    	// PreferredVersion is the component config version that is currently preferred by kubeadm for use.
    	// NOTE: As of today, this is the only version supported by kubeadm.
    	PreferredVersion string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:01:20 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. manifests/charts/UPDATING-CHARTS.md

    to allow arbitrary customizations.
    
    If the change truly is generally purpose, it is generally preferred to have broader APIs. For example, instead of providing
    direct access to each of the complex fields in [affinity](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/), just providing
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top