Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,056 for Example (0.14 sec)

  1. tensorflow/compiler/mlir/tfr/ir/tfr_ops.td

        the same symbol scope as the callee. The operands and result types of the
        call must match the specified function type. The callee is encoded as a
        symbol reference attribute named "callee".
    
        Example:
    
        ```mlir
        %2 = tfr.call @my_add(%0, %1) : (tfr.tensor, f32) -> tfr.tensor_list
        ```
    
        Note that the operands of the `call` operation can only be with tfr.tensor,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 10:54:29 UTC 2024
    - 17.4K 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. 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)
  6. 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)
  7. 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)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/fieldselector_test.go

    	}
    
    	currentAPIVersion := u.GetAPIVersion()
    
    	if currentAPIVersion == "tests.example.com/v1beta1" && desiredAPIVersion == "tests.example.com/v1" {
    		spec := u.Object["spec"].(map[string]any)
    		spec["color"] = spec["hue"]
    		delete(spec, "hue")
    	} else if currentAPIVersion == "tests.example.com/v1" && desiredAPIVersion == "tests.example.com/v1beta1" {
    		spec := u.Object["spec"].(map[string]any)
    		spec["hue"] = spec["color"]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 15:53:03 UTC 2024
    - 27K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-test-report-aggregation/src/integTest/groovy/org/gradle/api/plugins/TestReportAggregationPluginIntegrationTest.groovy

        }
    
        def "Only one suite with a given test type allowed per project"() {
            file("src/primaryIntTest/java/com/example/FooTest.java") << "package com.example; class FooTest {}"
            file("src/secondaryIntTest/java/com/example/FooTest.java") << "package com.example; class FooTest {}"
    
            file("application/build.gradle") << """
                apply plugin: 'org.gradle.test-report-aggregation'
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/validation/validation_test.go

    		".",
    		"...",
    		"/b",
    		"com",
    		".com",
    		"a.b.c.d/foo?a=b",
    		"a.b.c.d/foo#a",
    		"Dev.k8s.io",
    		".foo.example.com",
    		"*.example.com",
    		"example.com/foo{}[]@^`",
    		"underscores_are_bad.k8s.io",
    		"underscores_are_bad.k8s.io/foo",
    		"foo@bar.example.com",
    		"foo@bar.example.com/foo",
    		strings.Repeat("a", 247) + ".k8s.io",
    	}
    	for _, val := range badValues {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 04:51:54 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top