Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 244 for Configurable (0.52 sec)

  1. tools/istio-iptables/pkg/config/config.go

    	c.OwnerGroupsInclude = constants.OwnerGroupsInclude.Get()
    	c.OwnerGroupsExclude = constants.OwnerGroupsExclude.Get()
    
    	c.HostIPv4LoopbackCidr = constants.HostIPv4LoopbackCidr.Get()
    
    	// TODO: Make this more configurable, maybe with an allowlist of users to be captured for output instead of a denylist.
    	if c.ProxyUID == "" {
    		usr, err := user.Lookup(envoyUserVar.Get())
    		var userID string
    		// Default to the UID of ENVOY_USER
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/file/DefaultSourceDirectorySet.java

        private final PatternSet patterns;
        private final PatternSet filter;
        private final FileCollection dirs;
        private final DirectoryProperty destinationDirectory; // the user configurable output directory
        private final DirectoryProperty classesDirectory;     // bound to the compile task output
    
        private TaskProvider<?> compileTaskProvider;
    
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Oct 29 02:23:21 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. src/encoding/gob/decoder.go

    // remote side of a connection.  It is safe for concurrent use by multiple
    // goroutines.
    //
    // The Decoder does only basic sanity checking on decoded input sizes,
    // and its limits are not configurable. Take caution when decoding gob data
    // from untrusted sources.
    type Decoder struct {
    	mutex        sync.Mutex                              // each item must be received atomically
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModule.java

         *
         * This should be preferred to {@link #getTestSourceDirs()} as it will include late changes to default directories.
         *
         * @return lazily configurable collection of test source directories
         * @since 7.4
         */
        public ConfigurableFileCollection getTestSources() {
            return testSources;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 09:58:16 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/dra/manager.go

    	if err != nil {
    		return nil, fmt.Errorf("failed to create claimInfo cache: %+v", err)
    	}
    
    	// TODO: for now the reconcile period is not configurable.
    	// We should consider making it configurable in the future.
    	reconcilePeriod := defaultReconcilePeriod
    
    	manager := &ManagerImpl{
    		cache:           claimInfoCache,
    		kubeClient:      kubeClient,
    		reconcilePeriod: reconcilePeriod,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:29 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. architecture/security/istio-agent.md

    ## Certificate Rotation
    
    The agent also handles rotating certificates near expiration. It does so by triggering a callback from the `SecretManager` to the SDS server
    when a certificate is near expiration (configurable by `SECRET_GRACE_PERIOD_RATIO`, defaulting to half of the expiration). If the SDS server
    is still interested in this certificate (ie, Envoy is still connected and requesting the certificate), the SDS server will send another request
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 22 16:45:50 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  7. tensorflow/BUILD

    # google internal build on configurable attributes.
    #
    # For non-configurable distinction between OSS and Google builds, see
    # `if_oss()` and `if_google()` macros in tensorflow.bzl.
    config_setting(
        name = "oss",
        flag_values = {":oss_setting": "True"},
        visibility = ["//visibility:public"],
    )
    
    # Non-configurable setting to indicate open source build.
    bool_setting(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  8. pilot/pkg/model/extensions.go

    		Specifier: &core.AsyncDataSource_Remote{
    			Remote: &core.RemoteDataSource{
    				HttpUri: &core.HttpUri{
    					Uri:     u.String(),
    					Timeout: durationpb.New(30 * time.Second), // TODO: make this configurable?
    					HttpUpstreamType: &core.HttpUri_Cluster{
    						// the agent will fetch this anyway, so no need for a cluster
    						Cluster: "_",
    					},
    				},
    				Sha256: wasmPlugin.Sha256,
    			},
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/worker_api.adoc

    The best way to understand how to use the API is to go through the process of converting an existing custom task to use the Worker API:
    
    1. You'll start by creating a custom task class that generates MD5 hashes for a configurable set of files.
    2. Then, you'll convert this custom task to use the Worker API.
    3. Then, we'll explore running the task with different levels of isolation.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 13:41:08 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-component-api/1.0-alpha-16/plexus-component-api-1.0-alpha-16.jar

    ng); public abstract void returnComponentLogge(String, String); public abstract int getActiveLoggerCount(); static void <clinit>(); } org/codehaus/plexus/personality/plexus/lifecycle/phase/Configurable.class package org.codehaus.plexus.personality.plexus.lifecycle.phase; public abstract interface Configurable { public abstract void configure(org.codehaus.plexus.configuration.PlexusConfiguration) throws org.codehaus.plexus.configuration.PlexusConfigurationE; } org/codehaus/plexus/personality/plex...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 32.4K bytes
    - Viewed (0)
Back to top