- Sort Score
- Result 10 results
- Languages All
Results 321 - 330 of 1,037 for passe (0.02 sec)
-
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
} } } catch (ParseException e) { System.err.println("Unable to parse maven.config file options: " + e.getMessage()); cliManager.displayHelp(System.out); throw e; } try { CommandLine mavenCli = cliManager.parse(cliRequest.args); if (mavenConfig == null) { cliRequest.commandLine = mavenCli;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 76.8K bytes - Viewed (0) -
guava/src/com/google/common/base/Objects.java
* {@link Object#equals(Object)}. * <li>{@code false} in all other situations. * </ul> * * <p>This assumes that any non-null objects passed to this function conform to the {@code * equals()} contract. * * <p><b>Note:</b> this method is now unnecessary and should be treated as deprecated; use {@link * java.util.Objects#equals} instead. */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Jul 22 19:03:12 UTC 2024 - 3K bytes - Viewed (0) -
tests/test_tutorial/test_body_multiple_params/test_tutorial001.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Apr 18 19:40:57 UTC 2024 - 7.5K bytes - Viewed (0) -
tests/test_tutorial/test_body_multiple_params/test_tutorial001_an_py310.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Apr 18 19:40:57 UTC 2024 - 7.6K bytes - Viewed (0) -
schema/index.go
} type IndexOption struct { *Field Expression string Sort string // DESC, ASC Collate string Length int priority int } // ParseIndexes parse schema indexes func (schema *Schema) ParseIndexes() map[string]Index { indexes := map[string]Index{} for _, field := range schema.Fields { if field.TagSettings["INDEX"] != "" || field.TagSettings["UNIQUEINDEX"] != "" {
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Sun Feb 04 07:49:19 UTC 2024 - 3.7K bytes - Viewed (0) -
tests/embedded_struct_test.go
if !DB.Migrator().HasColumn(&EngadgetPost{}, name) { t.Errorf("should has prefixed column %v", name) } } stmt := gorm.Statement{DB: DB} if err := stmt.Parse(&EngadgetPost{}); err != nil { t.Fatalf("failed to parse embedded struct") } else if len(stmt.Schema.PrimaryFields) != 1 { t.Errorf("should have only one primary field with embedded struct, but got %v", len(stmt.Schema.PrimaryFields)) }
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Wed May 08 04:07:58 UTC 2024 - 7.3K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/AssembleDslDocTask.groovy
@OutputFile abstract RegularFileProperty getLinksFile(); @TaskAction def transform() { XIncludeAwareXmlProvider provider = new XIncludeAwareXmlProvider() provider.parse(sourceFile.get().asFile) transformDocument(provider.document) provider.write(destFile.get().asFile) } private def transformDocument(Document mainDocbookTemplate) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 9.8K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type1Message.java
* @throws IOException * If an error occurs while parsing the material. */ public Type1Message ( byte[] material ) throws IOException { parse(material); } /** * Returns the default flags for a generic Type-1 message in the * current environment. * * @param tc * context to use
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Sep 02 12:55:08 UTC 2018 - 7.8K bytes - Viewed (0) -
istioctl/pkg/admin/istiodconfig_test.go
} if !reflect.DeepEqual(got, tt.want) { t.Errorf("newScopeStackTraceLevelPair() got = %v, want %v", got, tt.want) } }) } } func Test_chooseClientFlag(t *testing.T) { url, _ := url.Parse("http://localhost/scopej/resource") ctrzClient := &ControlzClient{ baseURL: url, httpClient: &http.Client{}, } type args struct { ctrzClient *ControlzClient reset bool
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Jun 15 15:02:17 UTC 2023 - 6.2K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/mvn/forked/ForkedMavenInvokerRequest.java
* * @since 4.0.0 */ @Experimental public interface ForkedMavenInvokerRequest extends MavenInvokerRequest<MavenOptions> { /** * Returns the list of extra JVM arguments to be passed to the forked Maven process. * These arguments allow for customization of the JVM environment in which Maven will run. * * @return an Optional containing the list of extra JVM arguments, or empty if not specified
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Oct 03 16:03:55 UTC 2024 - 1.7K bytes - Viewed (0)