Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 95 for dirty (0.04 sec)

  1. pkg/kube/client.go

    	nParts := len(versionParts)
    	if nParts >= 3 {
    		// The format will be like 1.12.0-016bc46f4a5e0ef3fa135b3c5380ab7765467c1a-dirty-Modified
    		// version is '1.12.0' || '1.12.0-custom-build'
    		// revision is '016bc46f4a5e0ef3fa135b3c5380ab7765467c1a' || '016bc46f4a5e0ef3fa135b3c5380ab7765467c1a-dirty'
    		// status is 'Modified' || 'Clean'
    		// Ref From common/scripts/report_build_info.sh
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 39K bytes
    - Viewed (0)
  2. src/encoding/gob/encoder.go

    // writeMessage sends the data item preceded by an unsigned count of its length.
    func (enc *Encoder) writeMessage(w io.Writer, b *encBuffer) {
    	// Space has been reserved for the length at the head of the message.
    	// This is a little dirty: we grab the slice from the bytes.Buffer and massage
    	// it by hand.
    	message := b.Bytes()
    	messageLen := len(message) - maxLength
    	// Length cannot be bigger than the decoder can handle.
    	if messageLen >= tooBig {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  3. tools/bug-report/pkg/testdata/input/ingress.log

    2020-06-29T23:37:27.285018Z	info	FLAG: --concurrency="0"
    2020-06-29T23:37:27.285053Z	info	FLAG: --disableInternalTelemetry="false"
    2020-06-29T23:37:27.285550Z	info	Version 1.6.3-1e8c62baad31c829c5993235c429248f36a85478-dirty-Modified
    2020-06-29T23:37:27.285885Z	info	Obtained private IP [10.36.1.5]
    2020-06-29T23:37:27.286034Z	info	Apply mesh config from file accessLogEncoding: TEXT
    accessLogFile: /dev/stdout
    accessLogFormat: ""
    defaultConfig:
      concurrency: 2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 03 15:51:03 UTC 2020
    - 11K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/volumebinding/binder.go

    	for _, binding := range podVolumes.StaticBindings {
    		newPV, dirty, err := volume.GetBindVolumeToClaim(binding.pv, binding.pvc)
    		logger.V(5).Info("AssumePodVolumes: GetBindVolumeToClaim",
    			"pod", klog.KObj(assumedPod),
    			"PV", klog.KObj(binding.pv),
    			"PVC", klog.KObj(binding.pvc),
    			"newPV", klog.KObj(newPV),
    			"dirty", dirty,
    		)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  5. hack/cherry_pick_pull.sh

      exit 2
    fi
    
    # Checks if you are logged in. Will error/bail if you are not.
    gh auth status
    
    if git_status=$(git status --porcelain --untracked=no 2>/dev/null) && [[ -n "${git_status}" ]]; then
      echo "!!! Dirty tree. Clean up and try again."
      exit 1
    fi
    
    if [[ -e "${REBASEMAGIC}" ]]; then
      echo "!!! 'git rebase' or 'git am' in progress. Clean up and try again."
      exit 1
    fi
    
    declare -r BRANCH="$1"
    shift 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 26 03:51:05 UTC 2022
    - 8.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/init.go

    			return nil
    		}
    		return err
    	}
    
    	index := MainModules.GetSingleIndexOrNil()
    	dirty := index.modFileIsDirty(modFile)
    	if dirty && cfg.BuildMod != "mod" {
    		// If we're about to fail due to -mod=readonly,
    		// prefer to report a dirty go.mod over a dirty go.sum
    		return errGoModDirty
    	}
    
    	if !dirty && cfg.CmdName != "mod tidy" {
    		// The go.mod file has the same semantic content that it had before
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/-HostnamesCommon.kt

     */
    @file:Suppress("ktlint:standard:filename")
    
    package okhttp3.internal
    
    import okhttp3.internal.idn.IDNA_MAPPING_TABLE
    import okhttp3.internal.idn.Punycode
    import okio.Buffer
    
    /**
     * Quick and dirty pattern to differentiate IP addresses from hostnames. This is an approximation
     * of Android's private InetAddress#isNumeric API.
     *
     * This matches IPv6 addresses as a hex string containing at least one colon, and possibly
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/serving_test.go

    }
    
    func fakeVersion() version.Info {
    	return version.Info{
    		Major:        "42",
    		Minor:        "42",
    		GitVersion:   "42",
    		GitCommit:    "34973274ccef6ab4dfaaf86599792fa9c3fe4689",
    		GitTreeState: "Dirty",
    	}
    }
    
    // generateSelfSignedCertKey creates a self-signed certificate and key for the given host.
    // Host may be an IP or a DNS name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 15:52:39 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. hack/lib/util.sh

        head -n 1 | awk '{print $1}'
    }
    
    # Exits script if working directory is dirty. If it's run interactively in the terminal
    # the user can commit changes in a second terminal. This script will wait.
    kube::util::ensure_clean_working_dir() {
      while ! git diff HEAD --exit-code &>/dev/null; do
        echo -e "\nUnexpected dirty working directory:\n"
        if tty -s; then
            git status -s
        else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/controller.go

    	statusController := c.statusController.Load()
    	if statusController == nil {
    		return
    	}
    	for _, cfg := range configs {
    		ws := cfg.Status.(*kstatus.WrappedStatus)
    		if ws.Dirty {
    			res := status.ResourceFromModelConfig(cfg)
    			statusController.EnqueueStatusUpdateResource(ws.Unwrap(), res)
    		}
    	}
    }
    
    func (c *Controller) Create(config config.Config) (revision string, err error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top