Search Options

Results per page
Sort
Preferred Languages
Advance

Results 271 - 280 of 447 for spice (0.02 sec)

  1. samples/guide/src/main/java/okhttp3/recipes/kt/WiresharkExample.kt

    1. .build()
    2. val googleRequest =
    3. Request.Builder()
    4. .url("https://www.google.com/robots.txt?s=g")
    5. .build()
    6.  
    7. try {
    8. for (i in 1..2) {
    9. // Space out traffic to make it easier to demarcate.
    10. sendTestRequest(fbRequest)
    11. Thread.sleep(1000)
    12. sendTestRequest(twitterRequest)
    13. Thread.sleep(1000)
    14. 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)
  2. cni/pkg/repair/repair_test.go

    1. },
    2. makeDetectPod(
    3. "TerminationMessageMatchTrue",
    4. "Termination Message",
    5. 0),
    6. true,
    7. },
    8. {
    9. "Check termination message match true for trailing and leading space",
    10. config.RepairConfig{
    11. SidecarAnnotation: "sidecar.istio.io/status",
    12. InitContainerName: constants.ValidationContainerName,
    13. InitTerminationMsg: " Termination Message",
    14. },
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. compat/maven-embedder/src/main/java/org/apache/maven/cli/props/MavenProperties.java

    1. private static final String COMMENT_CHARS = "#!";
    2.  
    3. /** The list of possible key/value separators */
    4. private static final char[] SEPARATORS = new char[] {'=', ':'};
    5.  
    6. /** The white space characters used as key/value separators. */
    7. private static final char[] WHITE_SPACE = new char[] {' ', '\t', '\f'};
    8.  
    9. /**
    10. * Unless standard java props, use UTF-8
    11. */
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  4. schema/field.go

    1. if field.HasDefaultValue && !skipParseDefaultValue && field.DataType == Time {
    2. if t, err := now.Parse(field.DefaultValue); err == nil {
    3. field.DefaultValueInterface = t
    4. }
    5. }
    6. case reflect.Array, reflect.Slice:
    7. if reflect.Indirect(fieldValue).Type().Elem() == ByteReflectType && field.DataType == "" {
    8. field.DataType = Bytes
    9. }
    10. }
    11.  
    12. 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)
  5. guava-testlib/src/com/google/common/collect/testing/FeatureSpecificTestSuiteBuilder.java

    1. * semantics of an implementation disagree in unforeseen ways with the semantics expected by a
    2. * test, or to keep dependent builds clean in spite of an erroneous test.
    3. */
    4. @CanIgnoreReturnValue
    5. public B suppressing(Method... methods) {
    6. return suppressing(asList(methods));
    7. }
    8.  
    9. @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)
  6. callbacks/query.go

    1. queryFields := db.QueryFields
    2. if !queryFields {
    3. switch db.Statement.ReflectValue.Kind() {
    4. case reflect.Struct:
    5. queryFields = db.Statement.ReflectValue.Type() != db.Statement.Schema.ModelType
    6. case reflect.Slice:
    7. queryFields = db.Statement.ReflectValue.Type().Elem() != db.Statement.Schema.ModelType
    8. }
    9. }
    10.  
    11. if queryFields {
    12. stmt := gorm.Statement{DB: db}
    13. // 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)
  7. android/guava/src/com/google/common/collect/Multiset.java

    1. * for this entry is one, this is simply the string representation of the corresponding element.
    2. * Otherwise, it is the string representation of the element, followed by the three characters
    3. * {@code " x "} (space, letter x, space), followed by the count.
    4. */
    5. @Override
    6. String toString();
    7. }
    8.  
    9. // Comparison and hashing
    10.  
    11. /**
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  8. docs/pt/docs/python-types.md

    1. Em seguida, tente com o velho amigo do programador, o preenchimento automático do editor.
    2.  
    3. 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.
    4.  
    5. Mas, infelizmente, você não obtém nada útil:
    6.  
    7. <img src="/img/python-types/image01.png">
    8.  
    9. ### Adicionar tipos
    10.  
    11. 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)
  9. istioctl/pkg/admin/istiodconfig.go

    1. type scopeLogLevel struct {
    2. ScopeName string `json:"scope_name"`
    3. LogLevel string `json:"log_level"`
    4. Description string `json:"description"`
    5. }
    6. allScopes, err := ga.client.GetScopes()
    7. sort.Slice(allScopes, func(i, j int) bool {
    8. return allScopes[i].Name < allScopes[j].Name
    9. })
    10. if err != nil {
    11. return fmt.Errorf("could not get scopes information: %v", err)
    12. }
    13. 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)
  10. guava/src/com/google/common/util/concurrent/Striped.java

    1. return array.length;
    2. }
    3. }
    4.  
    5. /**
    6. * Implementation of Striped where up to 2^k stripes can be represented, using an
    7. * AtomicReferenceArray of size 2^k. To map a user key into a stripe, we take a k-bit slice of the
    8. * user key's (smeared) hashCode(). The stripes are lazily initialized and are weakly referenced.
    9. */
    10. @VisibleForTesting
    11. 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)
Back to top