Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,416 for sample2 (0.3 sec)

  1. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/dependencymanagement/SamplesResolutionStrategyIntegrationTest.groovy

        @Rule
        Sample sample = new Sample(testDirectoryProvider)
    
        @UsesSample("dependencyManagement/customizingResolution-resolutionStrategy")
        def "can resolve dependencies in #dsl dsl"() {
            TestFile dslDir = sample.dir.file(dsl)
            executer.inDirectory(dslDir)
    
            mavenRepo.module("org", "foo").publish()
            mavenRepo.module("org", "bar").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/SamplesApplicationIntegrationTest.groovy

        @Rule Sample sample = new Sample(temporaryFolder, 'java/application')
    
        def setup() {
            executer.withRepositoryMirrors()
        }
    
        def "can run the application using run task with #dsl dsl"() {
            when:
            executer.inDirectory(sample.dir.file(dsl))
            succeeds('run')
    
            then:
            outputContains('Greetings from the sample application.')
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. src/runtime/pprof/protomem_test.go

    	const expectedLocationNewInliner = "runtime/pprof.TestGenericsInlineLocations;" + expectedLocation
    	var s *profile.Sample
    	for _, sample := range p.Sample {
    		if sampleToString(sample) == expectedSample {
    			s = sample
    			break
    		}
    	}
    	if s == nil {
    		t.Fatalf("expected \n%s\ngot\n%s", expectedSample, strings.Join(profileToStrings(p), "\n"))
    	}
    	loc := s.Location[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/plugins/consuming/common/maven-repo/com/example/sample-plugins/1.0.0/sample-plugins-1.0.0.pom

      <!-- that they should prefer consuming it instead. -->
      <!-- do_not_remove: published-with-gradle-metadata -->
      <modelVersion>4.0.0</modelVersion>
      <groupId>com.example</groupId>
      <artifactId>sample-plugins</artifactId>
      <version>1.0.0</version>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 755 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/plugins/multiproject/common/maven-repo/com/example/sample-plugins/1.0.0/sample-plugins-1.0.0.pom

      <!-- that they should prefer consuming it instead. -->
      <!-- do_not_remove: published-with-gradle-metadata -->
      <modelVersion>4.0.0</modelVersion>
      <groupId>com.example</groupId>
      <artifactId>sample-plugins</artifactId>
      <version>1.0.0</version>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 755 bytes
    - Viewed (0)
  6. samples/websockets/README.md

        ```command
        kubectl create -f <(istioctl kube-inject -f samples/websockets/app.yaml)
        ```
    
        - With automatic sidecar injection
    
        ```command
        kubectl create -f samples/websockets/app.yaml
        ```
    
    1. Create the Ingress `Gateway` and `VirtualService` that enables the upgrade to Websocket for incoming traffic:
    
        ```command
        kubectl create -f samples/websockets/route.yaml
        ```
    
    ## Test
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 14 20:15:07 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docsTest/java/org/gradle/docs/samples/IntegrationTestSamplesRunnerTest.java

            IntegrationTestSamplesRunner runner = new IntegrationTestSamplesRunner(Sample.class);
            RunNotifier notifier = new RunNotifier();
            List<Failure> capturedFailures = new ArrayList<>();
            Sample errorThrowingSample = new Sample("test-sample", new File(""), emptyList()) {
                @Override
                public List<Command> getCommands() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/api/internal/DocumentationRegistry.java

        }
    
        public String getSampleIndex() {
            return BASE_URL + "/samples";
        }
    
        public String getSampleFor(String id) {
            return String.format(getSampleIndex() + "/sample_%s.html", id);
        }
    
        public String getSampleForMessage(String id) {
            return LEARN_MORE_STRING + getSampleFor(id);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 14:14:56 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    	"divide_by": helpText(
    		"Ratio to divide all samples before visualization",
    		"Divide all samples values by a constant, eg the number of processors or jobs."),
    	"mean": helpText(
    		"Average sample value over first value (count)",
    		"For memory profiles, report average memory per allocation.",
    		"For time-based profiles, report average time per event."),
    	"sample_index": helpText(
    		"Sample value to report (0-based index or name)",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/dependencymanagement/SamplesDeclaringDependenciesIntegrationTest.groovy

        private static final String COPY_LIBS_TASK_NAME = 'copyLibs'
    
        @Rule
        Sample sample = new Sample(testDirectoryProvider)
    
        @UsesSample("dependencyManagement/declaringDependencies-concreteVersion")
        def "can use declare and resolve dependency with concrete version with #dsl dsl"() {
            TestFile dslDir = sample.dir.file(dsl)
            executer.inDirectory(dslDir)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top