Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 103 for cmoptions (0.39 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/configuration/DaemonJvmOptions.java

    import org.gradle.process.internal.CurrentProcess;
    import org.gradle.process.internal.JvmOptions;
    import org.gradle.util.internal.CollectionUtils;
    
    import java.util.ArrayList;
    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    
    import static com.google.common.collect.ImmutableList.toImmutableList;
    
    public class DaemonJvmOptions extends JvmOptions {
    
        public static final String SSL_KEYSTORE_KEY = "javax.net.ssl.keyStore";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/job/ExecJob.java

            buf.append("gc-").append(getExecuteType()).append(".log");
            buf.append(":utctime,pid,tags:filecount=5,filesize=64m");
            return jvmOptions(buf.toString());
        }
    
        public ExecJob jvmOptions(final String... options) {
            Collections.addAll(this.jvmOptions, options);
            return this;
        }
    
        public ExecJob lastaEnv(final String env) {
            this.lastaEnv = env;
            return this;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. internal/http/dial_others.go

    package http
    
    import (
    	"context"
    	"net"
    	"syscall"
    	"time"
    )
    
    // TODO: if possible implement for non-linux platforms, not a priority at the moment
    //
    //nolint:unused
    func setTCPParametersFn(opts TCPOptions) func(network, address string, c syscall.RawConn) error {
    	return func(network, address string, c syscall.RawConn) error {
    		return nil
    	}
    }
    
    // DialContext is a function to make custom Dial for internode communications
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 24 04:08:47 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/istio_ca_test.go

    func TestRemoteCerts(t *testing.T) {
    	g := NewWithT(t)
    
    	dir := t.TempDir()
    
    	s := Server{
    		kubeClient: kube.NewFakeClient(),
    	}
    	s.kubeClient.RunAndWait(test.NewStop(t))
    	caOpts := &caOptions{
    		Namespace: testNamespace,
    	}
    
    	// Should do nothing because cacerts doesn't exist.
    	err := s.loadCACerts(caOpts, dir)
    	g.Expect(err).Should(BeNil())
    
    	_, err = os.Stat(path.Join(dir, "root-cert.pem"))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/configuration/DaemonJvmOptionsTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.launcher.daemon.configuration
    
    import org.gradle.api.internal.file.TestFiles
    import org.gradle.process.internal.JvmOptions
    import spock.lang.Specification
    
    class DaemonJvmOptionsTest extends Specification {
    
        def "#propDescr is immutable system property"() {
            when:
            def opts = createOpts()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. internal/http/server.go

    type Server struct {
    	http.Server
    	Addrs           []string      // addresses on which the server listens for new connection.
    	TCPOptions      TCPOptions    // all the configurable TCP conn specific configurable options.
    	ShutdownTimeout time.Duration // timeout used for graceful server shutdown.
    	listenerMutex   sync.Mutex    // to guard 'listener' field.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 09 21:25:16 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. istioctl/pkg/xds/client.go

    	if err != nil {
    		return nil, err
    	}
    	response, err := adscConn.WaitVersion(opts.Timeout, dr.TypeUrl, "")
    	return response, err
    }
    
    // DialOptions constructs gRPC dial options from command line configuration
    func DialOptions(opts clioptions.CentralControlPlaneOptions,
    	ns, serviceAccount string, kubeClient kube.CLIClient,
    ) ([]grpc.DialOption, error) {
    	ctx := context.TODO()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuterTest.groovy

            e.message.contains("Builds cannot be started with the debugger enabled on CI")
        }
    
        def "start build process in debugger options"() {
            when:
            executer.startBuildProcessInDebugger { it.server = false }
    
            then:
            def debugArgument = JvmOptions.getDebugArgument(false, true, "5005")
            executer.implicitBuildJvmArgs.contains(debugArgument)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. pilot/pkg/bootstrap/istio_ca.go

    	caServer, startErr := caserver.New(ca, maxWorkloadCertTTL.Get(), opts.Authenticators, s.multiclusterController)
    	if startErr != nil {
    		log.Fatalf("failed to create istio ca server: %v", startErr)
    	}
    	s.caServer = caServer
    }
    
    // RunCA will start the cert signing GRPC service on an existing server.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/JavaDebugOptionsInternal.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.fixtures.executer;
    
    import org.gradle.process.internal.JvmOptions;
    
    import static com.google.common.base.Strings.isNullOrEmpty;
    
    public class JavaDebugOptionsInternal {
        private boolean enabled = false;
        private String host = "";
        private int port = 5005;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top