Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 84 for Mathis (0.13 sec)

  1. pilot/pkg/status/distribution/reporter.go

    				// if this resource is done reconciling, let's not worry about it anymore
    				finishedResources = append(finishedResources, res)
    				// deleting it here doesn't work because we have a read lock and are inside an iterator.
    				// TODO: this will leak when a resource never reaches 100% before it is replaced.
    				// TODO: do deletes propagate through this thing?
    			}
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/httproute.go

    	if err != nil && routeName != model.RDSHttpProxy && !strings.HasPrefix(routeName, model.UnixAddressPrefix) {
    		// TODO: This is potentially one place where envoyFilter ADD operation can be helpful if the
    		// user wants to ship a custom RDS. But at this point, the match semantics are murky. We have no
    		// object to match upon. This needs more thought. For now, we will continue to return nil for
    		// unknown routes
    		return nil, false
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    // A pod may be missing (nil) for two reasons:
    //   - It is an endpoint without an associated Pod. In this case, expectPod will be false.
    //   - It is an endpoint with an associate Pod, but its not found. In this case, expectPod will be true.
    //     this may happen due to eventually consistency issues, out of order events, etc. In this case, the caller
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  4. pkg/bootstrap/option/convert.go

    		if tlsContext == nil {
    			return "", nil
    		}
    		if !isH2 {
    			tlsContext.CommonTlsContext.AlpnProtocols = nil
    		}
    		// This double conversion is to encode the typed config and get it out as struct
    		// so that convertToJSON properly encodes the structure. Since this is just for
    		// bootstrap generation this is better than having our custom structs.
    		tlsContextStruct, _ := conversion.MessageToStruct(protoconv.MessageToAny(tlsContext))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 00:35:05 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. security/pkg/pki/util/generate_cert.go

    	SignerPrivPem []byte
    
    	// Organization for this certificate.
    	Org string
    
    	// The size of RSA private key to be generated.
    	RSAKeySize int
    
    	// Whether this certificate is used as signing cert for CA.
    	IsCA bool
    
    	// Whether this certificate is self-signed.
    	IsSelfSigned bool
    
    	// Whether this certificate is for a client.
    	IsClient bool
    
    	// Whether this certificate is for a server.
    	IsServer bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 02 14:34:38 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  6. pkg/log/scope.go

    	}
    }
    
    // DebugEnabled returns whether output of messages using this scope is currently enabled for debug-level output.
    func (s *Scope) DebugEnabled() bool {
    	return s.GetOutputLevel() >= DebugLevel
    }
    
    // Name returns this scope's name.
    func (s *Scope) Name() string {
    	return s.name
    }
    
    // Description returns this scope's description
    func (s *Scope) Description() string {
    	return s.description
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 16:47:01 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. cni/pkg/repair/repaircontroller.go

    		}
    		return nil
    	}
    	log.Infof("Repairing pod...")
    
    	// Fetch the pod's network namespace. This must run in the host process due to how the procfs /ns/net works.
    	// This will get a network namespace ID. This ID is scoped to the network namespace we running in.
    	// As such, we need to be in the host namespace: the CNI pod namespace has no relation to the users pod namespace.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 10 00:31:55 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. pilot/pkg/model/telemetry.go

    	// its class and protocol. This is protected by mu.
    	// Currently, this only applies to metrics, but a similar concept can likely be applied to logging and
    	// tracing for performance.
    	// The computedMetricsFilters lifetime is bound to the Telemetries object. During a push context
    	// creation, we will preserve the Telemetries (and thus the cache) if not Telemetries are modified.
    	// As result, this cache will live until any Telemetry is modified.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  9. pkg/wasm/convert.go

    			}
    		} else {
    			// This is not a Wasm filter.
    			wasmLog.Debugf("typed extension config %+v does not contain wasm http filter", typedStruct)
    			return nil, nil, nil, nil
    		}
    	default:
    		// This is not a Wasm filter.
    		wasmLog.Debugf("cannot find typed config or typed struct in %+v", ec)
    		return nil, nil, nil, nil
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. pkg/config/model.go

    	Status Status
    }
    
    func LabelsInRevision(lbls map[string]string, rev string) bool {
    	configEnv, f := lbls[label.IoIstioRev.Name]
    	if !f {
    		// This is a global object, and always included
    		return true
    	}
    	// If the revision is empty, this means we don't specify a revision, and
    	// we should always include it
    	if rev == "" {
    		return true
    	}
    	// Otherwise, only return true if revisions equal
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top