Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for cmoptions (0.23 sec)

  1. cmd/kube-controller-manager/app/options/options_test.go

    	cpoptions "k8s.io/cloud-provider/options"
    	componentbaseconfig "k8s.io/component-base/config"
    	"k8s.io/component-base/logs"
    	"k8s.io/component-base/metrics"
    	cmconfig "k8s.io/controller-manager/config"
    	cmoptions "k8s.io/controller-manager/options"
    	migration "k8s.io/controller-manager/pkg/leadermigration/options"
    	netutils "k8s.io/utils/net"
    
    	clientgofeaturegate "k8s.io/client-go/features"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/process/internal/JvmOptions.java

            return getDebugArgument(debugOptions);
        }
    
        public static String getDebugArgument(JavaDebugOptions options) {
            boolean server = options.getServer().get();
            boolean suspend = options.getSuspend().get();
            int port = options.getPort().get();
            String host = options.getHost().map(h -> h + ":").getOrElse("");
            String address = host + port;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. pkg/log/options.go

    func (o *Options) WithStackdriverLoggingFormat() *Options {
    	o.useStackdriverFormat = true
    	return o
    }
    
    // WithTeeToUDS configures a parallel logging pipeline that writes logs to a server over UDS.
    // addr is the socket that the server listens on, and path is the HTTP path that process the log message.
    func (o *Options) WithTeeToUDS(addr, path string) *Options {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/PerformanceTestJvmOptions.groovy

            List<String> jvmOptions
            if (!originalJvmOptions) {
                jvmOptions = []
            } else {
                jvmOptions = originalJvmOptions.collect { it.toString() }  // makes sure that all elements are java.lang.String instances
            }
            if (!JavaVersion.current().isJava8Compatible() && jvmOptions.count { it.startsWith('-XX:MaxPermSize=') } == 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:59:28 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/configuration/DaemonParameters.java

            jvmOptions = new DaemonJvmOptions(fileCollectionFactory);
            if (!extraSystemProperties.isEmpty()) {
                List<String> immutableBefore = jvmOptions.getAllImmutableJvmArgs();
                jvmOptions.systemProperties(extraSystemProperties);
                List<String> immutableAfter = jvmOptions.getAllImmutableJvmArgs();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/process/internal/CurrentProcess.java

            // Try to infer the effective jvm options for the currently running process.
            // We only care about 'managed' jvm args, anything else is unimportant to the running build
            JvmOptions jvmOptions = new JvmOptions(fileCollectionFactory);
            // TODO(mlopatkin) figure out a nicer way of handling the presence of agent in the foreground daemon.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. pkg/controlplane/apiserver/options/options.go

    limitations under the License.
    */
    
    // Package options contains flags and options for initializing an apiserver
    package options
    
    import (
    	"fmt"
    	"net"
    	"os"
    	"strings"
    	"time"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	peerreconcilers "k8s.io/apiserver/pkg/reconcilers"
    	genericoptions "k8s.io/apiserver/pkg/server/options"
    	"k8s.io/apiserver/pkg/storage/storagebackend"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. cluster/images/etcd/migrate/options.go

    Humble Chirammal <******@****.***> 1717149052 +0530
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 09:59:52 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. pilot/pkg/bootstrap/options.go

    	Revision           string
    	MeshConfigFile     string
    	NetworksConfigFile string
    	RegistryOptions    RegistryOptions
    	CtrlZOptions       *ctrlz.Options
    	KeepaliveOptions   *keepalive.Options
    	ShutdownDuration   time.Duration
    	JwtRule            string
    }
    
    // DiscoveryServerOptions contains options for create a new discovery server instance.
    type DiscoveryServerOptions struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. pkg/wasm/options.go

    	DefaultHTTPRequestMaxRetries = 5
    )
    
    // Options contains configurations to create a Cache instance.
    type Options struct {
    	PurgeInterval         time.Duration
    	ModuleExpiry          time.Duration
    	InsecureRegistries    sets.String
    	HTTPRequestTimeout    time.Duration
    	HTTPRequestMaxRetries int
    }
    
    func defaultOptions() Options {
    	return Options{
    		PurgeInterval:         DefaultPurgeInterval,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top