Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for uncommitted (0.17 sec)

  1. 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)
  2. 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)
  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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/go/internal/load/pkg.go

    		}
    		if !st.CommitTime.IsZero() {
    			stamp := st.CommitTime.UTC().Format(time.RFC3339Nano)
    			appendSetting("vcs.time", stamp)
    		}
    		appendSetting("vcs.modified", strconv.FormatBool(st.Uncommitted))
    	}
    omitVCS:
    
    	p.Internal.BuildInfo = info
    }
    
    // SafeArg reports whether arg is a "safe" command-line argument,
    // meaning that when it appears in a command-line, it probably
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/stats/ApiAdminStatsAction.java

        }
    
        public static class JvmMemoryHeapObj {
            public long used;
            public long committed;
            public long max;
            public short percent;
        }
    
        public static class JvmMemoryNonHeapObj {
            public long used;
            public long committed;
            public long max;
            public short percent;
        }
    
        public static class JvmPoolObj {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.1K 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