Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,721 for sample2 (0.16 sec)

  1. platforms/documentation/docs/src/snippets/signing/gnupg-signatory/kotlin/src/main/java/Sample.java

    class Sample {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/ivy-publish/conditional-publishing/groovy/src/main/java/Sample.java

    class Sample {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17 bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/profile/filter.go

    			matched = true
    		}
    	}
    	// For all samples, strip locations after the highest matching one.
    	s := make([]*Sample, 0, len(p.Sample))
    	for _, sample := range p.Sample {
    		for i := len(sample.Location) - 1; i >= 0; i-- {
    			if showFromLocs[sample.Location[i].ID] {
    				sample.Location = sample.Location[:i+1]
    				s = append(s, sample)
    				break
    			}
    		}
    	}
    	p.Sample = s
    	return matched
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AutoTestedSamplesUtil.groovy

            String text = file.text
            def samples = SAMPLE_START.matcher(text)
            while (samples.find()) {
                def tagSuffix = samples.group(1)
                def start = samples.end()
                def end = text.indexOf("</pre>", start)
                def sample = text.substring(start, end)
                sample = LEADING_ASTERISK_PATTERN.matcher(sample).replaceAll('')
                sample = sample.replace('&lt;', '<')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/spring-boot-web-application/README.adoc

    NOTE: You can open this sample inside an IDE using the https://www.jetbrains.com/help/idea/gradle.html#gradle_import_project_start[IntelliJ native importer] or https://projects.eclipse.org/projects/tools.buildship[Eclipse Buildship].
    
    This sample shows how a Spring Boot Web application can be built with Gradle.
    The application was generated using the https://start.spring.io/#!type=gradle-project[Spring Initializr].
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/readme-templates/native-library-body.adoc.template

    To build a static library, please refer to the https://github.com/gradle/native-samples/tree/master/cpp/static-library[static library sample].
    
    NOTE: Dependencies on other projects isn't covered in this guide.
    To learn more about this subject, have a look at the https://github.com/gradle/native-samples/tree/master/cpp/transitive-dependencies[transitive dependency sample] for a demonstration.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. releasenotes/notes/dynatrace-sampler.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    issue:
    - 50001
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 20:27:07 UTC 2024
    - 196 bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest.groovy

            def samples = []
            new File(baseUrl.toURI()).eachFile {
                samples.addAll(it.listFiles() as List)
            }
    
            String filter = System.getProperty('org.gradle.internal.test.moduleMetadataSerializerFilter', null)
            if (filter) {
                samples = samples.findAll { it =~ filter }
            }
            samples
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/java/sourceSets-badConfNames/tests/sanityCheck.sample.conf

    executable: gradle
    args: tasks
    # Do not fail for deprecation warnings: This sample exists to demonstrate them.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 140 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/toolingApi/customModel/tests/sanityCheck.sample.conf

    commands: [{
        execution-subdirectory: plugin
        executable: gradle
        args: publish
    },{
        execution-subdirectory: sample-build
        executable: gradle
        args: tasks
    },{
        execution-subdirectory: tooling
        executable: gradle
        args: tasks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 255 bytes
    - Viewed (0)
Back to top