Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 68 for relationship (0.2 sec)

  1. android/guava/src/com/google/common/reflect/TypeToken.java

       *
       * <p>Subtypes are always listed before supertypes. But the reverse is not true. A type isn't
       * necessarily a subtype of all the types following. Order between types without subtype
       * relationship is arbitrary and not guaranteed.
       *
       * <p>If this type is a type variable or wildcard, upper bounds that are themselves type variables
       * aren't included (their super interfaces and superclasses are).
       */
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Jun 26 21:02:13 GMT 2023
    - 53.6K bytes
    - Viewed (0)
  2. docs/em/docs/tutorial/sql-databases.md

    ```Python hl_lines="1  10-13  21-24"
    {!../../../docs_src/sql_databases/sql_app/models.py!}
    ```
    
    ### ✍ πŸ’›
    
    πŸ”œ ✍ πŸ’›.
    
    πŸ‘‰, πŸ‘₯ βš™οΈ `relationship` 🚚 πŸ‡ΈπŸ‡² 🐜.
    
    πŸ‘‰ πŸ”œ ▢️️, πŸŒ… βš–οΈ 🌘, "🎱" πŸ”’ πŸ‘ˆ πŸ”œ πŸ”Œ πŸ’² βšͺ️➑️ 🎏 πŸ“ πŸ”— πŸ‘‰ 1️⃣.
    
    ```Python hl_lines="2  15  26"
    {!../../../docs_src/sql_databases/sql_app/models.py!}
    ```
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 25.2K bytes
    - Viewed (1)
  3. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

    message LabelSelectorRequirement {
      // key is the label key that the selector applies to.
      // +patchMergeKey=key
      // +patchStrategy=merge
      optional string key = 1;
    
      // operator represents a key's relationship to a set of values.
      // Valid operators are In, NotIn, Exists and DoesNotExist.
      optional string operator = 2;
    
      // values is an array of string values. If the operator is In or NotIn,
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 53.3K bytes
    - Viewed (0)
  4. tensorflow/c/c_api.h

    // returns, won't affect the copy of `func`/`grad` in `g`.
    // If `func` or `grad` are already in `g`, TF_GraphCopyFunction has no
    // effect on them, but can establish the function->gradient relationship
    // between them if `func` does not already have a gradient. If `func` already
    // has a gradient different from `grad`, an error is returned.
    //
    // `func` must not be null.
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
  5. common-protos/k8s.io/api/core/v1/generated.proto

    // that relates the key and values.
    message NodeSelectorRequirement {
      // The label key that the selector applies to.
      optional string key = 1;
    
      // Represents a key's relationship to a set of values.
      // Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.
      optional string operator = 2;
    
      // An array of string values. If the operator is In or NotIn,
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
  6. doc/go_spec.html

    Otherwise, type inference fails and the program is invalid.
    </p>
    
    <p>
    Type inference uses the type relationships between pairs of types for inference:
    For instance, a function argument must be <a href="#Assignability">assignable</a>
    to its respective function parameter; this establishes a relationship between the
    type of the argument and the type of the parameter.
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * A prototypical example that uses all the fields.
     * </td></tr>
     * 
     * <tr><td width="20%"><code>smb1://myworkgroup/angus/ &lt;-- ILLEGAL </code></td><td>
     * Despite the hierarchial relationship between workgroups, servers, and
     * filesystems this example is not valid.
     * </td></tr>
     *
     * <tr><td width="20%">
     * <code>smb1://server/share/path/to/dir &lt;-- ILLEGAL </code></td><td>
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  8. android/guava/src/com/google/common/collect/Maps.java

       *
       * @param left the map to treat as the "left" map for purposes of comparison
       * @param right the map to treat as the "right" map for purposes of comparison
       * @param valueEquivalence the equivalence relationship to use to compare values
       * @return the difference between the two maps
       * @since 10.0
       */
      public static <K extends @Nullable Object, V extends @Nullable Object>
          MapDifference<K, V> difference(
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 24 19:38:27 GMT 2024
    - 159.3K bytes
    - Viewed (0)
  9. utils/utils.go

    	}
    	return ""
    }
    
    const nestedRelationSplit = "__"
    
    // NestedRelationName nested relationships like `Manager__Company`
    func NestedRelationName(prefix, name string) string {
    	return prefix + nestedRelationSplit + name
    }
    
    // SplitNestedRelationName Split nested relationships to `[]string{"Manager","Company"}`
    func SplitNestedRelationName(name string) []string {
    Go
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Mon Apr 22 06:43:02 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  10. gorm.go

    		if f.Size == 0 {
    			f.Size = ref.ForeignKey.Size
    		}
    		ref.ForeignKey = f
    	}
    
    	for name, rel := range relation.JoinTable.Relationships.Relations {
    		if _, ok := joinSchema.Relationships.Relations[name]; !ok {
    			rel.Schema = joinSchema
    			joinSchema.Relationships.Relations[name] = rel
    		}
    	}
    	relation.JoinTable = joinSchema
    
    	return nil
    }
    
    // Use use plugin
    Go
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Sun Aug 20 11:46:56 GMT 2023
    - 11.6K bytes
    - Viewed (0)
Back to top