Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 290 for syso (0.29 sec)

  1. src/main/java/org/codelibs/fess/app/web/sso/SsoAction.java

    import org.codelibs.fess.app.web.login.LoginAction;
    import org.codelibs.fess.exception.SsoMessageException;
    import org.codelibs.fess.sso.SsoManager;
    import org.codelibs.fess.sso.SsoResponseType;
    import org.codelibs.fess.util.ComponentUtil;
    import org.dbflute.optional.OptionalThing;
    import org.lastaflute.web.Execute;
    import org.lastaflute.web.login.credential.LoginCredential;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. src/runtime/runtime-gdb_unix_test.go

    	}
    	ee, ok := err.(*exec.ExitError)
    	if !ok {
    		t.Fatalf("Wait err got %T %v, want exec.ExitError", ee, ee)
    	}
    	ws, ok := ee.Sys().(syscall.WaitStatus)
    	if !ok {
    		t.Fatalf("Sys got %T %v, want syscall.WaitStatus", ee.Sys(), ee.Sys())
    	}
    	if ws.Signal() != syscall.SIGABRT {
    		t.Fatalf("Signal got %d want SIGABRT", ws.Signal())
    	}
    	if !ws.CoreDump() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 17 19:05:30 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loong64/obj.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package loong64
    
    import (
    	"cmd/internal/objabi"
    	"cmd/internal/sys"
    	"cmd/link/internal/ld"
    )
    
    func Init() (*sys.Arch, ld.Arch) {
    	arch := sys.ArchLoong64
    
    	theArch := ld.Arch{
    		Funcalign:        funcAlign,
    		Maxalign:         maxAlign,
    		Minalign:         minAlign,
    		Dwarfregsp:       dwarfRegSP,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 13:49:14 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. cmd/kube-proxy/app/conntrack.go

    	logger := klog.FromContext(ctx)
    	entry := "net/netfilter/" + name
    
    	sys := sysctl.New()
    	if val, _ := sys.GetSysctl(entry); val != value {
    		logger.Info("Set sysctl", "entry", entry, "value", value)
    		if err := sys.SetSysctl(entry, value); err != nil {
    			return err
    		}
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/inl_test.go

    		// The same applies to Bswap32.
    		want["runtime/internal/sys"] = append(want["runtime/internal/sys"], "TrailingZeros64")
    		want["runtime/internal/sys"] = append(want["runtime/internal/sys"], "TrailingZeros32")
    		want["runtime/internal/sys"] = append(want["runtime/internal/sys"], "Bswap32")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/parse.go

    		} else {
    			items = make([]lex.Token, 0, 3)
    		}
    		for {
    			tok = p.nextToken()
    			if len(operands) == 0 && len(items) == 0 {
    				if p.arch.InFamily(sys.ARM, sys.ARM64, sys.AMD64, sys.I386, sys.RISCV64) && tok == '.' {
    					// Suffixes: ARM conditionals, RISCV rounding mode or x86 modifiers.
    					tok = p.nextToken()
    					str := p.lex.Text()
    					if tok != scanner.Ident {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  7. src/net/cgo_unix_cgo_res.go

    // license that can be found in the LICENSE file.
    
    // res_search, for cgo systems where that is thread-safe.
    
    //go:build cgo && !netgo && (linux || openbsd)
    
    package net
    
    /*
    #include <sys/types.h>
    #include <sys/socket.h>
    #include <netinet/in.h>
    #include <netdb.h>
    #include <unistd.h>
    #include <string.h>
    #include <arpa/nameser.h>
    #include <resolv.h>
    
    #cgo !android,!openbsd LDFLAGS: -lresolv
    */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 23:50:56 UTC 2024
    - 892 bytes
    - Viewed (0)
  8. tools/build-base-images.sh

    WD=$(dirname "$0")
    WD=$(cd "$WD"; pwd)
    ROOT=$(dirname "$WD")
    
    set -ex
    
    toJson () {
            python3 -c '
    import sys, yaml, json
    yml = list(y for y in yaml.safe_load_all(sys.stdin) if y)
    if len(yml) == 1: yml = yml[0]
    json.dump(yml, sys.stdout, indent=4)
    '
    }
    
    # shellcheck source=prow/lib.sh
    source "${ROOT}/prow/lib.sh"
    buildx-create
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 17:24:41 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. src/net/cgo_unix_cgo_resn.go

    // license that can be found in the LICENSE file.
    
    // res_nsearch, for cgo systems where that's available.
    
    //go:build cgo && !netgo && unix && !(darwin || linux || openbsd)
    
    package net
    
    /*
    #include <sys/types.h>
    #include <sys/socket.h>
    #include <netinet/in.h>
    #include <netdb.h>
    #include <unistd.h>
    #include <string.h>
    #include <arpa/nameser.h>
    #include <resolv.h>
    
    #cgo !aix,!dragonfly,!freebsd LDFLAGS: -lresolv
    */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 23:50:56 UTC 2024
    - 979 bytes
    - Viewed (0)
  10. src/vendor/modules.txt

    golang.org/x/net/http/httpguts
    golang.org/x/net/http/httpproxy
    golang.org/x/net/http2/hpack
    golang.org/x/net/idna
    golang.org/x/net/lif
    golang.org/x/net/nettest
    golang.org/x/net/route
    # golang.org/x/sys v0.21.0
    ## explicit; go 1.18
    golang.org/x/sys/cpu
    # golang.org/x/text v0.16.0
    ## explicit; go 1.18
    golang.org/x/text/secure/bidirule
    golang.org/x/text/transform
    golang.org/x/text/unicode/bidi
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 872 bytes
    - Viewed (0)
Back to top