Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for divert6 (0.22 sec)

  1. src/syscall/mksysctl_openbsd.pl

    my %ctl_map = (
    	"ipproto" => "net.inet",
    	"net.inet.ipproto" => "net.inet",
    	"net.inet6.ipv6proto" => "net.inet6",
    	"net.inet6.ipv6" => "net.inet6.ip6",
    	"net.inet.icmpv6" => "net.inet6.icmp6",
    	"net.inet6.divert6" => "net.inet6.divert",
    	"net.inet6.tcp6" => "net.inet.tcp",
    	"net.inet6.udp6" => "net.inet.udp",
    	"mpls" => "net.mpls",
    	"swpenc" => "vm.swapencrypt"
    );
    
    # Node mappings
    my %node_map = (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 5K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess/pt-br/stopwords.txt

    aquele
    aqueles
    as
    assim
    com
    como
    contra
    contudo
    cuja
    cujas
    cujo
    cujos
    da
    das
    de
    dela
    dele
    deles
    demais
    depois
    desde
    desta
    deste
    dispoe
    dispoem
    diversa
    diversas
    diversos
    do
    dos
    durante
    e
    ela
    elas
    ele
    eles
    em
    entao
    entre
    essa
    essas
    esse
    esses
    esta
    estas
    este
    estes
    ha
    isso
    isto
    logo
    mais
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 820 bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/noderesources/requested_to_capacity_ratio.go

    	shapes := make([]helper.FunctionShapePoint, 0, len(shape))
    	for _, point := range shape {
    		shapes = append(shapes, helper.FunctionShapePoint{
    			Utilization: int64(point.Utilization),
    			// MaxCustomPriorityScore may diverge from the max score used in the scheduler and defined by MaxNodeScore,
    			// therefore we need to scale the score returned by requested to capacity ratio to the score range
    			// used by the scheduler.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 21 15:23:47 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  4. Dockerfile.release.fips

    ENV MINIO_ACCESS_KEY_FILE=access_key \
        MINIO_SECRET_KEY_FILE=secret_key \
        MINIO_ROOT_USER_FILE=access_key \
        MINIO_ROOT_PASSWORD_FILE=secret_key \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Mar 30 09:41:56 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. Dockerfile.release

    ENV MINIO_ACCESS_KEY_FILE=access_key \
        MINIO_SECRET_KEY_FILE=secret_key \
        MINIO_ROOT_USER_FILE=access_key \
        MINIO_ROOT_PASSWORD_FILE=secret_key \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 29 19:10:49 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. Dockerfile.release.old_cpu

    ENV MINIO_ACCESS_KEY_FILE=access_key \
        MINIO_SECRET_KEY_FILE=secret_key \
        MINIO_ROOT_USER_FILE=access_key \
        MINIO_ROOT_PASSWORD_FILE=secret_key \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Mar 30 09:41:56 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. Dockerfile.hotfix

    ENV MINIO_ACCESS_KEY_FILE=access_key \
        MINIO_SECRET_KEY_FILE=secret_key \
        MINIO_ROOT_USER_FILE=access_key \
        MINIO_ROOT_PASSWORD_FILE=secret_key \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Mar 30 09:41:56 UTC 2024
    - 2.8K bytes
    - Viewed (1)
  8. internal/s3select/sql/aggregation.go

    		// updated.
    		return nil
    	}
    
    	argVal := val
    	if funcName != aggFnCount {
    		// All aggregation functions, except COUNT require a
    		// numeric argument.
    
    		// Here, we diverge from Amazon S3 behavior by
    		// inferring untyped values are numbers.
    		if !argVal.isNumeric() {
    			if i, ok := argVal.bytesToInt(); ok {
    				argVal.setInt(i)
    			} else if f, ok := argVal.bytesToFloat(); ok {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  9. src/os/signal/signal.go

    //
    // The stop function releases resources associated with it, so code should
    // call stop as soon as the operations running in this Context complete and
    // signals no longer need to be diverted to the context.
    func NotifyContext(parent context.Context, signals ...os.Signal) (ctx context.Context, stop context.CancelFunc) {
    	ctx, cancel := context.WithCancel(parent)
    	c := &signalCtx{
    		Context: ctx,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. src/encoding/json/scanner_test.go

    	}
    }
    
    func diff(t *testing.T, a, b []byte) {
    	t.Helper()
    	for i := 0; ; i++ {
    		if i >= len(a) || i >= len(b) || a[i] != b[i] {
    			j := i - 10
    			if j < 0 {
    				j = 0
    			}
    			t.Errorf("diverge at %d: «%s» vs «%s»", i, trim(a[j:]), trim(b[j:]))
    			return
    		}
    	}
    }
    
    func trim(b []byte) []byte {
    	return b[:min(len(b), 20)]
    }
    
    // Generate a random JSON object.
    
    var jsonBig []byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 16:00:37 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top