Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 96 for Hellox (0.08 sec)

  1. chainable_api.go

    )
    
    // Model specify the model you would like to run db operations
    //
    //	// update all users's name to `hello`
    //	db.Model(&User{}).Update("name", "hello")
    //	// if user's primary key is non-blank, will use it as condition, then will only update that user's name to `hello`
    //	db.Model(&user).Update("name", "hello")
    func (db *DB) Model(value interface{}) (tx *DB) {
    	tx = db.getInstance()
    	tx.Statement.Model = value
    	return
    }
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:47:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/serving_test.go

    }
    
    func TestServerRunWithSNI(t *testing.T) {
    	tests := map[string]struct {
    		Cert              TestCertSpec
    		SNICerts          []NamedTestCertSpec
    		ExpectedCertIndex int
    
    		// passed in the client hello info, "localhost" if unset
    		ServerName string
    
    		// optional ip or hostname to pass to NewLoopbackClientConfig
    		LoopbackClientBindAddressOverride string
    	}{
    		"only one cert": {
    			Cert: TestCertSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 15:52:39 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    include::sample[dir="snippets/plugins/multiproject/groovy", files="settings.gradle[tags=include-subprojects];build.gradle[tags=plugins-on-subprojects];hello-a/build.gradle[];hello-b/build.gradle[];goodbye-c/build.gradle[]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/custom_plugins.adoc

    [[sec:writing_a_simple_plugin]]
    The following sample creates a `GreetingPlugin`, which adds a `hello` task to a project when applied:
    
    ====
    include::sample[dir="snippets/customPlugins/customPlugin/kotlin",files="build.gradle.kts[tag=no-script-plugin]"]
    include::sample[dir="snippets/customPlugins/customPlugin/groovy",files="build.gradle[tag=no-script-plugin]"]
    ====
    
    ----
    $ gradle -q hello
    include::{snippetsPath}/customPlugins/customPlugin/tests/customPlugin.out[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/test/test.go

    void G18298(T18298_1 t) {
    }
    
    // issue 18126
    // cgo check of void function returning errno.
    void Issue18126C(void **p) {}
    
    // issue 18720
    
    #define HELLO "hello"
    #define WORLD "world"
    #define HELLO_WORLD HELLO "\000" WORLD
    
    struct foo { char c; };
    #define SIZE_OF(x) sizeof(x)
    #define SIZE_OF_FOO SIZE_OF(struct foo)
    #define VAR1 VAR
    #define VAR var
    int var = 5;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoriesDeclaredInSettingsIntegrationTest.groovy

            pluginPortal.start()
            def taskName = 'pluginTask'
            def message = 'hello from plugin'
            def plugin = new PluginBuilder(testDirectory.file("some-plugin"))
                .addPluginWithPrintlnTask(taskName, message, 'org.gradle.test.hello-world')
                .publishAs("g", "a", "1.0", pluginPortal, createExecuter())
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  7. cmd/auth-handler_test.go

    		// Short Content-Md5 header.
    		{mustNewSignedShortMD5Request(http.MethodPut, "http://127.0.0.1:9000/", 5, bytes.NewReader([]byte("hello")), t), ErrInvalidDigest},
    		// When request is properly signed, but has bad Content-MD5 header.
    		{mustNewSignedBadMD5Request(http.MethodPut, "http://127.0.0.1:9000/", 5, bytes.NewReader([]byte("hello")), t), ErrBadDigest},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. pkg/apis/resource/validation/validation_resourceclaimtemplate_test.go

    			template: func() *resource.ResourceClaimTemplate {
    				template := testClaimTemplate(goodName, goodNS, goodClaimSpec)
    				template.Labels = map[string]string{
    					"hello-world": badValue,
    				}
    				return template
    			}(),
    		},
    		"good-annotations": {
    			template: func() *resource.ResourceClaimTemplate {
    				template := testClaimTemplate(goodName, goodNS, goodClaimSpec)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    	// target type.
    	//
    	// TODO(findleyr): this error code and example are not very clear. Consider
    	// removing it.
    	//
    	// Example:
    	//  const _ = 1 << "hello"
    	InvalidConstVal
    
    	// InvalidConstType occurs when the underlying type in a const declaration
    	// is not a valid constant type.
    	//
    	// Example:
    	//  const c *int = 4
    	InvalidConstType
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
  10. cmd/object-api-utils_test.go

    	}
    
    	objectName := `\../.minio.sys/config/hello.txt`
    
    	// initialize HTTP NewRecorder, this records any mutations to response writer inside the handler.
    	rec := httptest.NewRecorder()
    	// construct HTTP request for Get Object end point.
    	req, err := newTestSignedRequestV4(http.MethodPut, getPutObjectURL("", bucketName, objectName),
    		int64(5), bytes.NewReader([]byte("hello")), credentials.AccessKey, credentials.SecretKey, map[string]string{})
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top