Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 96 for my_all (0.11 sec)

  1. hack/make-rules/test.sh

              -o -path './staging/*' \
              -o -path './vendor/*' \
            \) -prune \
          \) -name '*_test.go' -print0 | xargs -0n1 dirname | LC_ALL=C sort -u
    
        find ./staging -name '*_test.go' -not -path '*/test/integration/*' -prune -print0 | xargs -0n1 dirname | LC_ALL=C sort -u
      )
    }
    
    # TODO: This timeout should really be lower, this is a *long* time to test one
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. src/internal/syscall/unix/net_darwin.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package unix
    
    import (
    	"internal/abi"
    	"syscall"
    	"unsafe"
    )
    
    const (
    	AI_CANONNAME = 0x2
    	AI_ALL       = 0x100
    	AI_V4MAPPED  = 0x800
    	AI_MASK      = 0x1407
    
    	EAI_AGAIN    = 2
    	EAI_NODATA   = 7
    	EAI_NONAME   = 8
    	EAI_SERVICE  = 9
    	EAI_SYSTEM   = 11
    	EAI_OVERFLOW = 14
    
    	NI_NAMEREQD = 4
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 13:41:21 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. src/runtime/stubs.go

    func getg() *g
    
    // mcall switches from the g to the g0 stack and invokes fn(g),
    // where g is the goroutine that made the call.
    // mcall saves g's current PC/SP in g->sched so that it can be restored later.
    // It is up to fn to arrange for that later execution, typically by recording
    // g in a data structure, causing something to call ready(g) later.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  4. src/runtime/coro.go

    func coroexit(c *coro) {
    	gp := getg()
    	gp.coroarg = c
    	gp.coroexit = true
    	mcall(coroswitch_m)
    }
    
    //go:linkname coroswitch
    
    // coroswitch switches to the goroutine blocked on c
    // and then blocks the current goroutine on c.
    func coroswitch(c *coro) {
    	gp := getg()
    	gp.coroarg = c
    	mcall(coroswitch_m)
    }
    
    // coroswitch_m is the implementation of coroswitch
    // that runs on the m stack.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. src/main/assemblies/files/fess

        # As those strings are created by the OS, they are dependent on the configured locale
        LANG=en_US.UTF-8
        LC_ALL=en_US.UTF-8
    
        export HOSTNAME=`hostname -s`
    
        cd "$FESS_HOME"
    
        if [ "x$daemonized" = "x" ]; then
            fess_parms="$fess_parms -Dfess.foreground=yes"
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/shell_test.go

    		// both -n (as the first argument) and escape sequences are omitted.”
    		cmd := testenv.Command(t, "/bin/sh", "-c", "printf '%s\n' "+string(b))
    		cmd.Env = append(cmd.Environ(), "LC_ALL=POSIX", "POSIXLY_CORRECT=1")
    		cmd.Stderr = new(strings.Builder)
    		out, err := cmd.Output()
    		if err != nil {
    			t.Fatalf("%#q: %v\n%s", cmd.Args, err, cmd.Stderr)
    		}
    
    		if string(out) != wantOut {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 15 15:30:05 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  7. src/internal/trace/testdata/testprog/cpu-profile.go

    func cpuHog1(x int) int {
    	return cpuHog0(x, 1e5)
    }
    
    func cpuHog0(x, n int) int {
    	foo := x
    	for i := 0; i < n; i++ {
    		if i%1000 == 0 {
    			// Spend time in mcall, stored as gp.m.curg, with g0 running
    			runtime.Gosched()
    		}
    		if foo > 0 {
    			foo *= foo
    		} else {
    			foo *= foo + 1
    		}
    	}
    	return foo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. hack/update-vendor-licenses.sh

    #    update /LICENSES
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    export LANG=C
    export LC_ALL=C
    
    ###############################################################################
    # Process package content
    #
    # @param package  The incoming package name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:53 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/core-plugins/build_dashboard_plugin.adoc

    ====
    
    Applying the plugin adds the `buildDashboard` task to your project. The task aggregates the reports for all tasks that implement the link:{groovyDslPath}/org.gradle.api.reporting.Reporting.html[Reporting] interface from _all projects_ in the build. It is typically only applied to the root project.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/plan9/mkerrors.sh

    # license that can be found in the LICENSE file.
    
    # Generate Go code listing errors and other #defined constant
    # values (ENAMETOOLONG etc.), by asking the preprocessor
    # about the definitions.
    
    unset LANG
    export LC_ALL=C
    export LC_CTYPE=C
    
    CC=${CC:-gcc}
    
    uname=$(uname)
    
    includes='
    #include <sys/types.h>
    #include <sys/file.h>
    #include <fcntl.h>
    #include <dirent.h>
    #include <sys/socket.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 5.9K bytes
    - Viewed (2)
Back to top