Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for uncommitted (0.32 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. 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)
  4. 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)
  5. 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)
  6. docs/contribute/code_of_conduct.md

    Open Source Code of Conduct
    ===========================
    
    At Square, we are committed to contributing to the open source community and simplifying the process
    of releasing and managing open source software. We’ve seen incredible support and enthusiasm from
    thousands of people who have already contributed to our projects — and we want to ensure our community
    continues to be truly open for everyone.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/JvmMemoryStatus.java

    /**
     * Current JVM memory status.
     */
    public interface JvmMemoryStatus {
        /**
         * @return Current JVM maximum heap size in bytes
         */
        long getMaxMemory();
    
        /**
         * @return Current JVM committed heap size in bytes
         */
        long getCommittedMemory();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 943 bytes
    - Viewed (0)
  8. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/JvmMemoryStatusSnapshot.java

        }
    
        @Override
        public long getCommittedMemory() {
            return committedMemory;
        }
    
        @Override
        public String toString() {
            return "{Maximum: " + maximumMemory + ", Committed: " + committedMemory + '}';
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/DefaultJvmMemoryInfo.java

         */
        long getMaxMemory() {
            return totalMemory;
        }
    
        /**
         * Currently committed memory of this process in bytes. May return different value depending on how the heap has expanded. The returned value is <= {@link #getMaxMemory()}
         */
        long getCommittedMemory() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. .gitignore

    # ps output for cleaning up leaking Java processes
    *.psoutput
    
    # oh-my-zsh gradle plugin
    .gradletasknamecache
    
    # Added GE support maven support to the maven build in .teamcity, per the GE docs, this dir is NOT to be committed
    .teamcity/.mvn/.gradle-enterprise/
    /discoclient.properties
    
    # Ignore local configuration files for asdf, allowing the JDK to be configured for project (https://asdf-vm.com)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 19:23:39 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top