Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for jsTest (0.63 sec)

  1. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassDetector.java

                setTest(true);
            }
    
            return null;
        }
    
        @Override
        public MethodVisitor visitMethod(int access, String name, String desc, String signature, String[] exceptions) {
            if (!isTest()) {
                return new MethodVisitor(AsmConstants.ASM_LEVEL) {
                    @Override
                    public AnnotationVisitor visitAnnotation(String desc, boolean visible) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. src/testing/fstest/mapfs_test.go

    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package fstest
    
    import (
    	"fmt"
    	"io/fs"
    	"strings"
    	"testing"
    )
    
    func TestMapFS(t *testing.T) {
    	m := MapFS{
    		"hello":             {Data: []byte("hello, world\n")},
    		"fortune/k/ken.txt": {Data: []byte("If a program is too slow, it must have a loop.\n")},
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 14:59:55 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/TestClassVisitor.java

        }
    
        public String getClassName() {
            return className;
        }
    
        public String getSuperClassName() {
            return superClassName;
        }
    
        public boolean isTest() {
            return test;
        }
    
        protected void setTest(boolean test) {
            this.test = test;
        }
    
        public boolean isAbstract() {
            return isAbstract;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/coverage/cover.go

    // an exit hook to emit counter data).
    func addInitHookCall(initfn *ir.Func, cmode coverage.CounterMode) {
    	typecheck.InitCoverage()
    	pos := initfn.Pos()
    	istest := cmode == coverage.CtrModeTestMain
    	initf := typecheck.LookupCoverage("initHook")
    	istestNode := ir.NewBool(base.Pos, istest)
    	args := []ir.Node{istestNode}
    	callx := typecheck.Call(pos, initf, args, false)
    	initfn.Body.Append(callx)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:46 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. src/testing/fstest/testfs_test.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package fstest
    
    import (
    	"errors"
    	"internal/testenv"
    	"io/fs"
    	"os"
    	"path/filepath"
    	"slices"
    	"strings"
    	"testing"
    )
    
    func TestSymlink(t *testing.T) {
    	testenv.MustHaveSymlink(t)
    
    	tmp := t.TempDir()
    	tmpfs := os.DirFS(tmp)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. docs/pl/docs/fastapi-people.md

    # Ludzie FastAPI
    
    FastAPI posiada wspaniałą społeczność, która jest otwarta dla ludzi z każdego środowiska.
    
    ## Twórca - Opienik
    
    Cześć! 👋
    
    To ja:
    
    {% if people %}
    <div class="user-list user-list-center">
    {% for user in people.maintainers %}
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:50:03 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. src/io/fs/fs.go

    // license that can be found in the LICENSE file.
    
    // Package fs defines basic interfaces to a file system.
    // A file system can be provided by the host operating system
    // but also by other packages.
    //
    // See the [testing/fstest] package for support with testing
    // implementations of file systems.
    package fs
    
    import (
    	"internal/oserror"
    	"time"
    	"unicode/utf8"
    )
    
    // An FS provides access to a hierarchical file system.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 15 21:21:41 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. src/testing/fstest/mapfs.go

    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package fstest
    
    import (
    	"io"
    	"io/fs"
    	"path"
    	"slices"
    	"strings"
    	"time"
    )
    
    // A MapFS is a simple in-memory file system for use in tests,
    // represented as a map from path names (arguments to Open)
    // to information about the files or directories they represent.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top