- Sort Score
- Result 10 results
- Languages All
Results 271 - 280 of 447 for spice (0.02 sec)
-
samples/guide/src/main/java/okhttp3/recipes/kt/WiresharkExample.kt
- .build()
- val googleRequest =
- Request.Builder()
- .url("https://www.google.com/robots.txt?s=g")
- .build()
- try {
- for (i in 1..2) {
- // Space out traffic to make it easier to demarcate.
- sendTestRequest(fbRequest)
- Thread.sleep(1000)
- sendTestRequest(twitterRequest)
- Thread.sleep(1000)
- sendTestRequest(googleRequest)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 10.7K bytes - Viewed (0) -
cni/pkg/repair/repair_test.go
- },
- makeDetectPod(
- "TerminationMessageMatchTrue",
- "Termination Message",
- 0),
- true,
- },
- {
- "Check termination message match true for trailing and leading space",
- config.RepairConfig{
- SidecarAnnotation: "sidecar.istio.io/status",
- InitContainerName: constants.ValidationContainerName,
- InitTerminationMsg: " Termination Message",
- },
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Oct 24 03:31:28 UTC 2023 - 10.6K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/props/MavenProperties.java
- private static final String COMMENT_CHARS = "#!";
- /** The list of possible key/value separators */
- private static final char[] SEPARATORS = new char[] {'=', ':'};
- /** The white space characters used as key/value separators. */
- private static final char[] WHITE_SPACE = new char[] {' ', '\t', '\f'};
- /**
- * Unless standard java props, use UTF-8
- */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 38.2K bytes - Viewed (0) -
schema/field.go
- if field.HasDefaultValue && !skipParseDefaultValue && field.DataType == Time {
- if t, err := now.Parse(field.DefaultValue); err == nil {
- field.DefaultValueInterface = t
- }
- }
- case reflect.Array, reflect.Slice:
- if reflect.Indirect(fieldValue).Type().Elem() == ByteReflectType && field.DataType == "" {
- field.DataType = Bytes
- }
- }
- if dataTyper, ok := fieldValue.Interface().(GormDataTypeInterface); ok {
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Mon Apr 15 03:20:20 UTC 2024 - 32K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/FeatureSpecificTestSuiteBuilder.java
- * semantics of an implementation disagree in unforeseen ways with the semantics expected by a
- * test, or to keep dependent builds clean in spite of an erroneous test.
- */
- @CanIgnoreReturnValue
- public B suppressing(Method... methods) {
- return suppressing(asList(methods));
- }
- @CanIgnoreReturnValue
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 10.4K bytes - Viewed (0) -
callbacks/query.go
- queryFields := db.QueryFields
- if !queryFields {
- switch db.Statement.ReflectValue.Kind() {
- case reflect.Struct:
- queryFields = db.Statement.ReflectValue.Type() != db.Statement.Schema.ModelType
- case reflect.Slice:
- queryFields = db.Statement.ReflectValue.Type().Elem() != db.Statement.Schema.ModelType
- }
- }
- if queryFields {
- stmt := gorm.Statement{DB: db}
- // smaller struct
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Thu Aug 22 11:03:42 UTC 2024 - 10.1K bytes - Viewed (1) -
android/guava/src/com/google/common/collect/Multiset.java
- * for this entry is one, this is simply the string representation of the corresponding element.
- * Otherwise, it is the string representation of the element, followed by the three characters
- * {@code " x "} (space, letter x, space), followed by the count.
- */
- @Override
- String toString();
- }
- // Comparison and hashing
- /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Jun 17 14:40:53 UTC 2023 - 19.7K bytes - Viewed (0) -
docs/pt/docs/python-types.md
- Em seguida, tente com o velho amigo do programador, o preenchimento automático do editor.
- Você digita o primeiro parâmetro da função, `first_name`, depois um ponto (`.`) e, em seguida, pressiona `Ctrl + Space` para acionar a conclusão.
- Mas, infelizmente, você não obtém nada útil:
- <img src="/img/python-types/image01.png">
- ### Adicionar tipos
- Vamos modificar uma única linha da versão anterior.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Oct 15 12:32:27 UTC 2024 - 18K bytes - Viewed (0) -
istioctl/pkg/admin/istiodconfig.go
- type scopeLogLevel struct {
- ScopeName string `json:"scope_name"`
- LogLevel string `json:"log_level"`
- Description string `json:"description"`
- }
- allScopes, err := ga.client.GetScopes()
- sort.Slice(allScopes, func(i, j int) bool {
- return allScopes[i].Name < allScopes[j].Name
- })
- if err != nil {
- return fmt.Errorf("could not get scopes information: %v", err)
- }
- var resultScopeLogLevel []*scopeLogLevel
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Sat Apr 13 05:23:38 UTC 2024 - 13.5K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/Striped.java
- return array.length;
- }
- }
- /**
- * Implementation of Striped where up to 2^k stripes can be represented, using an
- * AtomicReferenceArray of size 2^k. To map a user key into a stripe, we take a k-bit slice of the
- * user key's (smeared) hashCode(). The stripes are lazily initialized and are weakly referenced.
- */
- @VisibleForTesting
- static class SmallLazyStriped<L> extends PowerOfTwoStriped<L> {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jun 26 12:58:35 UTC 2024 - 20.6K bytes - Viewed (0)