Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 85 for uncommitted (0.28 sec)

  1. src/cmd/go/testdata/script/version_buildvcs_hg.txt

    go version -m $GOBIN/a$GOEXE
    ! stdout hgrevision
    rm $GOBIN/a$GOEXE
    
    # An untracked file is shown as uncommitted, even if it isn't part of the build.
    cp ../../outside/empty.txt .
    go install
    go version -m $GOBIN/a$GOEXE
    stdout '^\tbuild\tvcs.modified=true$'
    rm empty.txt
    rm $GOBIN/a$GOEXE
    
    # An edited file is shown as uncommitted, even if it isn't part of the build.
    cp ../../outside/empty.txt ../README
    go install
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 30 18:09:02 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/version_buildvcs_git.txt

    go version -m $GOBIN/a$GOEXE
    ! stdout vcs.revision
    rm $GOBIN/a$GOEXE
    
    # An untracked file is shown as uncommitted, even if it isn't part of the build.
    cp ../../outside/empty.txt .
    go install
    go version -m $GOBIN/a$GOEXE
    stdout '^\tbuild\tvcs.modified=true$'
    rm empty.txt
    rm $GOBIN/a$GOEXE
    
    # An edited file is shown as uncommitted, even if it isn't part of the build.
    cp ../../outside/empty.txt ../README
    go install
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/vcs/vcs.go

    	}
    
    	// Also look for untracked files.
    	out, err = vcsHg.runOutputVerboseOnly(rootDir, "status")
    	if err != nil {
    		return Status{}, err
    	}
    	uncommitted := len(out) > 0
    
    	return Status{
    		Revision:    rev,
    		CommitTime:  commitTime,
    		Uncommitted: uncommitted,
    	}, nil
    }
    
    // parseRevTime parses commit details in "revision:seconds" format.
    func parseRevTime(out []byte) (string, time.Time, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  4. ci/official/utilities/setup_macos.sh

    # those VMs does not support installing Python 3.12 and above which we need
    # for running smoke tests in nightly/release wheel builds.
    if [[ "${TFCI_MACOS_UPGRADE_PYENV_ENABLE}" == 1 ]]; then
      # The TFCI Mac VM image seems to have uncommitted local changes to the Pyenv
      # repository so we have to discard them and reset the working directory before
      # we can pull in the latest changes.
      cd /Users/kbuilder/.pyenv/ && git reset --hard HEAD && git pull && cd -
    fi
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 15:23:28 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. pkg/proxy/servicechangetracker.go

    	"k8s.io/client-go/tools/events"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/proxy/metrics"
    	proxyutil "k8s.io/kubernetes/pkg/proxy/util"
    )
    
    // ServiceChangeTracker carries state about uncommitted changes to an arbitrary number of
    // Services, keyed by their namespace and name.
    type ServiceChangeTracker struct {
    	// lock protects items.
    	lock sync.Mutex
    	// items maps a service to its serviceChange.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  6. pkg/proxy/endpointschangetracker.go

    )
    
    var supportedEndpointSliceAddressTypes = sets.New[discovery.AddressType](
    	discovery.AddressTypeIPv4,
    	discovery.AddressTypeIPv6,
    )
    
    // EndpointsChangeTracker carries state about uncommitted changes to an arbitrary number of
    // Endpoints, keyed by their namespace and name.
    type EndpointsChangeTracker struct {
    	// lock protects lastChangeTriggerTimes
    	lock sync.Mutex
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  7. hack/lib/util.sh

        return 0
      fi
      # also check for pending changes
      if git status --porcelain | grep -v -E "${not_pattern}" | grep "${pattern}" > /dev/null; then
        echo "Detected '${pattern}' uncommitted changes."
        return 0
      fi
      echo "No '${pattern}' changes detected."
      return 1
    }
    
    kube::util::download_file() {
      local -r url=$1
      local -r destination_file=$2
    
    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. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

      @ParameterizedTest
      @ArgumentsSource(FileSystemParamProvider::class)
      fun recoverFromInitializationFailure(parameters: Pair<FileSystem, Boolean>) {
        setUp(parameters.first, parameters.second)
        // Add an uncommitted entry. This will get detected on initialization, and the cache will
        // attempt to delete the file. Do not explicitly close the cache here so the entry is left as
        // incomplete.
        val creator = cache.edit("k1")!!
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  9. src/database/sql/sql.go

    func (i IsolationLevel) String() string {
    	switch i {
    	case LevelDefault:
    		return "Default"
    	case LevelReadUncommitted:
    		return "Read Uncommitted"
    	case LevelReadCommitted:
    		return "Read Committed"
    	case LevelWriteCommitted:
    		return "Write Committed"
    	case LevelRepeatableRead:
    		return "Repeatable Read"
    	case LevelSnapshot:
    		return "Snapshot"
    	case LevelSerializable:
    		return "Serializable"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/templates/root-project/pom.xml

                                    println "heap: \${format(heap.used)} (initial \${format(heap.init)}, committed \${format(heap.committed)}, max \${format(heap.max)}"
                                    println "nonHeap: \${format(nonHeap.used)} (initial \${format(nonHeap.init)}, committed \${format(nonHeap.committed)}, max \${format(nonHeap.max)}"
    
                                    ManagementFactory.memoryMXBean.gc()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top