Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 82 for tracks (0.14 sec)

  1. pilot/pkg/model/push_context.go

    	// ProxyStatusConflictOutboundListenerTCPOverTCP metric tracks number of
    	// TCP listeners that conflicted with existing TCP listeners on same port
    	ProxyStatusConflictOutboundListenerTCPOverTCP = monitoring.NewGauge(
    		"pilot_conflict_outbound_listener_tcp_over_current_tcp",
    		"Number of conflicting tcp listeners with current tcp listener.",
    	)
    
    	// ProxyStatusConflictInboundListener tracks cases of multiple inbound
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  2. pkg/kubelet/pod_workers.go

    	podsSynced bool
    
    	// Tracks all running per-pod goroutines - per-pod goroutine will be
    	// processing updates received through its corresponding channel. Sending
    	// a message on this channel will signal the corresponding goroutine to
    	// consume podSyncStatuses[uid].pendingUpdate if set.
    	podUpdates map[types.UID]chan struct{}
    	// Tracks by UID the termination status of a pod - syncing, terminating,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            then:
            def e = thrown(MissingValueException)
            e.message == "Cannot query the value of this provider because it has no value available."
        }
    
        def "entry provider tracks value of property"() {
            given:
            def entryProvider = property.getting('key')
    
            when:
            property.set(['key': 'v1'])
            then:
            entryProvider.present
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	requireMapListKeysMapSetValidation bool
    	// preexistingExpressions tracks which CEL expressions existed in an object before an update. May be nil for create.
    	preexistingExpressions preexistingExpressions
    	// versionsWithUnchangedSchemas tracks schemas of which versions are unchanged when updating a CRD.
    	// Does not apply to creation or deletion.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  5. src/cmd/dist/test.go

    	short      bool
    	cgoEnabled bool
    	json       bool
    
    	tests        []distTest // use addTest to extend
    	testNames    map[string]bool
    	timeoutScale int
    
    	worklist []*work
    }
    
    // work tracks command execution for a test.
    type work struct {
    	dt    *distTest     // unique test name, etc.
    	cmd   *exec.Cmd     // must write stdout/stderr to out
    	flush func()        // if non-nil, called after cmd.Run
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  6. src/runtime/mgcscavenge.go

    	return unpackScavChunkData(sc.value.Load())
    }
    
    // store packs and writes a new scavChunkData. store must be serialized
    // with other calls to store.
    func (sc *atomicScavChunkData) store(ssc scavChunkData) {
    	sc.value.Store(ssc.pack())
    }
    
    // scavChunkData tracks information about a palloc chunk for
    // scavenging. It packs well into 64 bits.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. plugin/pkg/admission/resourcequota/admission_test.go

    	if err == nil {
    		t.Errorf("Expected an error exceeding quota")
    	}
    }
    
    // TestAdmitEnforceQuotaConstraints verifies that if a quota tracks a particular resource that that resource is
    // specified on the pod.  In this case, we create a quota that tracks cpu request, memory request, and memory limit.
    // We ensure that a pod that does not specify a memory limit that it fails in admission.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.31.md

    - The iptables mode of kube-proxy now tracks accepted packets that are destined for node-ports on localhost by introducing `kubeproxy_iptables_localhost_nodeports_accepted_packets_total` metric.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  9. src/runtime/mheap.go

    	case spanAllocWorkBuf:
    		atomic.Xaddint64(&stats.inWorkBufs, int64(nbytes))
    	}
    	memstats.heapStats.release()
    
    	// Trace the span alloc.
    	if traceAllocFreeEnabled() {
    		trace := traceTryAcquire()
    		if trace.ok() {
    			trace.SpanAlloc(s)
    			traceRelease(trace)
    		}
    	}
    	return s
    }
    
    // initSpan initializes a blank span s which will represent the range
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

    import org.gradle.api.internal.file.TestFiles
    import org.gradle.api.internal.provider.PropertyHost
    import org.gradle.api.internal.tasks.DefaultTaskDependencyFactory
    import org.gradle.api.internal.tasks.TaskDependencyResolveContext
    import org.gradle.api.internal.tasks.TaskResolver
    import org.gradle.api.specs.Spec
    import org.spockframework.lang.Wildcard
    
    import java.util.concurrent.Callable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
Back to top