Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for uncommitted (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintController.kt

                closeStreams()
                buildScopedFingerprint.moveFrom(buildScopedSpoolFile.file)
                projectScopedFingerprint.moveFrom(projectScopedSpoolFile.file)
                return Committed()
            }
    
            override fun dispose(): WritingState {
                closeStreams()
                if (buildScopedSpoolFile.file.exists()) {
                    Files.delete(buildScopedSpoolFile.file.toPath())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  6. src/runtime/mstats.go

    // that need to be updated together in order for them to be kept
    // consistent with one another.
    type heapStatsDelta struct {
    	// Memory stats.
    	committed       int64 // byte delta of memory committed
    	released        int64 // byte delta of released memory generated
    	inHeap          int64 // byte delta of memory placed in the heap
    	inStacks        int64 // byte delta of memory reserved for stacks
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  7. tests/transaction_test.go

    		t.Fatalf("Should find saved record, but got %v", err)
    	}
    
    	tx2.Commit()
    
    	if err := DB.First(&User{}, "name = ?", "transaction-2").Error; err != nil {
    		t.Fatalf("Should be able to find committed record, but got %v", err)
    	}
    
    	t.Run("this is test nested transaction and prepareStmt coexist case", func(t *testing.T) {
    		// enable prepare statement
    		tx3 := DB.Session(&gorm.Session{PrepareStmt: true})
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/cache/DiskLruCache.kt

              entry.zombie = true // We can't delete it until the current edit completes.
            }
          }
        }
    
        /**
         * Returns an unbuffered input stream to read the last committed value, or null if no value has
         * been committed.
         */
        fun newSource(index: Int): Source? {
          synchronized(this@DiskLruCache) {
            check(!done)
            if (!entry.readable || entry.currentEditor != this || entry.zombie) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  9. pilot/pkg/bootstrap/server.go

    func (s *Server) pushContextReady(expected int64) bool {
    	committed := s.XDSServer.CommittedUpdates.Load()
    	if committed < expected {
    		log.Debugf("Waiting for pushcontext to process inbound updates, inbound: %v, committed : %v", expected, committed)
    		return false
    	}
    	return true
    }
    
    // cachesSynced checks whether caches have been synced.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/main/java/org/gradle/api/tasks/wrapper/Wrapper.java

     * when using the wrapper scripts.
     *
     * <p>The scripts generated by this task are intended to be committed to your version control system. This task also
     * generates a small {@code gradle-wrapper.jar} bootstrap JAR file and properties file which should also be committed to
     * your VCS. The scripts delegates to this JAR.
     */
    @DisableCachingByDefault(because = "Updating the wrapper is not worth caching")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 03:11:06 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top