Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for cmoptions (0.19 sec)

  1. 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)
  2. 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)
  3. 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)
  4. cmd/object-api-options.go

    Klaus Post <******@****.***> 1718261772 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DefaultDaemonStarter.java

    import org.gradle.launcher.daemon.toolchain.DaemonJvmCriteria;
    import org.gradle.process.internal.DefaultExecActionFactory;
    import org.gradle.process.internal.ExecHandle;
    import org.gradle.process.internal.JvmOptions;
    import org.gradle.util.GradleVersion;
    import org.gradle.util.internal.CollectionUtils;
    import org.gradle.util.internal.GFileUtils;
    import org.gradle.util.internal.IncubationLogger;
    
    import java.io.File;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. pilot/pkg/bootstrap/server.go

    		s.XDSServer.Shutdown()
    	}()
    }
    
    func (s *Server) initGrpcServer(options *istiokeepalive.Options) {
    	interceptors := []grpc.UnaryServerInterceptor{
    		// setup server prometheus monitoring (as final interceptor in chain)
    		grpcprom.UnaryServerInterceptor,
    	}
    	grpcOptions := istiogrpc.ServerOptions(options, interceptors...)
    	s.grpcServer = grpc.NewServer(grpcOptions...)
    	s.XDSServer.Register(s.grpcServer)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_test.go

    				),
    				test.containerName,
    				options,
    			)
    			require.Equal(t, test.expectedStatus, status)
    
    			if status != nil {
    				return
    			}
    
    			require.True(
    				t,
    				strings.HasPrefix(
    					options.Location,
    					test.expectedLocation,
    				),
    			)
    			require.Equal(
    				t,
    				options.ContainerId,
    				containerID.ID,
    			)
    
    		})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  8. pkg/controller/job/job_controller.go

    	// but have a ControllerRef pointing to this controller.
    	pods, err := jm.podStore.Pods(j.Namespace).List(labels.Everything())
    	if err != nil {
    		return nil, err
    	}
    	// If any adoptions are attempted, we should first recheck for deletion
    	// with an uncached quorum read sometime after listing Pods (see #42639).
    	canAdoptFunc := controller.RecheckDeletionTimestamp(func(ctx context.Context) (metav1.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet.go

    	if kubeDeps.KubeClient != nil {
    		kubeInformers := informers.NewSharedInformerFactoryWithOptions(kubeDeps.KubeClient, 0, informers.WithTweakListOptions(func(options *metav1.ListOptions) {
    			options.FieldSelector = fields.Set{metav1.ObjectNameField: string(nodeName)}.String()
    		}))
    		nodeLister = kubeInformers.Core().V1().Nodes().Lister()
    		nodeHasSynced = func() bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  10. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.api.internal.tasks.options.AbstractOptionElement> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (AbstractOptionElement.java:0)
    Class <org.gradle.api.internal.tasks.options.BooleanOptionElement> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (BooleanOptionElement.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top