Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 660 for tent (0.08 sec)

  1. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"telephone":                            "\u260e\ufe0f",
    	"telephone_receiver":                   "\U0001f4de",
    	"telescope":                            "\U0001f52d",
    	"tennis":                               "\U0001f3be",
    	"tent":                                 "\u26fa",
    	"test_tube":                            "\U0001f9ea",
    	"thailand":                             "\U0001f1f9\U0001f1ed",
    	"thermometer":                          "\U0001f321\ufe0f",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  2. cmd/test-utils_test.go

    	apiRouter http.Handler, credentials auth.Credentials, t *testing.T)
    
    // Regular object test type.
    type objTestType func(obj ObjectLayer, instanceType string, t TestErrHandler)
    
    // Special test type for test with directories
    type objTestTypeWithDirs func(obj ObjectLayer, instanceType string, dirs []string, t TestErrHandler)
    
    // Special object test type for disk not found situations.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  3. testing/performance/src/templates/project-with-source/Test.java

    package ${packageName};
    
    import static org.junit.Assert.*;
    
    public class ${testClassName} {
        private final ${productionClassName} production = new ${productionClassName}("value");
    
        @org.junit.Test
        public void test() {
            assertEquals(production.getProperty(), "value");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 294 bytes
    - Viewed (0)
  4. testing/performance/src/templates/with-junit/Test.java

        private final ${productionClassName} production = new ${productionClassName}("value");
    
    <% (binding.hasVariable("testMethodCount") ? testMethodCount : 20).times { index ->  %>
        @org.junit.Test
        public void test${index}() {
            assertEquals(production.getProperty(), "value");
        }
    <% } %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 399 bytes
    - Viewed (0)
  5. testing/performance/src/templates/with-testng/Test.java

    import static org.testng.Assert.*;
    
    public class ${testClassName} {
        private final ${productionClassName} production = new ${productionClassName}("value");
    
    <% 20.times { index -> %>
        @Test
        public void test${index}() {
            assertEquals(production.getProperty(), "value");
        }
    <% } %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 360 bytes
    - Viewed (0)
  6. .github/workflows/test.yml

          - name: Install Dependencies
            if: steps.cache.outputs.cache-hit != 'true'
            run: pip install -r requirements-tests.txt
          - name: Install Pydantic v2
            run: pip install "pydantic>=2.0.2,<3.0.0"
          - name: Lint
            run: bash scripts/lint.sh
    
      test:
        runs-on: ubuntu-latest
        strategy:
          matrix:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 10 00:30:25 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. fess-crawler/src/test/resources/extractor/program/test.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package com.foo.bar;
    
    public class Test {
        public String test="ใƒ†ใ‚นใƒˆ";
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 701 bytes
    - Viewed (0)
  8. src/cmd/go/internal/test/test.go

    test ./...', and even 'go test .'). In this mode, go test compiles
    and tests each of the packages listed on the command line. If a
    package test passes, go test prints only the final 'ok' summary
    line. If a package test fails, go test prints the full test output.
    If invoked with the -bench or -v flag, go test prints the full
    output even for passing package tests, in order to display the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  9. hack/make-rules/test.sh

            kube::test::usage
            exit 1
          fi
          ;;
        i)
          kube::log::usage "'$0': use GOFLAGS='-count <num-iterations>'"
          kube::test::usage
          exit 1
          ;;
        :)
          kube::log::usage "Option -${OPTARG} <value>"
          kube::test::usage
          exit 1
          ;;
        ?)
          kube::test::usage
          exit 1
          ;;
      esac
    done
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. testing/performance/src/templates/project-with-source/Test.groovy

    package ${packageName};
    
    
    import static org.junit.Assert.assertEquals
    
    public class ${testClassName} {
        private final ${productionClassName} production = new ${productionClassName}("value");
    
        @org.junit.Test
        public void test() {
            assertEquals(production.getProperty(), "value");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 305 bytes
    - Viewed (0)
Back to top