Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,902 for cmutil (0.25 sec)

  1. prow/benchtest.sh

        cat "${REPORT_PLAINTEXT}"
        ;;
      report)
        # Upload the reports to a well known path based on git SHA
        gsutil cp "${REPORT_JUNIT}" "gs://${GCS_BENCHMARK_DIR}/${GIT_SHA}.xml"
        gsutil cp "${REPORT_PLAINTEXT}" "gs://${GCS_BENCHMARK_DIR}/${GIT_SHA}.txt"
        ;;
      compare)
        # Fetch previous results, and compare them.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 23:14:43 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/phases/init/preflight.go

    	utilsexec "k8s.io/utils/exec"
    
    	"k8s.io/kubernetes/cmd/kubeadm/app/cmd/options"
    	"k8s.io/kubernetes/cmd/kubeadm/app/cmd/phases/workflow"
    	cmdutil "k8s.io/kubernetes/cmd/kubeadm/app/cmd/util"
    	"k8s.io/kubernetes/cmd/kubeadm/app/preflight"
    )
    
    var (
    	preflightExample = cmdutil.Examples(`
    		# Run pre-flight checks for kubeadm init using a config file.
    		kubeadm init phase preflight --config kubeadm-config.yaml
    		`)
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. ci/official/upload.sh

    source ci/official/utilities/get_versions.sh
    
    # Note on gsutil commands:
    # "gsutil cp" always "copies into". It cannot act on the contents of a directory
    # and it does not seem possible to e.g. copy "gs://foo/bar" as anything other than
    # "/path/bar". This script uses "gsutil rsync" instead, which acts on directory
    # contents. About arguments to gsutil:
    # "gsutil -m rsync" runs in parallel.
    # "gsutil rsync -r" is recursive and makes directories work.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 24 20:52:12 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. cluster/gce/util.sh

          echo 'On macOS we recommend using homebrew and adding "$(brew --prefix openssl)/bin" to your PATH'
        fi
        exit 1
      fi
    
      # we use gcloud to create the cluster, gsutil to stage binaries and data
      for cmd in gcloud gsutil; do
        if ! which "${cmd}" >/dev/null; then
          echo "Can't find ${cmd} in PATH, please fix and retry. The Google Cloud " >&2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  5. hack/lib/util.sh

      declare -r color_norm="${color_start}0m"
    
      kube::util::sourced_variable "${color_start}"
      kube::util::sourced_variable "${color_red}"
      kube::util::sourced_variable "${color_yellow}"
      kube::util::sourced_variable "${color_green}"
      kube::util::sourced_variable "${color_blue}"
      kube::util::sourced_variable "${color_cyan}"
      kube::util::sourced_variable "${color_norm}"
    fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  6. operator/pkg/tpath/util.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    /*
    util.go contains utility function for dealing with trees.
    */
    
    package tpath
    
    import (
    	"gopkg.in/yaml.v2"
    	yaml2 "sigs.k8s.io/yaml"
    
    	"istio.io/istio/operator/pkg/util"
    )
    
    // AddSpecRoot adds a root node called "spec" to the given tree and returns the resulting tree.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GUtil.java

    import java.net.URLConnection;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Collection;
    import java.util.Comparator;
    import java.util.EnumSet;
    import java.util.Formatter;
    import java.util.HashMap;
    import java.util.Iterator;
    import java.util.LinkedList;
    import java.util.List;
    import java.util.Locale;
    import java.util.Map;
    import java.util.Properties;
    import java.util.regex.Matcher;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/telemetry/util.go

    // limitations under the License.
    package telemetry
    
    import (
    	"sort"
    
    	"istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pkg/config/analysis"
    	"istio.io/istio/pkg/config/analysis/analyzers/util"
    	"istio.io/istio/pkg/config/resource"
    	"istio.io/istio/pkg/config/schema/gvk"
    )
    
    func getNames(entries []*resource.Instance) []string {
    	names := make([]string, 0, len(entries))
    	for _, rs := range entries {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/init/certs.go

    	"k8s.io/kubernetes/cmd/kubeadm/app/cmd/phases/workflow"
    	cmdutil "k8s.io/kubernetes/cmd/kubeadm/app/cmd/util"
    	kubeadmconstants "k8s.io/kubernetes/cmd/kubeadm/app/constants"
    	certsphase "k8s.io/kubernetes/cmd/kubeadm/app/phases/certs"
    	kubeadmutil "k8s.io/kubernetes/cmd/kubeadm/app/util"
    	"k8s.io/kubernetes/cmd/kubeadm/app/util/pkiutil"
    )
    
    var (
    	saKeyLongDesc = fmt.Sprintf(cmdutil.LongDesc(`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 06:35:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. pkg/controller/volume/attachdetach/util/util.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package util
    
    import (
    	"errors"
    	"fmt"
    	"strings"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/sets"
    	corelisters "k8s.io/client-go/listers/core/v1"
    	"k8s.io/component-helpers/storage/ephemeral"
    	"k8s.io/klog/v2"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top