Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. cmd/kubeadm/app/apis/output/v1alpha3/types.go

    	// kubeadm generated version
    	CurrentVersion string `json:"currentVersion"`
    
    	// 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 `json:"preferredVersion"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  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. guava/src/com/google/common/base/Charsets.java

     * guaranteed to be supported by all Java platform implementations.
     *
     * <p>Assuming you're free to choose, note that <b>{@link #UTF_8} is widely preferred</b>.
     *
     * <p>See the Guava User Guide article on <a
     * href="https://github.com/google/guava/wiki/StringsExplained#charsets">{@code Charsets}</a>.
     *
     * @author Mike Bostock
     * @since 1.0
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/base/Charsets.java

     * guaranteed to be supported by all Java platform implementations.
     *
     * <p>Assuming you're free to choose, note that <b>{@link #UTF_8} is widely preferred</b>.
     *
     * <p>See the Guava User Guide article on <a
     * href="https://github.com/google/guava/wiki/StringsExplained#charsets">{@code Charsets}</a>.
     *
     * @author Mike Bostock
     * @since 1.0
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/InetAddressFactory.java

            }
        }
    
        /**
         * Locates the possible IP addresses which can be used to communicate with this machine.
         *
         * Loopback addresses are preferred.
         */
        public List<InetAddress> getCommunicationAddresses() {
            try {
                synchronized (lock) {
                    init();
                    return communicationAddresses;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top