- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 30 for cname (0.03 sec)
-
tests/generics_test.go
} db.Where("?.name = ?", joinTable, u.Company.Name) return nil }).Where(map[string]any{"name": u.Name}).First(ctx) if err != nil { t.Fatalf("Joins failed: %v", err) } if result.Name != u.Name || result.Company.Name != u.Company.Name { t.Fatalf("Joins expected %s, got %+v", u.Name, result) } // Raw Subquery JOIN + WHERE
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Thu Sep 04 13:13:16 UTC 2025 - 28K bytes - Viewed (0) -
.github/workflows/scorecard.yml
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Sep 03 19:19:31 UTC 2025 - 2.9K bytes - Viewed (0) -
guava/src/com/google/common/reflect/Types.java
private final D genericDeclaration; private final String name; private final ImmutableList<Type> bounds; TypeVariableImpl(D genericDeclaration, String name, Type[] bounds) { disallowPrimitiveType(bounds, "bound for type variable"); this.genericDeclaration = checkNotNull(genericDeclaration); this.name = checkNotNull(name); this.bounds = ImmutableList.copyOf(bounds); } @Keep
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Sep 03 14:03:14 UTC 2025 - 23.5K bytes - Viewed (0) -
android/guava/src/com/google/common/reflect/Types.java
private final D genericDeclaration; private final String name; private final ImmutableList<Type> bounds; TypeVariableImpl(D genericDeclaration, String name, Type[] bounds) { disallowPrimitiveType(bounds, "bound for type variable"); this.genericDeclaration = checkNotNull(genericDeclaration); this.name = checkNotNull(name); this.bounds = ImmutableList.copyOf(bounds); } @Keep
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Sep 03 14:03:14 UTC 2025 - 23.6K bytes - Viewed (0) -
dbflute.xml
<?xml version="1.0" encoding="UTF-8"?> <project name="dbflute" basedir="."> <property name="mydbflute.dir" value="${basedir}/mydbflute" /> <property name="target.dir" value="${basedir}/target" /> <property name="branch.name" value="fess-15.2" /> <property name="mydbflute.url" value="https://github.com/lastaflute/lastaflute-example-waterfront/archive/${branch.name}.zip" /> <target name="mydbflute.check"> <condition property="mydbflute.exists">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Sep 04 05:20:20 UTC 2025 - 999 bytes - Viewed (0) -
.github/workflows/ci.yml
run: ./util/print_surefire_reports.sh - name: 'Set up Gradle' if: matrix.java == 11 # used only by the integration tests below uses: gradle/actions/setup-gradle@017a9effdb900e5b5b2fddfb590a105619dca3c3 # v4.4.2 - name: 'Integration Test' if: matrix.java == 11 shell: bash run: util/gradle_integration_tests.sh publish_snapshot: name: 'Publish snapshot' needs: test
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Sep 03 19:19:31 UTC 2025 - 4.7K bytes - Viewed (0) -
.github/workflows/publish.yml
uses: actions/setup-python@v5 with: python-version: "3.10" # Issue ref: https://github.com/actions/setup-python/issues/436 # cache: "pip" # cache-dependency-path: pyproject.toml - name: Install build dependencies run: pip install build - name: Build distribution env: TIANGOLO_BUILD_PACKAGE: ${{ matrix.package }}
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Sep 05 12:48:16 UTC 2025 - 1K bytes - Viewed (0) -
src/archive/tar/strconv_test.go
tests := []struct { name string in string want time.Time ok bool }{ { name: "NoNanos", in: "123456", want: time.Unix(123456, 0), ok: true, }, { name: "ExactNanos", in: "1.123456789", want: time.Unix(1, 123456789), ok: true, }, { name: "WithNanoPadding", in: "1.123",
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Sep 08 17:08:20 UTC 2025 - 15K bytes - Viewed (0) -
generics.go
jt.Table = clause.JoinTable(strings.Split(jt.Association, ".")...).Name } q := joinBuilder{db: db.Session(&Session{NewDB: true, Initialized: true}).Table(jt.Table)} if on != nil { if err := on(&q, clause.Table{Name: jt.Table}, clause.Table{Name: clause.CurrentTable}); err != nil { db.AddError(err) } } j := join{ Name: jt.Association, Alias: jt.Table,
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Thu Sep 04 13:13:16 UTC 2025 - 15.5K bytes - Viewed (0) -
WORKSPACE
# buildifier: disable=load-on-top workspace(name = "org_tensorflow") # buildifier: disable=load-on-top load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "rules_shell", sha256 = "bc61ef94facc78e20a645726f64756e5e285a045037c7a61f65af2941f4c25e1", strip_prefix = "rules_shell-0.4.1", url = "https://github.com/bazelbuild/rules_shell/releases/download/v0.4.1/rules_shell-v0.4.1.tar.gz", )
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Wed Sep 03 23:57:17 UTC 2025 - 4.4K bytes - Viewed (0)