Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 102 for fastTest (0.57 sec)

  1. src/io/fs/walk_test.go

    	f(path, n)
    	for _, e := range n.entries {
    		walkTree(e, pathpkg.Join(path, e.name), f)
    	}
    }
    
    func makeTree() FS {
    	fsys := fstest.MapFS{}
    	walkTree(tree, tree.name, func(path string, n *Node) {
    		if n.entries == nil {
    			fsys[path] = &fstest.MapFile{}
    		} else {
    			fsys[path] = &fstest.MapFile{Mode: ModeDir}
    		}
    	})
    	return fsys
    }
    
    // Assumes that each node name is unique. Good enough for a test.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 15:21:18 UTC 2022
    - 3K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/eastwest-labelport.status.yaml.golden

    Frank Budinsky <******@****.***> 1699583427 -0500
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 10 02:30:27 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/DefaultImmutableCapability.java

            this.version = version;
    
            this.hashCode = computeHashcode(group, name, version);
    
            // Using a string instead of a plain ID here might look strange, but this turned out to be
            // the fastest of several experiments, including:
            //
            //    using ModuleIdentifier (initial implementation)
            //    using ModuleIdentifier through ImmutableModuleIdentifierFactory (for interning)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/FuturesGetChecked.java

        @J2ObjCIncompatible // ClassValue
        enum ClassValueValidator implements GetCheckedTypeValidator {
          INSTANCE;
    
          /*
           * Static final fields are presumed to be fastest, based on our experience with
           * UnsignedBytesBenchmark. TODO(cpovirk): benchmark this
           */
          private static final ClassValue<Boolean> isValidClass =
              new ClassValue<Boolean>() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. src/io/fs/readfile_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package fs_test
    
    import (
    	. "io/fs"
    	"os"
    	"testing"
    	"testing/fstest"
    	"time"
    )
    
    var testFsys = fstest.MapFS{
    	"hello.txt": {
    		Data:    []byte("hello, world"),
    		Mode:    0456,
    		ModTime: time.Now(),
    		Sys:     &sysValue,
    	},
    	"sub/goodbye.txt": {
    		Data:    []byte("goodbye, world"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 16:25:41 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. samples/multicluster/README.md

    Run the following command to deploy the east-west gateway to a primary cluster:
    
    ```bash
    export MESH=mesh1
    export CLUSTER=cluster1
    export NETWORK=network1
    ./samples/multicluster/gen-eastwest-gateway.sh | \
        istioctl manifest generate -f - | \
        kubectl apply -f -
    ```
    
    The `CLUSTER` and `NETWORK` environment variables should match the values used to deploy the control plane
    in that cluster.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 22 16:29:16 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  7. src/io/fs/readdir_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package fs_test
    
    import (
    	"errors"
    	. "io/fs"
    	"os"
    	"testing"
    	"testing/fstest"
    	"time"
    )
    
    type readDirOnly struct{ ReadDirFS }
    
    func (readDirOnly) Open(name string) (File, error) { return nil, ErrNotExist }
    
    func TestReadDir(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 16:25:41 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/eastwest-remote.status.yaml.golden

    Steven Landow <******@****.***> 1689628792 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 21:19:52 UTC 2023
    - 544 bytes
    - Viewed (0)
  9. src/net/http/filetransport_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package http
    
    import (
    	"io"
    	"os"
    	"path/filepath"
    	"testing"
    	"testing/fstest"
    )
    
    func checker(t *testing.T) func(string, error) {
    	return func(call string, err error) {
    		if err == nil {
    			return
    		}
    		t.Fatalf("%s: %v", call, err)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 17:07:12 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/conflict/FarthestConflictResolverTest.java

    class FarthestConflictResolverTest extends AbstractConflictResolverTest {
        // constructors -----------------------------------------------------------
    
        public FarthestConflictResolverTest() throws Exception {
            super("farthest");
        }
    
        // tests ------------------------------------------------------------------
    
        /**
         * Tests that <code>a:2.0</code> wins in the scenario:
         * <pre>
         * a:1.0
         * b:1.0 -&gt; a:2.0
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top