Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 87 for EMBEDDED (0.03 seconds)

  1. internal/grid/grid_types_msgp_test.go

    					z.Embedded.Num, err = dc.ReadInt()
    					if err != nil {
    						err = msgp.WrapError(err, "Embedded", "Num")
    						return
    					}
    				case "String":
    					z.Embedded.String, err = dc.ReadString()
    					if err != nil {
    						err = msgp.WrapError(err, "Embedded", "String")
    						return
    					}
    				default:
    					err = dc.Skip()
    					if err != nil {
    						err = msgp.WrapError(err, "Embedded")
    						return
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 8.1K bytes
    - Click Count (0)
  2. schema/schema_test.go

    		{Name: "Name", DBName: "company_name", BindNames: []string{"Base", "Name"}, DataType: schema.String, TagSettings: map[string]string{"EMBEDDED": "EMBEDDED", "EMBEDDEDPREFIX": "company_"}},
    		{Name: "Ignored", BindNames: []string{"Base", "Ignored"}, TagSettings: map[string]string{"-": "-", "EMBEDDED": "EMBEDDED", "EMBEDDEDPREFIX": "company_"}},
    Created: Sun Dec 28 09:35:17 GMT 2025
    - Last Modified: Thu Aug 28 02:57:17 GMT 2025
    - 13.3K bytes
    - Click Count (0)
  3. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/ParserRequest.java

            }
    
            public Builder stdErr(OutputStream stdErr) {
                this.stdErr = stdErr;
                return this;
            }
    
            public Builder embedded(boolean embedded) {
                this.embedded = embedded;
                return this;
            }
    
            public ParserRequest build() {
                return new ParserRequestImpl(
                        command,
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sat Jun 07 06:22:47 GMT 2025
    - 15.9K bytes
    - Click Count (0)
  4. src/cmd/api/testdata/src/pkg/p1/golden.txt

    pkg p1, type S2 struct
    pkg p1, type S2 struct, Extra bool
    pkg p1, type S2 struct, embedded S
    pkg p1, type S2 struct, embedded S //deprecated
    pkg p1, type SI struct
    pkg p1, type SI struct, I int
    pkg p1, type T struct
    pkg p1, type TPtrExported struct
    pkg p1, type TPtrExported struct, embedded *Embedded
    pkg p1, type TPtrUnexported struct
    pkg p1, type Time struct
    pkg p1, type URL //deprecated
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Thu Jul 24 16:04:17 GMT 2025
    - 3.6K bytes
    - Click Count (0)
  5. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/InvokerRequest.java

         */
        boolean parsingFailed();
    
        /**
         * Returns {@code true} if this call happens in "embedded" mode.
         *
         * @see ParserRequest#embedded()
         */
        default boolean embedded() {
            return parserRequest().embedded();
        }
    
        /**
         * Returns the current working directory for the Maven execution.
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Jun 11 13:14:09 GMT 2025
    - 6.7K bytes
    - Click Count (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/PdfExtractor.java

                    logger.warn("Failed to parse annotation.", e);
                }
            }
        }
    
        /**
         * Extracts text from an embedded file using the appropriate extractor.
         * @param filename the filename of the embedded file
         * @param embeddedFile the embedded file to extract text from
         * @param writer the writer to append extracted text to
         */
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Sun Nov 23 12:19:14 GMT 2025
    - 12.8K bytes
    - Click Count (0)
  7. callbacks/preload.go

    				if relation.Schema == s {
    					setPreloadMap(relation.Name, value, args)
    				}
    			}
    
    			for embedded, embeddedRelations := range s.Relationships.EmbeddedRelations {
    				for _, value := range embeddedValues(embeddedRelations) {
    					setPreloadMap(embedded, value, args)
    				}
    			}
    		} else {
    			setPreloadMap(preloadFields[0], value, args)
    		}
    	}
    	return preloadMap
    }
    
    Created: Sun Dec 28 09:35:17 GMT 2025
    - Last Modified: Sun May 25 07:40:40 GMT 2025
    - 11.7K bytes
    - Click Count (0)
  8. schema/schema.go

    		return field
    	}
    
    	return nil
    }
    
    // LookUpFieldByBindName looks for the closest field in the embedded struct.
    //
    //	type Struct struct {
    //		Embedded struct {
    //			ID string // is selected by LookUpFieldByBindName([]string{"Embedded", "ID"}, "ID")
    //		}
    //		ID string // is selected by LookUpFieldByBindName([]string{"ID"}, "ID")
    //	}
    Created: Sun Dec 28 09:35:17 GMT 2025
    - Last Modified: Fri Oct 31 12:13:56 GMT 2025
    - 13.1K bytes
    - Click Count (0)
  9. android/guava-tests/test/com/google/common/net/PercentEscaperTest.java

        assertUnicodeEscaping(e, "%F4%8F%BF%BF", '\uDBFF', '\uDFFF');
    
        // simple string tests
        assertEquals("", e.escape(""));
        assertEquals("safestring", e.escape("safestring"));
        assertEquals("embedded%00null", e.escape("embedded\0null"));
        assertEquals("max%EF%BF%BFchar", e.escape("max\uffffchar"));
      }
    
      /** Tests the various ways that the space character can be handled */
      public void testPlusForSpace() {
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Wed Jul 16 20:34:52 GMT 2025
    - 5.3K bytes
    - Click Count (0)
  10. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

            val argProvider = objects.newInstance(AddOpensArgumentProvider::class.java).apply {
                jvmVersion = testJvmVersion.asInt()
                unitTest = provider { isUnitTest() }
                embedded = provider { usesEmbeddedExecuter() }
            }
            jvmArgumentProviders.add(argProvider)
        }
    }
    
    internal
    abstract class AddOpensArgumentProvider : CommandLineArgumentProvider {
        @get:Input
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Fri Dec 19 06:44:41 GMT 2025
    - 18.9K bytes
    - Click Count (0)
Back to Top