Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,477 for samples_ (0.37 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/AbstractContainerTester.java

      }
    
      protected final E e0() {
        return samples.e0();
      }
    
      protected final E e1() {
        return samples.e1();
      }
    
      protected final E e2() {
        return samples.e2();
      }
    
      protected final E e3() {
        return samples.e3();
      }
    
      protected final E e4() {
        return samples.e4();
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_require_exclude.txt

    ! go list -mod=readonly -m all
    stderr '^go: ignoring requirement on excluded version rsc.io/sampler v1\.99\.99$'
    stderr '^go: updates to go.mod needed, disabled by -mod=readonly; to update it:\n\tgo mod tidy$'
    ! stdout '^rsc.io/sampler v1.99.99'
    cmp go.mod go.mod.orig
    
    ! go list -mod=vendor -m rsc.io/sampler
    stderr '^go: ignoring requirement on excluded version rsc.io/sampler v1\.99\.99$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 14 15:02:11 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_get_downgrade.txt

    env GO111MODULE=on
    [short] skip
    
    # downgrade sampler should downgrade quote
    cp go.mod.orig go.mod
    go get rsc.io/sampler@v1.0.0
    go list -m all
    stdout 'rsc.io/quote v1.4.0'
    stdout 'rsc.io/sampler v1.0.0'
    
    # downgrade sampler away should downgrade quote further
    go get rsc.io/sampler@none
    go list -m all
    stdout 'rsc.io/quote v1.3.0'
    
    # downgrade should report inconsistencies and not change go.mod
    go get rsc.io/quote@v1.5.1
    go list -m all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/test_report_aggregation_plugin.adoc

    1. From the distribution's project, such as an application or WAR subproject -> link:../samples/sample_jvm_multi_project_with_test_aggregation_distribution.html[distribution sample]
    2. Using a standalone project to specify subprojects -> link:../samples/sample_jvm_multi_project_with_test_aggregation_standalone.html[standalone sample]
    
    Example 2 could also be used to aggregate results via the root project.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. samples/bookinfo/platform/kube/bookinfo.yaml

    #
    # To apply all 4 Bookinfo services, their corresponding service accounts, and deployments:
    #
    #   kubectl apply -f samples/bookinfo/platform/kube/bookinfo.yaml
    #
    # Alternatively, you can deploy any resource separately:
    #
    #   kubectl apply -f samples/bookinfo/platform/kube/bookinfo.yaml -l service=reviews # reviews Service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/kotlinDsl/androidSingleBuild/kotlin/src/androidTest/java/org/gradle/kotlin/dsl/samples/androidstudio/ExampleInstrumentedTest.kt

    package org.gradle.kotlin.dsl.samples.androidstudio
    
    import android.support.test.InstrumentationRegistry
    import android.support.test.runner.AndroidJUnit4
    
    import org.junit.Test
    import org.junit.runner.RunWith
    
    import org.junit.Assert.*
    
    /**
     * Instrumented test, which will execute on an Android device.
     *
     * See [testing documentation](http://d.android.com/tools/testing).
     */
    @RunWith(AndroidJUnit4::class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 688 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/composite_builds.adoc

    ====
    include::sample[dir="samples/build-organization/composite-builds/basic/kotlin",files="build.gradle.kts[tags=run]"]
    include::sample[dir="samples/build-organization/composite-builds/basic/groovy",files="build.gradle[tags=run]"]
    ====
    
    Or you can declare a dependency on tasks with a certain path in some or all of the included builds:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 02:23:19 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inject/ready_live.yaml

            - name: hello
              image: "fake.docker.io/google-samples/hello-go-gke:1.0"
              ports:
                - name: http
                  containerPort: 80
              livenessProbe:
                httpGet:
                  port: http
              readinessProbe:
                httpGet:
                  port: 3333
            - name: world
              image: "fake.docker.io/google-samples/hello-go-gke:1.0"
              ports:
                - name: http
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 18 21:43:45 UTC 2020
    - 956 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/kotlinDsl/androidBuild/kotlin/app/src/androidTest/java/org/gradle/kotlin/dsl/samples/androidstudio/ExampleInstrumentedTest.kt

    package org.gradle.kotlin.dsl.samples.androidstudio
    
    import android.support.test.InstrumentationRegistry
    import android.support.test.runner.AndroidJUnit4
    
    import org.junit.Test
    import org.junit.runner.RunWith
    
    import org.junit.Assert.*
    
    /**
     * Instrumented test, which will execute on an Android device.
     *
     * See [testing documentation](http://d.android.com/tools/testing).
     */
    @RunWith(AndroidJUnit4::class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 688 bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inject/two_container.yaml

          containers:
            - name: hello
              image: "fake.docker.io/google-samples/hello-go-gke:1.0"
              ports:
                - name: http
                  containerPort: 80
              readinessProbe:
                httpGet:
                  path: /ip
                  port: 8000
            - name: world
              image: "fake.docker.io/google-samples/hello-go-gke:1.0"
              ports:
                - name: http
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 18 21:43:45 UTC 2020
    - 816 bytes
    - Viewed (0)
Back to top