Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 331 for highest (0.16 sec)

  1. src/net/tcpsockopt_unix.go

    	"time"
    )
    
    func setKeepAliveIdle(fd *netFD, d time.Duration) error {
    	if d == 0 {
    		d = defaultTCPKeepAliveIdle
    	} else if d < 0 {
    		return nil
    	}
    
    	// The kernel expects seconds so round to next highest second.
    	secs := int(roundDurationUp(d, time.Second))
    	err := fd.pfd.SetsockoptInt(syscall.IPPROTO_TCP, syscall.TCP_KEEPIDLE, secs)
    	runtime.KeepAlive(fd)
    	return wrapSyscallError("setsockopt", err)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:17:21 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. src/net/tcpsockopt_solaris.go

    		return setKeepAliveIdleAndIntervalAndCount(fd, d, -1, -1)
    	}
    
    	if d == 0 {
    		d = defaultTCPKeepAliveIdle
    	} else if d < 0 {
    		return nil
    	}
    	// The kernel expects seconds so round to next highest second.
    	secs := int(roundDurationUp(d, time.Second))
    	err := fd.pfd.SetsockoptInt(syscall.IPPROTO_TCP, sysTCP_KEEPIDLE, secs)
    	runtime.KeepAlive(fd)
    	return wrapSyscallError("setsockopt", err)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/preemption/preemption.go

    				return int64(math.MinInt64)
    			}
    			// The bigger the earliestStartTimeOnNode, the higher the score.
    			return earliestStartTimeOnNode.UnixNano()
    		}
    
    		// Each scoreFunc scores the nodes according to specific rules and keeps the name of the node
    		// with the highest score. If and only if the scoreFunc has more than one node with the highest
    		// score, we will execute the other scoreFunc in order of precedence.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/loadbalancer/loadbalancer.go

    		// Afterwards the final priorities can be calculted from 0 (highest) to N (lowest) without skipping.
    		priorityInt := int(loadAssignment.Endpoints[i].Priority*5) + priority
    		loadAssignment.Endpoints[i].Priority = uint32(priorityInt)
    		priorityMap[priorityInt] = append(priorityMap[priorityInt], i)
    	}
    
    	// since Priorities should range from 0 (highest) to N (lowest) without skipping.
    	// 2. adjust the priorities in order
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/single_versions.adoc

    ** If both parts are numeric, the highest numeric value is **higher**: `1.1` < `1.2`
    ** If one part is numeric, it is considered **higher** than the non-numeric part: `1.a` < `1.1`
    ** If both are non-numeric, the parts are compared **alphabetically**, in a **case-sensitive** manner: `1.A` < `1.B` < `1.a` < `1.b`
    ** A version with an extra numeric part is considered **higher** than a version without (even when it's zero): `1.1` < `1.1.0`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:46:26 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/ServiceScope.java

     * <p>
     * Services are visible to other services in the same scope and descendent scopes.
     * Services are not visible to services in ancestor scopes.
     * <p>
     * When a service is defined in multiple scopes, the highest scope determines the visibility.
     * The additional instances of the service in lower scopes "override" the instance from the parent
     * for their scope and its children.
     *
     * @see Scope
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modfetch/coderepo.go

    			highest = v
    			break
    		}
    	}
    	if highest == "" {
    		highest = versions[len(versions)-1]
    	}
    
    	data, err := r.GoMod(ctx, highest)
    	if err != nil {
    		return nil, err
    	}
    	f, err := modfile.ParseLax("go.mod", data, nil)
    	if err != nil {
    		return nil, err
    	}
    	retractions := make([]modfile.VersionInterval, 0, len(f.Retract))
    	for _, r := range f.Retract {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/VersionConstraint.java

     * </ul>
     * </li>
     * <li>The equivalent parts of 2 versions are compared using the following rules:
     * <ul>
     *     <li>If both parts are numeric, the highest numeric value is <b>higher</b>: `1.1 {@literal <} 1.2`</li>
     *     <li>If one part is numeric, it is considered <b>higher</b> than the non-numeric part: `1.a {@literal <} 1.1`</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 11:49:12 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/DefaultGradleDistribution.groovy

            } else {
                return true;
            }
        }
    
        /**
         * Returns true if the given java version is less than the given highest version bound.  Always returns
         * true if the highest version check is disabled via system property.
         */
        private boolean maybeEnforceHighestVersion(JavaVersion javaVersion, JavaVersion highestVersion) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/wrapper-main/src/main/java/org/gradle/wrapper/GradleWrapperMain.java

                    new BootstrapMainStarter());
        }
    
        private static void addSystemProperties(Properties systemProperties, File gradleUserHome, File rootDir) {
            // The location with highest priority needs to come last here, as it overwrites any previous entries.
            systemProperties.putAll(SystemPropertiesHandler.getSystemProperties(new File(rootDir, "gradle.properties")));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top