Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,650 for tracking (0.15 sec)

  1. pkg/kubelet/cm/topologymanager/scope.go

    	// wants to be consoluted with when making topology hints
    	AddHintProvider(h HintProvider)
    	// AddContainer adds pod to Manager for tracking
    	AddContainer(pod *v1.Pod, container *v1.Container, containerID string)
    	// RemoveContainer removes pod from Manager tracking
    	RemoveContainer(containerID string) error
    	// Store is the interface for storing pod topology hints
    	Store
    }
    
    type scope struct {
    	mutex sync.Mutex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 14:44:24 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. pkg/version/stats.go

    	istioBuildTag   = monitoring.NewGauge(
    		"istio_build",
    		"Istio component build info",
    	)
    )
    
    // RecordComponentBuildTag sets the value for a metric that will be used to track component build tags for
    // tracking rollouts, etc.
    func (b BuildInfo) RecordComponentBuildTag(component string) {
    	istioBuildTag.With(gitTagKey.Value(b.GitTag), componentTagKey.Value(component)).Increment()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. SUPPORT.md

    ## Support for deploying and using Kubernetes
    
    Welcome to Kubernetes! We use GitHub for tracking bugs and feature requests.
    This isn't the right place to get support for using Kubernetes, but the following
    resources are available below, thanks for understanding.
    
    ### Stack Overflow
    
    The Kubernetes Community is active on Stack Overflow, you can post your questions there:
    
    * [Kubernetes on Stack Overflow](https://stackoverflow.com/questions/tagged/kubernetes)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 27 14:58:44 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/max_seats.go

    	GetMaxSeats(priorityLevelName string) uint64
    
    	// SetMaxSeats configures max seats for a priority level.
    	SetMaxSeats(priorityLevelName string, maxSeats uint64)
    
    	// ForgetPriorityLevel removes max seats tracking for a priority level.
    	ForgetPriorityLevel(priorityLevelName string)
    }
    
    type maxSeatsTracker struct {
    	sync.RWMutex
    
    	maxSeats map[string]uint64
    }
    
    func NewMaxSeatsTracker() MaxSeatsTracker {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:26:52 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/package-info.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Configuration input tracking implementation.
     * <p>
     * The build configuration may be influenced by various "environmental" inputs.
     * For example, build logic may read files or access environment variables.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. test/fixedbugs/issue20014.dir/main.go

    package main
    
    import (
    	"sort"
    	"strings"
    
    	"issue20014.dir/a"
    )
    
    func main() {
    	samePackage()
    	crossPackage()
    
    	// Print fields registered with field tracking.
    	var fields []string
    	for _, line := range strings.Split(fieldTrackInfo, "\n") {
    		if line != "" {
    			fields = append(fields, strings.Split(line, "\t")[0])
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 19:48:35 UTC 2022
    - 1K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/UnreadableCopyDestinationFixture.groovy

            "Declare the task as untracked by using Task.doNotTrackState(). " +
            new DocumentationRegistry().getDocumentationRecommendationFor("information", "incremental_build", "sec:disable-state-tracking")
    
        void expectUnreadableCopyDestinationFailure() {
            failure.assertHasDocumentedCause(COPY_UNREADABLE_DESTINATION_FAILURE)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 23 08:05:53 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Count.java

    package com.google.common.collect;
    
    import com.google.common.annotations.GwtCompatible;
    import java.io.Serializable;
    import javax.annotation.CheckForNull;
    
    /**
     * A mutable value of type {@code int}, for multisets to use in tracking counts of values.
     *
     * @author Louis Wasserman
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    final class Count implements Serializable {
      private int value;
    
      Count(int value) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Aug 05 00:40:25 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/StreamsHandler.java

         */
        void start();
    
        /**
         * Remove any context associated with tracking the startup of the process.
         */
        void removeStartupContext();
    
        /**
         * Disconnects from the process without waiting for further work.
         */
        void disconnect();
    
        /**
    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. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/common_caching_problems.adoc

    ====
    include::sample[dir="snippets/buildCache/java-version-tracking/kotlin",files="build.gradle.kts[tags=trackVendor]"]
    include::sample[dir="snippets/buildCache/java-version-tracking/groovy",files="build.gradle[tags=trackVendor]"]
    ====
    
    With respect to tracking the Java minor version there are different competing aspects: developers having cache hits and "perfect" results on CI.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 19.2K bytes
    - Viewed (0)
Back to top