Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,737 for Example (0.2 sec)

  1. src/net/http/requestwrite_test.go

    	4: {
    		Req: Request{
    			Method: "POST",
    			URL:    mustParseURL("http://example.com/"),
    			Host:   "example.com",
    			Header: Header{
    				"Content-Length": []string{"10"}, // ignored
    			},
    			ContentLength: 6,
    		},
    
    		Body: []byte("abcdef"),
    
    		WantWrite: "POST / HTTP/1.1\r\n" +
    			"Host: example.com\r\n" +
    			"User-Agent: Go-http-client/1.1\r\n" +
    			"Content-Length: 6\r\n" +
    			"\r\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 01:07:32 UTC 2022
    - 23.3K bytes
    - Viewed (0)
  2. src/net/smtp/smtp_test.go

    					break
    				}
    			}
    		}
    	}(strings.Split(server, "\r\n"))
    
    	err = SendMail(l.Addr().String(), nil, "test@example.com", []string{"other@example.com>\n\rDATA\r\nInjected message body\r\n.\r\nQUIT\r\n"}, []byte(strings.Replace(`From: test@example.com
    To: other@example.com
    Subject: SendMail test
    
    SendMail is working for me.
    `, "\n", "\r\n", -1)))
    	if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  3. docs/en/docs/deployment/concepts.md

    ### Example Tools to Run at Startup
    
    Some examples of the tools that can do this job are:
    
    * Docker
    * Kubernetes
    * Docker Compose
    * Docker in Swarm Mode
    * Systemd
    * Supervisor
    * Handled internally by a cloud provider as part of their services
    * Others...
    
    I'll give you more concrete examples in the next chapters.
    
    ## Restarts
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeDeclarationIntegrationTest.groovy

            given:
            def pluginBuilder = withSoftwareTypePlugins()
            pluginBuilder.publishAs("com", "example", "1.0", pluginPortal, createExecuter()).allowAll()
    
            file("settings.gradle.dcl") << """
                plugins {
                    id("com.example.test-software-type").version("1.0")
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 19 16:59:01 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r214/ToolingApiEclipseModelWtpClasspathAttributesCrossVersionSpec.groovy

        def setup() {
            MavenFileRepository mavenRepo = new MavenFileRepository(file("maven-repo"))
            MavenFileModule exampleApi = mavenRepo.module("org.example", "example-api", "1.0")
            MavenFileModule exampleLib = mavenRepo.module("org.example", "example-lib", "1.0")
            exampleLib.dependsOn(exampleApi)
            exampleApi.publish()
            exampleLib.publish()
            localMaven = "maven { url '${mavenRepo.uri}' }"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    matches <b>ALL</b> of the specified matchers. * <p/> * For example: * <pre>assertThat("myValue", allOf(startsWith("my"), containsString("Val")))</pre> */ public static <T> org.hamcrest.Matcher<T> allOf(java.lang.Iterable<org.hamcrest.Matcher<? super T>> matchers) { return org.hamcrest.core.AllOf.<T>allOf(matchers); } /** * Creates a matcher that matches if the examined object matches <b>ALL</b> of the specified matchers. * <p/> * For example: * <pre>assertThat("myValue", allOf(startsWith("my"), co...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 31.9K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/catalog/parser/TomlCatalogFileParserTest.groovy

            when:
            parse('plugin-notations')
    
            then:
            hasPlugin('simple', 'org.example', '1.0')
            hasPlugin('without.version', 'org.example', '')
            hasPlugin('with.id', 'org.example', '1.1')
            hasPlugin('with.ref') {
                withId 'org.example'
                withVersionRef 'ref'
                withVersion {
                    require '1.6'
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 05:41:21 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPublication.java

     *             name = "John Doe"
     *             email = "john.doe@example.com"
     *           }
     *         }
     *         scm {
     *           connection = "scm:svn:http://subversion.example.com/svn/project/trunk/"
     *           developerConnection = "scm:svn:https://subversion.example.com/svn/project/trunk/"
     *           url = "http://subversion.example.com/svn/project/trunk/"
     *         }
     *       }
     *     }
     *   }
     * }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/JavaLibraryInitIntegrationTest.groovy

    class JavaLibraryInitIntegrationTest extends AbstractJvmLibraryInitIntegrationSpec {
    
        public static final String SAMPLE_LIBRARY_CLASS = "org/example/Library.java"
        public static final String SAMPLE_LIBRARY_TEST_CLASS = "org/example/LibraryTest.java"
        public static final String SAMPLE_SPOCK_LIBRARY_TEST_CLASS = "org/example/LibraryTest.groovy"
    
        def "defaults to Kotlin build scripts"() {
            when:
            run ('init', '--type', 'java-library' )
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 11.8K bytes
    - Viewed (1)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskInputFilePropertiesIntegrationTest.groovy

                    .value("task ':dependencyTask'")
                    .cannotBeConvertedTo(targetType)
                    .candidates(
                        "a String or CharSequence path, for example 'src/main/java' or '/usr/include'",
                        "a String or CharSequence URI, for example 'file:/usr/include'",
                        "a File instance",
                        "a Path instance",
                        "a Directory instance",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top