Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for hasId (0.07 sec)

  1. platforms/software/security/src/main/java/org/gradle/plugins/signing/signatory/pgp/PgpSignatoryFactory.java

                while (secretKeyIterator.hasNext()) {
                    PGPSecretKey secretKey = secretKeyIterator.next();
                    if (hasId(keyId, secretKey)) {
                        return secretKey;
                    }
                }
            }
            return null;
        }
    
        private boolean hasId(PgpKeyId keyId, PGPSecretKey secretKey) {
            return new PgpKeyId(secretKey.getKeyID()).equals(keyId);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  2. schema/relationship.go

    func hasPolymorphicRelation(tagSettings map[string]string) bool {
    	if _, ok := tagSettings["POLYMORPHIC"]; ok {
    		return true
    	}
    
    	_, hasType := tagSettings["POLYMORPHICTYPE"]
    	_, hasId := tagSettings["POLYMORPHICID"]
    
    	return hasType && hasId
    }
    
    func (schema *Schema) setRelation(relation *Relationship) {
    	// set non-embedded relation
    	if rel := schema.Relationships.Relations[relation.Name]; rel != nil {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  3. src/time/format_test.go

    		}
    	}
    }
    
    type ParseTest struct {
    	name       string
    	format     string
    	value      string
    	hasTZ      bool // contains a time zone
    	hasWD      bool // contains a weekday
    	yearSign   int  // sign of year, -1 indicates the year is not present in the format
    	fracDigits int  // number of digits of fractional second
    }
    
    var parseTests = []ParseTest{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  4. src/internal/trace/traceviewer/static/trace_viewer_full.html

    function...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (1)
Back to top