Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 219 for IsSame (0.09 sec)

  1. tools/istio-clean-iptables/pkg/cmd/root.go

    		&cfg.ProxyUID)
    
    	flag.BindEnv(fs, constants.ProxyGID, "g",
    		"Specify the GID of the user for which the redirection is not applied (same default value as -u param).",
    		&cfg.ProxyGID)
    
    	flag.BindEnv(fs, constants.RedirectDNS, "", "Enable capture of dns traffic by istio-agent.", &cfg.RedirectDNS)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. src/math/rand/v2/chacha8.go

    }
    
    // NewChaCha8 returns a new ChaCha8 seeded with the given seed.
    func NewChaCha8(seed [32]byte) *ChaCha8 {
    	c := new(ChaCha8)
    	c.state.Init(seed)
    	return c
    }
    
    // Seed resets the ChaCha8 to behave the same way as NewChaCha8(seed).
    func (c *ChaCha8) Seed(seed [32]byte) {
    	c.state.Init(seed)
    	c.readLen = 0
    	c.readBuf = [8]byte{}
    }
    
    // Uint64 returns a uniformly distributed random uint64 value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. pkg/controlplane/apiserver/apiextensions.go

    	authResolverWrapper webhook.AuthenticationInfoResolverWrapper,
    ) (*apiextensionsapiserver.Config, error) {
    	// make a shallow copy to let us twiddle a few things
    	// most of the config actually remains the same.  We only need to mess with a couple items related to the particulars of the apiextensions
    	genericConfig := kubeAPIServerConfig
    	genericConfig.PostStartHooks = map[string]server.PostStartHookConfigEntry{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 18:08:20 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/testing/DummyProxy.java

     *
     * @author Ben Yu
     */
    @GwtIncompatible
    @J2ktIncompatible
    @ElementTypesAreNonnullByDefault
    abstract class DummyProxy {
    
      /**
       * Returns a new proxy for {@code interfaceType}. Proxies of the same interface are equal to each
       * other if the {@link DummyProxy} instance that created the proxies are equal.
       */
      final <T> T newProxy(TypeToken<T> interfaceType) {
        Set<Class<?>> interfaceClasses = Sets.newLinkedHashSet();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 08 17:31:55 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. architecture/standards/0001-use-architectural-decision-records.md

    The main logic with ADRs is to describe (architectural) decisions made:
    
    * To provide best practices and solutions we (as the *build tool* team) want to promote.
    * To avoid asking the same thing multiple times during code review.
    * To explain *rejected solutions*, for now, and future development, in case they are proposed again.
    
    ADRs can be written by any team.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 02 21:54:40 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. pilot/pkg/security/authn/utils/utils.go

    		RequireClientCertificate: protovalue.BoolTrue,
    	}
    	if protocol == networking.ListenerProtocolTCP && features.MetadataExchange {
    		// For TCP with mTLS, we advertise "istio-peer-exchange" from client and
    		// expect the same from server. This  is so that secure metadata exchange
    		// transfer can take place between sidecars for TCP with mTLS.
    		if features.DisableMxALPN {
    			ctx.CommonTlsContext.AlpnProtocols = util.ALPNDownstream
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 00:16:21 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/file/FileTreeElement.java

         */
        String getName();
    
        /**
         * Returns the path of this file, relative to the root of the containing file tree. Always uses '/' as the hierarchy
         * separator, regardless of platform file separator. Same as calling <code>getRelativePath().getPathString()</code>.
         *
         * @return The path. Never returns null.
         */
        String getPath();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 13:43:13 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. tensorflow/c/tf_status.h

    TF_CAPI_EXPORT extern void TF_SetStatus(TF_Status* s, TF_Code code,
                                            const char* msg);
    
    // Record <key, value> as a payload in *s. The previous payload having the
    // same key (if any) is overwritten. Payload will not be added if the Status
    // is OK.
    TF_CAPI_EXPORT void TF_SetPayload(TF_Status* s, const char* key,
                                      const char* value);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 20:00:09 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. src/os/signal/signal.go

    // a buffer of size 1 is sufficient.
    //
    // It is allowed to call Notify multiple times with the same channel:
    // each call expands the set of signals sent to that channel.
    // The only way to remove signals from the set is to call [Stop].
    //
    // It is allowed to call Notify multiple times with different channels
    // and the same signals: each channel receives copies of incoming
    // signals independently.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. docs/en/docs/advanced/events.md

    # Lifespan Events
    
    You can define logic (code) that should be executed before the application **starts up**. This means that this code will be executed **once**, **before** the application **starts receiving requests**.
    
    The same way, you can define logic (code) that should be executed when the application is **shutting down**. In this case, this code will be executed **once**, **after** having handled possibly **many requests**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top