- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 451 for Cruces (0.13 sec)
-
internal/event/rules.go
rulesCopy[pattern] = targetIDSet.Clone() } return rulesCopy } // Union - returns union with given rules as new rules. func (rules Rules) Union(rules2 Rules) Rules { nrules := rules.Clone() for pattern, targetIDSet := range rules2 { nrules[pattern] = nrules[pattern].Union(targetIDSet) } return nrules } // Difference - returns difference with given rules as new rules.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 2.7K bytes - Viewed (0) -
android-test-app/proguard-rules.pro
# no rules should be needed...
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Dec 23 14:46:51 UTC 2023 - 28 bytes - Viewed (0) -
common/config/.yamllint.yml
# If you're looking at this file in a different repo and want to make a change, please go to the # common-files repo, make the change there and check it in. Then come back to this repo and run # "make update-common". rules: braces: disable brackets: disable colons: enable commas: disable comments: disable comments-indentation: disable document-end: disable document-start: disable empty-lines: disable
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Sep 30 23:53:31 UTC 2020 - 863 bytes - Viewed (0) -
android-test-app/test-proguard-rules.pro
Yuri Schimke <******@****.***> 1703342811 +0000
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Dec 23 14:46:51 UTC 2023 - 13 bytes - Viewed (0) -
build-logic-commons/code-quality-rules/src/main/resources/codenarc/codenarc-integtests.xml
<!--<exclude name='ExplicitCallToAndMethod'/>--> <!--<exclude name='ExplicitCallToOrMethod'/>--> <!--</ruleset-ref>--> <ruleset-ref path='rulesets/braces.xml'/> <ruleset-ref path='rulesets/imports.xml'> <exclude name="ImportFromSunPackages"/> <exclude name="MisorderedStaticImports"/> <exclude name="NoWildcardImports"/> </ruleset-ref>
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 2.3K bytes - Viewed (0) -
internal/event/rules_test.go
rulesCase2 := make(Rules) rules2Case2 := make(Rules) rules2Case2.Add(NewPattern("*", ""), TargetID{"1", "webhook"}) expectedResultCase2 := make(Rules) expectedResultCase2.Add(NewPattern("*", ""), TargetID{"1", "webhook"}) rulesCase3 := make(Rules) rulesCase3.Add(NewPattern("", "*"), TargetID{"1", "webhook"}) rules2Case3 := make(Rules) expectedResultCase3 := make(Rules)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jun 01 21:59:40 UTC 2021 - 8.8K bytes - Viewed (0) -
cmd/site-replication.go
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 15 12:04:40 UTC 2024 - 185.1K bytes - Viewed (0) -
internal/bucket/replication/replication.go
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Mar 28 17:44:56 UTC 2024 - 8.9K bytes - Viewed (0) -
internal/bucket/lifecycle/lifecycle.go
// unique id to rules with empty ID. func ParseLifecycleConfigWithID(r io.Reader) (*Lifecycle, error) { var lc Lifecycle if err := xml.NewDecoder(r).Decode(&lc); err != nil { return nil, err } // assign a unique id for rules with empty ID for i := range lc.Rules { if lc.Rules[i].ID == "" { lc.Rules[i].ID = uuid.New().String() } } return &lc, nil }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu May 23 01:12:48 UTC 2024 - 17.9K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnectionPool.kt
val capacityWithoutIt = addressState.concurrentCallCapacity - connection.allocationLimit return capacityWithoutIt >= addressState.policy.minimumConcurrentCalls } /** * Prunes any leaked calls and then returns the number of remaining live calls on [connection]. * Calls are leaked if the connection is tracking them but the application code has abandoned
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Apr 20 17:03:43 UTC 2024 - 16.2K bytes - Viewed (0)