Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 400 for priorityOk (0.29 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DefaultDaemonStarter.java

                daemonParameters.getGradleUserHomeDir().getAbsoluteFile(),
                stdInput
            );
        }
    
        private List<String> getPriorityArgs(DaemonParameters.Priority priority) {
            if (priority == DaemonParameters.Priority.NORMAL) {
                return Collections.emptyList();
            }
            OperatingSystem os = OperatingSystem.current();
            if (os.isUnix()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/configuration/DaemonBuildOptions.java

        public static class PriorityOption extends StringBuildOption<DaemonParameters> {
            public static final String GRADLE_PROPERTY = "org.gradle.priority";
    
            public PriorityOption() {
                super(GRADLE_PROPERTY, CommandLineOptionConfiguration.create("priority", "Specifies the scheduling priority for the Gradle daemon and all processes launched by it. Values are 'normal' (default) or 'low'"));
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 19:00:19 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

        private static final String APACHE_HTTP_TRANSPORTER_PRIORITY_KEY = "aether.priority.ApacheTransporterFactory";
    
        private static final String JDK_HTTP_TRANSPORTER_PRIORITY_KEY = "aether.priority.JdkTransporterFactory";
    
        private static final String FILE_TRANSPORTER_PRIORITY_KEY = "aether.priority.FileTransporterFactory";
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  4. pkg/config/analysis/msg/messages.yaml

        code: IST0151
        level: Warning
        description: "This EnvoyFilter does not have a priority and has a relative patch operation set which can cause the EnvoyFilter not to be applied. Using the INSERT_FIRST or ADD option or setting the priority may help in ensuring the EnvoyFilter is applied correctly."
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/schedule.go

    // will appear in the assembly output. For now it generates a
    // reasonable valid schedule using a priority queue. TODO(khr):
    // schedule smarter.
    func schedule(f *Func) {
    	// reusable priority queue
    	priq := new(ValHeap)
    
    	// "priority" for a value
    	score := f.Cache.allocInt8Slice(f.NumValues())
    	defer f.Cache.freeInt8Slice(score)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. src/internal/trace/traceviewer/emitter.go

    	for id, name := range e.resources {
    		priority := int(id)
    		if e.focusResource != 0 && id == e.focusResource {
    			// Put the focus goroutine on top.
    			priority = -2
    		}
    		e.threadMeta(format.ProcsSection, id, name, priority)
    	}
    
    	e.c.Flush()
    }
    
    func (e *Emitter) threadMeta(sectionID, tid uint64, name string, priority int) {
    	e.Event(&format.Event{
    		Name:  "thread_name",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:58 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  7. pkg/bootstrap/testdata/default_golden.json

              }]
            },
            "circuit_breakers": {
              "thresholds": [
                {
                  "priority": "DEFAULT",
                  "max_connections": 100000,
                  "max_pending_requests": 100000,
                  "max_requests": 100000
                },
                {
                  "priority": "HIGH",
                  "max_connections": 100000,
                  "max_pending_requests": 100000,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. pkg/bootstrap/testdata/tracing_datadog_golden.json

              }]
            },
            "circuit_breakers": {
              "thresholds": [
                {
                  "priority": "DEFAULT",
                  "max_connections": 100000,
                  "max_pending_requests": 100000,
                  "max_requests": 100000
                },
                {
                  "priority": "HIGH",
                  "max_connections": 100000,
                  "max_pending_requests": 100000,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/phi.go

    	tree  []domBlock   // dominator child+sibling
    	level []int32      // level in dominator tree (0 = root or unreachable, 1 = children of root, ...)
    
    	// scratch locations
    	priq   blockHeap    // priority queue of blocks, higher level (toward leaves) = higher priority
    	q      []*ssa.Block // inner loop queue
    	queued *sparseSet   // has been put in q
    	hasPhi *sparseSet   // has a phi
    	hasDef *sparseSet   // has a write of the variable we're processing
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  10. apache-maven/pom.xml

          <artifactId>maven-resolver-transport-file</artifactId>
        </dependency>
        <!-- HTTP/1.1, lowest priority, Java8+ (still must as some ITs force it) -->
        <dependency>
          <groupId>org.apache.maven.resolver</groupId>
          <artifactId>maven-resolver-transport-wagon</artifactId>
        </dependency>
        <!-- HTTP/1.1, medium priority, Java8+ -->
        <dependency>
          <groupId>org.apache.maven.resolver</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top