Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 138 for my_all (0.22 sec)

  1. src/net/cgo_bsd.go

    //go:build cgo && !netgo && (dragonfly || freebsd)
    
    package net
    
    /*
    #include <netdb.h>
    */
    import "C"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 07 21:05:53 UTC 2022
    - 343 bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/mail/TestmailPostcard.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.mylasta.mail;
    
    import org.lastaflute.core.mail.LaTypicalPostcard;
    import org.lastaflute.core.mail.MPCall;
    import org.lastaflute.core.mail.Postbox;
    
    /**
     * The postcard for MailFlute on LastaFlute.
     * @author FreeGen
     */
    public class TestmailPostcard extends LaTypicalPostcard {
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/builtin.go

    		niflen := ir.NewIfStmt(base.Pos, ir.NewBinaryExpr(base.Pos, ir.OLT, l, ir.NewInt(base.Pos, 0)), nil, nil)
    		niflen.Body = []ir.Node{mkcall("panicmakeslicelen", nil, init)}
    		nif.Body.Append(niflen, mkcall("panicmakeslicecap", nil, init))
    		init.Append(typecheck.Stmt(nif))
    
    		t = types.NewArray(t.Elem(), i) // [r]T
    		var_ := typecheck.TempAt(base.Pos, ir.CurFunc, t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:35:22 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  4. build-logic/jvm/src/main/kotlin/gradlebuild/propagated-env-variables.kt

        "BUILD_TYPE_ID",
        "JPROFILER_HOME",
    
        "LANG",
        "LANGUAGE",
        // It is possible to have many LC_xxx variables for different aspects of the locale. However, LC_ALL overrides all of them, and it is what CI uses.
        "LC_ALL",
        "LC_CTYPE",
    
        "JDK_10",
        "JDK_10_0",
        "JDK_10_0_x64",
        "JDK_10_x64",
        "JDK_11",
        "JDK_11_0",
        "JDK_11_0_x64",
        "JDK_11_x64",
        "JDK_12",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 18 01:52:16 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/mail/EsStatusPostcard.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.mylasta.mail;
    
    import org.lastaflute.core.mail.LaTypicalPostcard;
    import org.lastaflute.core.mail.MPCall;
    import org.lastaflute.core.mail.Postbox;
    
    /**
     * The postcard for MailFlute on LastaFlute.
     * @author FreeGen
     */
    public class EsStatusPostcard extends LaTypicalPostcard {
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. src/net/cgo_solaris.go

    //go:build cgo && !netgo
    
    package net
    
    /*
    #cgo LDFLAGS: -lsocket -lnsl -lsendfile
    #include <netdb.h>
    */
    import "C"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 343 bytes
    - Viewed (0)
  7. hack/make-rules/test-integration.sh

        find ./test/integration/ -name '*_test.go' -print0 \
          | xargs -0n1 dirname \
          | LC_ALL=C sort -u
        find ./staging/src/k8s.io/apiextensions-apiserver/test/integration/ -name '*_test.go' -print0 \
          | xargs -0n1 dirname \
          | LC_ALL=C sort -u
      )
    }
    
    CLEANUP_REQUIRED=
    cleanup() {
      if [[ -z "${CLEANUP_REQUIRED}" ]]; then
        return
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:57 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/rsc.io_sampler_v1.99.99.txt

    	"golang.org/x/text/language"
    )
    
    // DefaultUserPrefs returns the default user language preferences.
    // It consults the $LC_ALL, $LC_MESSAGES, and $LANG environment
    // variables, in that order.
    func DefaultUserPrefs() []language.Tag {
    	var prefs []language.Tag
    	for _, k := range []string{"LC_ALL", "LC_MESSAGES", "LANG"} {
    		if env := os.Getenv(k); env != "" {
    			prefs = append(prefs, language.Make(env))
    		}
    	}
    	return prefs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 3.2K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/rsc.io_sampler_v1.2.0.txt

    	"golang.org/x/text/language"
    )
    
    // DefaultUserPrefs returns the default user language preferences.
    // It consults the $LC_ALL, $LC_MESSAGES, and $LANG environment
    // variables, in that order.
    func DefaultUserPrefs() []language.Tag {
    	var prefs []language.Tag
    	for _, k := range []string{"LC_ALL", "LC_MESSAGES", "LANG"} {
    		if env := os.Getenv(k); env != "" {
    			prefs = append(prefs, language.Make(env))
    		}
    	}
    	return prefs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 3.2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/rsc.io_sampler_v1.2.1.txt

    	"golang.org/x/text/language"
    )
    
    // DefaultUserPrefs returns the default user language preferences.
    // It consults the $LC_ALL, $LC_MESSAGES, and $LANG environment
    // variables, in that order.
    func DefaultUserPrefs() []language.Tag {
    	var prefs []language.Tag
    	for _, k := range []string{"LC_ALL", "LC_MESSAGES", "LANG"} {
    		if env := os.Getenv(k); env != "" {
    			prefs = append(prefs, language.Make(env))
    		}
    	}
    	return prefs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 17:49:01 UTC 2021
    - 3.1K bytes
    - Viewed (0)
Back to top