Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 72 for newBuf (0.17 sec)

  1. pkg/istio-agent/metrics/metrics.go

    	IstiodConnectionFailures = monitoring.NewSum(
    		"istiod_connection_failures",
    		"The total number of connection failures to Istiod",
    	)
    
    	// istiodDisconnections records total number of unexpected disconnections by Istiod.
    	istiodDisconnections = monitoring.NewSum(
    		"istiod_connection_terminations",
    		"The total number of connection errors to Istiod",
    	)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. security/pkg/server/ca/monitoring.go

    var (
    	errorTag = monitoring.CreateLabel(errorlabel)
    
    	csrCounts = monitoring.NewSum(
    		"citadel_server_csr_count",
    		"The number of CSRs received by Citadel server.",
    	)
    
    	authnErrorCounts = monitoring.NewSum(
    		"citadel_server_authentication_failure_count",
    		"The number of authentication failures.",
    	)
    
    	csrParsingErrorCounts = monitoring.NewSum(
    		"citadel_server_csr_parsing_err_count",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:09 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. pkg/kube/inject/monitoring.go

    )
    
    var (
    	totalInjections = monitoring.NewSum(
    		"sidecar_injection_requests_total",
    		"Total number of sidecar injection requests.",
    	)
    
    	totalSuccessfulInjections = monitoring.NewSum(
    		"sidecar_injection_success_total",
    		"Total number of successful sidecar injection requests.",
    	)
    
    	totalFailedInjections = monitoring.NewSum(
    		"sidecar_injection_failure_total",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. pkg/test/echo/common/metrics.go

    var (
    	PortLabel = monitoring.CreateLabel("port")
    	Metrics   = &EchoMetrics{
    		HTTPRequests: monitoring.NewSum(
    			"istio_echo_http_requests_total",
    			"The number of http requests total",
    		),
    		GrpcRequests: monitoring.NewSum(
    			"istio_echo_grpc_requests_total",
    			"The number of grpc requests total",
    		),
    		TCPRequests: monitoring.NewSum(
    			"istio_echo_tcp_requests_total",
    			"The number of tcp requests total",
    		),
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. pkg/dns/client/monitoring.go

    package client
    
    import (
    	"istio.io/istio/pkg/monitoring"
    )
    
    var (
    	requests = monitoring.NewSum(
    		"dns_requests_total",
    		"Total number of DNS requests.",
    	)
    
    	upstreamRequests = monitoring.NewSum(
    		"dns_upstream_requests_total",
    		"Total number of DNS requests forwarded to upstream.",
    	)
    
    	failures = monitoring.NewSum(
    		"dns_upstream_failures_total",
    		"Total number of DNS failures.",
    	)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 07 15:55:53 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. build-logic/binary-compatibility/src/test/groovy/gradlebuild/binarycompatibility/rules/MethodsRemovedInInternalSuperClassRuleTest.groovy

            }
            [OldBase, OldSub, NewBase, NewSub].each {
                classes[it.simpleName] = instanceScopedPool.get(it.name)
            }
    
            classes['OldBase'].superclass = classes['OldSuperInternal']
            classes['NewBase'].superclass = classes['NewSuperInternal']
            classes['OldSub'].superclass = classes['OldBase']
            classes['NewSub'].superclass = classes['NewBase']
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 06 19:15:15 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  7. pkg/webhooks/validation/controller/monitoring.go

    	metricWebhookConfigurationUpdateError = monitoring.NewSum(
    		"galley_validation_config_update_error",
    		"k8s webhook configuration update error",
    	)
    	metricWebhookConfigurationUpdates = monitoring.NewSum(
    		"galley_validation_config_updates",
    		"k8s webhook configuration updates")
    	metricWebhookConfigurationLoadError = monitoring.NewSum(
    		"galley_validation_config_load_error",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. pkg/xds/monitoring.go

    	nodeTag = monitoring.CreateLabel("node")
    	typeTag = monitoring.CreateLabel("type")
    
    	TotalXDSInternalErrors = monitoring.NewSum(
    		"pilot_total_xds_internal_errors",
    		"Total number of internal XDS errors in pilot.",
    	)
    
    	ExpiredNonce = monitoring.NewSum(
    		"pilot_xds_expired_nonce",
    		"Total number of XDS requests with an expired nonce.",
    	)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. pkg/webhooks/monitoring.go

    )
    
    var (
    	metricWebhookPatchAttempts = monitoring.NewSum(
    		"webhook_patch_attempts_total",
    		"Webhook patching attempts",
    	)
    
    	metricWebhookPatchRetries = monitoring.NewSum(
    		"webhook_patch_retries_total",
    		"Webhook patching retries",
    	)
    
    	metricWebhookPatchFailures = monitoring.NewSum(
    		"webhook_patch_failures_total",
    		"Webhook patching total failures",
    	)
    )
    
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/allocator_test.go

    	}
    
    	for i := initialSize; i > 0; i = i / 10 {
    		newBuff := target.Allocate(uint64(i))
    		if cap(newBuff) < initialSize {
    			t.Fatalf("allocator is now allowed to shrink memory")
    		}
    		if len(newBuff) != i {
    			t.Fatalf("unexpected length of the buffer, expected: %v, got: %v", i, len(newBuff))
    		}
    	}
    }
    
    func TestAllocatorZero(t *testing.T) {
    	target := &Allocator{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 13:38:29 UTC 2022
    - 2.4K bytes
    - Viewed (0)
Back to top