Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for EMPTY (0.05 sec)

  1. pilot/pkg/model/telemetry_test.go

    			sidecar,
    			nil,
    			newTracingConfig("stackdriver", reportingEnabled),
    		},
    		{
    			"empty config inherits",
    			[]config.Config{newTelemetry("istio-system", envoy), newTelemetry("default", empty)},
    			sidecar,
    			nil,
    			newTracingConfig("envoy", reportingEnabled),
    		},
    		{
    			"disable config",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  2. cmd/object-handlers.go

    				return
    			}
    			if gr != nil {
    				if !gr.ObjInfo.VersionPurgeStatus.Empty() {
    					// Shows the replication status of a permanent delete of a version
    					w.Header()[xhttp.MinIODeleteReplicationStatus] = []string{string(gr.ObjInfo.VersionPurgeStatus)}
    				}
    				if !gr.ObjInfo.ReplicationStatus.Empty() && gr.ObjInfo.DeleteMarker {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  3. cmd/object-multipart-handlers.go

    		vid = strings.TrimSpace(u.Query().Get(xhttp.VersionID))
    		// Note that url.Parse does the unescaping
    		cpSrcPath = u.Path
    	}
    
    	srcBucket, srcObject := path2BucketObject(cpSrcPath)
    	// If source object is empty or bucket is empty, reply back invalid copy source.
    	if srcObject == "" || srcBucket == "" {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrInvalidCopySource), r.URL)
    		return
    	}
    
    	if vid != "" && vid != nullVersionID {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  4. pilot/pkg/model/telemetry_logging_test.go

    			networking.ListenerClassSidecarOutbound,
    			sidecar,
    			nil,
    			[]string{"envoy-json"},
    		},
    		{
    			"empty config inherits",
    			[]config.Config{newTelemetry("istio-system", envoy), newTelemetry("default", empty)},
    			networking.ListenerClassSidecarOutbound,
    			sidecar,
    			nil,
    			[]string{"envoy"},
    		},
    		{
    			"stackdriver",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. cmd/bucket-handlers.go

    		}
    
    		if replicateDeletes || object.VersionID != "" && hasLockEnabled || !globalTierConfigMgr.Empty() {
    			if !globalTierConfigMgr.Empty() && object.VersionID == "" && opts.VersionSuspended {
    				opts.VersionID = nullVersionID
    			}
    			goi, gerr = getObjectInfoFn(ctx, bucket, object.ObjectName, opts)
    		}
    
    		if !globalTierConfigMgr.Empty() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/conversion.go

    	// In the Istio API, empty hostname is not allowed. In the Kubernetes API hosts means "any"
    	if len(h) == 0 {
    		return []string{"*"}
    	}
    	return slices.Map(h, func(e k8s.Hostname) string {
    		return string(e)
    	})
    }
    
    func toInternalParentReference(p k8s.ParentReference, localNamespace string) (parentKey, error) {
    	empty := parentKey{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/analyzers_test.go

    		expected: []message{
    			{msg.NoMatchingWorkloadsFound, "AuthorizationPolicy istio-system/meshwide-httpbin-v1"},
    			{msg.NoMatchingWorkloadsFound, "AuthorizationPolicy httpbin-empty/httpbin-empty-namespace-wide"},
    			{msg.NoMatchingWorkloadsFound, "AuthorizationPolicy httpbin/httpbin-nopods"},
    			{msg.ReferencedResourceNotFound, "AuthorizationPolicy httpbin/httpbin-bogus-ns"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  8. pilot/pkg/model/gateway.go

    								gatewayConfig.Name, s.Port.Name, resolvedPort, s.Port.Protocol, serverPort.Number, serverPort.Protocol)
    							RecordRejectedConfig(gatewayName)
    							continue
    						}
    						// For TCP gateway/route the route name is empty but if they are different binds, should continue to generate the listener
    						// i.e gateway 10.0.0.1:8000:TCP should not conflict with 10.0.0.2:8000:TCP
    						if routeName == "" && current.Bind == serverPort.Bind {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  9. pilot/pkg/xds/delta.go

    	// Currently ready means caches have been synced and hence can build
    	// clusters correctly. Without this check, InitContext() call below would
    	// initialize with empty config, leading to reconnected Envoys loosing
    	// configuration. This is an additional safety check inaddition to adding
    	// cachesSynced logic to readiness probe to handle cases where kube-proxy
    	// ip tables update latencies.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods.go

    	// cleanup of pod cgroups.
    	stringIfTrue := func(t bool) string {
    		if t {
    			return "true"
    		}
    		return ""
    	}
    	runningPods := make(map[types.UID]sets.Empty)
    	possiblyRunningPods := make(map[types.UID]sets.Empty)
    	for uid, sync := range workingPods {
    		switch sync.State {
    		case SyncPod:
    			runningPods[uid] = struct{}{}
    			possiblyRunningPods[uid] = struct{}{}
    		case TerminatingPod:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top