Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 80 for syncAt (0.23 sec)

  1. src/cmd/cgo/internal/swig/swig_test.go

    // license that can be found in the LICENSE file.
    
    package swig
    
    import (
    	"cmd/internal/quoted"
    	"internal/testenv"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"regexp"
    	"strconv"
    	"strings"
    	"sync"
    	"testing"
    )
    
    func TestStdio(t *testing.T) {
    	testenv.MustHaveCGO(t)
    	mustHaveSwig(t)
    	run(t, "testdata/stdio", false)
    }
    
    func TestCall(t *testing.T) {
    	testenv.MustHaveCGO(t)
    	mustHaveSwig(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:38:14 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. src/cmd/trace/procgen.go

    	pg.gStates = make(map[trace.GoID]*gState[trace.ProcID])
    	pg.inSyscall = make(map[trace.ProcID]*gState[trace.ProcID])
    	return pg
    }
    
    func (g *procGenerator) Sync() {
    	g.globalRangeGenerator.Sync()
    	g.procRangeGenerator.Sync()
    }
    
    func (g *procGenerator) GoroutineLabel(ctx *traceContext, ev *trace.Event) {
    	l := ev.Label()
    	g.gStates[l.Resource.Goroutine()].setLabel(l.Label)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. src/go/internal/gcimporter/gcimporter.go

    	"errors"
    	"fmt"
    	"go/build"
    	"go/token"
    	"go/types"
    	"internal/pkgbits"
    	"internal/saferio"
    	"io"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"strings"
    	"sync"
    )
    
    // debugging/development support
    const debug = false
    
    var exportMap sync.Map // package dir → func() (string, error)
    
    // lookupGorootExport returns the location of the export data
    // (normally found in the build cache, but located in GOROOT/pkg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. src/go/types/resolver_test.go

    			_ = "foo"
    			return fmt.Sprintf("%d", g())
    		}
    		func g() (x int) { return }
    		`,
    		`
    		package p
    		import . "go/parser"
    		import "sync"
    		func h() Mode { return ImportsOnly }
    		var _, x int = 1, 2
    		func init() {}
    		type T struct{ *sync.Mutex; a, b, c int}
    		type I interface{ m() }
    		var _ = T{a: 1, b: 2, c: 3}
    		func (_ T) m() {}
    		func (T) _() {}
    		var i I
    		var _ = i.m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/change_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package integration
    
    import (
    	"context"
    	"fmt"
    	"sync"
    	"testing"
    	"time"
    
    	apiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
    	"k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset"
    	"k8s.io/apiextensions-apiserver/test/integration/fixtures"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:59:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r54/ToolingApiEclipseModelAutoBuildTasksCrossVersionSpec.groovy

            EclipseProject eclipseProject = loadToolingModel(EclipseProject)
    
            expect:
            !eclipseProject.hasAutoBuildTasks()
        }
    
        def "can query if Eclipse model contains tasks configured for auto-sync"() {
            when:
            EclipseProject eclipseProject = loadToolingModel(EclipseProject)
    
            then:
            !eclipseProject.hasAutoBuildTasks()
    
            when:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. internal/grid/debug.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package grid
    
    import (
    	"context"
    	"fmt"
    	"net"
    	"net/http"
    	"net/http/httptest"
    	"sync"
    	"time"
    
    	xioutil "github.com/minio/minio/internal/ioutil"
    	"github.com/minio/mux"
    )
    
    //go:generate stringer -type=debugMsg $GOFILE
    
    // debugMsg is a debug message for testing purposes.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. cmd/peer-s3-server.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"context"
    	"errors"
    
    	"github.com/minio/madmin-go/v3"
    	"github.com/minio/pkg/v3/sync/errgroup"
    )
    
    const (
    	peerS3Bucket            = "bucket"
    	peerS3BucketDeleted     = "bucket-deleted"
    	peerS3BucketForceCreate = "force-create"
    	peerS3BucketForceDelete = "force-delete"
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. internal/config/heal/heal.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package heal
    
    import (
    	"errors"
    	"fmt"
    	"strconv"
    	"strings"
    	"sync"
    	"time"
    
    	"github.com/minio/minio/internal/config"
    	"github.com/minio/pkg/v3/env"
    )
    
    // Compression environment variables
    const (
    	Bitrot       = "bitrotscan"
    	Sleep        = "max_sleep"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_interval.go

    	// possible, Locker obtained through RLocker() is provided.
    	lock sync.Locker
    }
    
    type attrFunc func(runtime.Object) (labels.Set, fields.Set, error)
    type indexerFunc func(int) *watchCacheEvent
    type indexValidator func(int) bool
    
    func newCacheInterval(startIndex, endIndex int, indexer indexerFunc, indexValidator indexValidator, locker sync.Locker) *watchCacheInterval {
    	return &watchCacheInterval{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top