Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for execG (0.02 sec)

  1. generics.go

    	}
    }
    
    type execG[T any] struct {
    	g *g[T]
    }
    
    func (g execG[T]) First(ctx context.Context) (T, error) {
    	var r T
    	err := g.g.apply(ctx).First(&r).Error
    	return r, err
    }
    
    func (g execG[T]) Scan(ctx context.Context, result interface{}) error {
    	var r T
    	err := g.g.apply(ctx).Model(r).Find(result).Error
    	return err
    }
    
    func (g execG[T]) Last(ctx context.Context) (T, error) {
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Thu Sep 04 13:13:16 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  2. tests/generics_test.go

    	name := "GenericsExec"
    	if err := gorm.G[User](DB).Exec(ctx, "INSERT INTO users(name) VALUES(?)", name); err != nil {
    		t.Fatalf("Exec insert failed: %v", err)
    	}
    
    	name2 := "GenericsExec2"
    	if err := gorm.G[User](DB).Exec(ctx, "INSERT INTO ?(name) VALUES(?)", clause.Table{Name: clause.CurrentTable}, name2); err != nil {
    		t.Fatalf("Exec insert failed: %v", err)
    	}
    
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Thu Sep 04 13:13:16 UTC 2025
    - 28K bytes
    - Viewed (0)
  3. android/pom.xml

              <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>exec-maven-plugin</artifactId>
                <version>3.5.0</version>
                <executions>
                  <execution>
                    <id>print-java-11-home</id>
                    <phase>initialize</phase>
                    <goals>
                      <goal>exec</goal>
                    </goals>
                    <configuration>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 24.3K bytes
    - Viewed (0)
  4. pom.xml

              <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>exec-maven-plugin</artifactId>
                <version>3.5.0</version>
                <executions>
                  <execution>
                    <id>print-java-11-home</id>
                    <phase>initialize</phase>
                    <goals>
                      <goal>exec</goal>
                    </goals>
                    <configuration>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 23.9K bytes
    - Viewed (0)
  5. docs/en/docs/release-notes.md

    * 📝 Add note in Docker docs about ensuring graceful shutdowns and lifespan events with `CMD` exec form. PR [#11960](https://github.com/fastapi/fastapi/pull/11960) by [@GPla](https://github.com/GPla).
    
    ### Translations
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Sep 05 12:48:45 UTC 2025
    - 544.1K bytes
    - Viewed (0)
Back to top