Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 799 for upgrades (0.17 sec)

  1. guava/src/com/google/common/annotations/Beta.java

     * that it is not "API-frozen."
     *
     * <p>It is generally safe for <i>applications</i> to depend on beta APIs, at the cost of some extra
     * work during upgrades. However it is generally inadvisable for <i>libraries</i> (which get
     * included on users' CLASSPATHs, outside the library developers' control) to do so.
     *
     * @author Kevin Bourrillion
     */
    @Retention(RetentionPolicy.CLASS)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 16 19:54:45 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/internal/provider/views/ListPropertyListView.java

    import javax.annotation.concurrent.NotThreadSafe;
    import java.util.AbstractList;
    import java.util.ArrayList;
    import java.util.List;
    
    /**
     * Implementation of List, that is used for Property upgrades
     */
    @NotThreadSafe
    public class ListPropertyListView<E> extends AbstractList<E> {
    
        private final ListProperty<E> delegate;
    
        public ListPropertyListView(ListProperty<E> delegate) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:28 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. README.md

    - For installations using Systemd MinIO service, upgrade via RPM/DEB packages **parallelly** on all servers or replace the binary lets say `/opt/bin/minio` on all nodes, apply executable permissions `chmod +x /opt/bin/minio` and process to perform `mc admin service restart alias/`.
    
    ### Upgrade Checklist
    
    - Test all upgrades in a lower environment (DEV, QA, UAT) before applying to production. Performing blind upgrades in production environments carries significant risk.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_tidy_convergence.txt

    
    # 'go mod tidy -e' should follow upgrades to try to resolve the modules that it
    # can, and then stop. When we resolve example.net/y, we upgrade to example.net/x
    # to v0.2.0-pre. At that version, package x no longer exists and no longer
    # imports package y, so the import of x should be left unsatisfied and the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/mvs/errors.go

    }
    
    // NewBuildListError returns a new BuildListError wrapping an error that
    // occurred at a module found along the given path of requirements and/or
    // upgrades, which must be non-empty.
    //
    // The isVersionChange function reports whether a path step is due to an
    // explicit upgrade or downgrade (as opposed to an existing requirement in a
    // go.mod file). A nil isVersionChange function indicates that none of the path
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 17:22:28 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. pkg/test/helm/helm.go

    	_, err := execCommand(command)
    	return err
    }
    
    // UpgradeChart upgrades the specified chart with its given name to the given namespace; does not use baseWorkDir
    // but the full path passed
    func (h *Helm) UpgradeChart(name, chartPath, namespace, overridesFile string, timeout time.Duration, args ...string) error {
    	command := fmt.Sprintf("helm upgrade %s %s --namespace %s -f %s --kubeconfig %s --timeout %s %v",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 23 19:25:43 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/toolchain/switch.go

    	}
    	return "go" + latest, nil
    }
    
    // HasAuto reports whether the GOTOOLCHAIN setting allows "auto" upgrades.
    func HasAuto() bool {
    	env := cfg.Getenv("GOTOOLCHAIN")
    	return env == "auto" || strings.HasSuffix(env, "+auto")
    }
    
    // HasPath reports whether the GOTOOLCHAIN setting allows "path" upgrades.
    func HasPath() bool {
    	env := cfg.Getenv("GOTOOLCHAIN")
    	return env == "path" || strings.HasSuffix(env, "+path")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 7K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/config/cluster.go

    	// NB. currently nodeRegistration.KubeletExtraArgs isn't stored at node level but only in the kubeadm-flags.env
    	//     that isn't modified during upgrades
    	//     in future we might reconsider this thus enabling changes to the kubeadm-flags.env during upgrades as well
    	return nil
    }
    
    // getNodeNameFromKubeletConfig gets the node name from a kubelet config file
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/internal/provider/views/SetPropertySetView.java

    import java.util.AbstractSet;
    import java.util.Collection;
    import java.util.Iterator;
    import java.util.LinkedHashSet;
    import java.util.Set;
    
    /**
     * Implementation of Set, that is used for Property upgrades
     */
    @NotThreadSafe
    public class SetPropertySetView<E> extends AbstractSet<E> {
    
        private final SetProperty<E> delegate;
    
        public SetPropertySetView(SetProperty<E> delegate) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:28 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_strategy_tuning.adoc

    There's a version conflict whenever Gradle finds the same module in two different versions in a dependency graph.
    By default, Gradle performs _optimistic upgrades_, meaning that if version `1.1` and `1.3` are found in the graph, we resolve to the highest version, `1.3`.
    However, it is easy to miss that some dependencies are upgraded because of a transitive dependency.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.1K bytes
    - Viewed (0)
Back to top