Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,363 for cmutil (0.22 sec)

  1. cmd/kubeadm/app/cmd/reset.go

    		cfg:                   initCfg,
    		resetCfg:              resetCfg,
    		dryRun:                cmdutil.ValueFromFlagsOrConfig(cmd.Flags(), options.DryRun, resetCfg.DryRun, opts.externalcfg.DryRun).(bool),
    		forceReset:            cmdutil.ValueFromFlagsOrConfig(cmd.Flags(), options.ForceReset, resetCfg.Force, opts.externalcfg.Force).(bool),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 12:26:58 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  2. istioctl/pkg/util/handlers/handlers.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/runtime"
    	corev1client "k8s.io/client-go/kubernetes/typed/core/v1"
    	cmdutil "k8s.io/kubectl/pkg/cmd/util"
    	"k8s.io/kubectl/pkg/polymorphichelpers"
    	"k8s.io/kubectl/pkg/util/podutils"
    	gatewayapi "sigs.k8s.io/gateway-api/apis/v1"
    	gatewayapibeta "sigs.k8s.io/gateway-api/apis/v1beta1"
    
    	"istio.io/istio/pilot/pkg/config/kube/gateway"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 06 15:01:41 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/util/JvmUtilTest.java

            assertEquals(6, JvmUtil.getJavaVersion());
            System.setProperty("java.version", "1.7.0_25");
            assertEquals(7, JvmUtil.getJavaVersion());
            System.setProperty("java.version", "1.8.0_171");
            assertEquals(8, JvmUtil.getJavaVersion());
            System.setProperty("java.version", "9.0.4");
            assertEquals(9, JvmUtil.getJavaVersion());
            System.setProperty("java.version", "10.0.1");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top