Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 71 for epstest (0.13 sec)

  1. src/cmd/asm/internal/asm/expr_test.go

    // license that can be found in the LICENSE file.
    
    package asm
    
    import (
    	"cmd/asm/internal/lex"
    	"strings"
    	"testing"
    	"text/scanner"
    )
    
    type exprTest struct {
    	input  string
    	output int64
    	atEOF  bool
    }
    
    var exprTests = []exprTest{
    	// Simple
    	{"0", 0, true},
    	{"3", 3, true},
    	{"070", 8 * 7, true},
    	{"0x0f", 15, true},
    	{"0xFF", 255, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. cmd/batch-expire_test.go

            greaterThan: 1MiB # match objects with size greater than this value (e.g. 1MiB)
          purge:
              # retainVersions: 0 # (default) delete all versions of the object. This option is the fastest.
              # retainVersions: 5 # keep the latest 5 versions of the object.
      
        - type: deleted # objects with delete marker as their latest version
          name: NAME # match object names that satisfy the wildcard expression.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/eastwest-tlsoption.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)
  4. src/cmd/go/testdata/script/mod_get_fossil.txt

    # and parsed correctly.
    # Verifies golang.org/issue/42323.
    
    
    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    
    # 'go get' for the fossil repo will fail if fossil
    # is unable to determine your fossil user. Easiest
    # way to set it for use by 'go get' is specifying
    # a any non-empty $USER; the value doesn't otherwise matter.
    env USER=fossiluser
    env FOSSIL_HOME=$WORK/home
    
    # Attempt to get the latest version of a fossil repo.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 773 bytes
    - Viewed (0)
  5. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/CppProjectInitDescriptor.java

            return Collections.singleton(BuildInitTestFramework.CPPTest);
        }
    
        @Override
        public BuildInitTestFramework getDefaultTestFramework(ModularizationOption modularizationOption) {
            return BuildInitTestFramework.CPPTest;
        }
    
        @Override
        public Optional<String> getFurtherReading(InitSettings settings) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 19:14:24 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/go/testdata/script/mod_go_version_missing.txt

    package m
    
    import _ "example.com/dep"
    
    const x = 1_000
    
    -- dep/go.mod --
    module example.com/dep
    
    require example.com/testdep v0.1.0
    -- dep/dep.go --
    package dep
    -- dep/dep_test.go --
    package dep_test
    
    import _ "example.com/testdep"
    
    -- testdep/go.mod --
    module example.com/testdep
    -- testdep/testdep.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 22 16:11:33 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/vcweb/vcstest/vcstest_test.go

    	"io"
    	"io/fs"
    	"log"
    	"net"
    	"net/http"
    	"net/http/httptest"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"strings"
    	"testing"
    	"time"
    )
    
    var (
    	dir  = flag.String("dir", "../../../testdata/vcstest", "directory containing scripts to serve")
    	host = flag.String("host", "localhost", "hostname on which to serve HTTP")
    	port = flag.Int("port", -1, "port on which to serve HTTP; if nonnegative, skips running tests")
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 11 16:04:21 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/modifiers/BuildInitTestFramework.java

        NONE("none"),
        JUNIT("JUnit 4"),
        TESTNG("TestNG"),
        SPOCK("Spock"),
        KOTLINTEST("kotlin.test"),
        SCALATEST("ScalaTest"),
        JUNIT_JUPITER("JUnit Jupiter"),
        XCTEST("XCTest"),
        CPPTest("C++ executable");
    
        public static List<String> listSupported() {
            List<String> result = new ArrayList<>();
            for (BuildInitTestFramework testFramework : values()) {
                if (testFramework != NONE) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 19:41:01 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/ListeningExecutorService.java

          Runnable task, @ParametricNullness T result);
    
      /**
       * {@inheritDoc}
       *
       * <p>All elements in the returned list must be {@link ListenableFuture} instances. The easiest
       * way to obtain a {@code List<ListenableFuture<T>>} from this method is an unchecked (but safe)
       * cast:
       *
       * <pre>
       *   {@code @SuppressWarnings("unchecked") // guaranteed by invokeAll contract}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 20:33:25 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top