Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for oo (0.07 sec)

  1. operator/pkg/object/objects.go

    	ret := make(map[string]*K8sObject)
    	for _, oo := range os {
    		if oo.Valid() {
    			ret[oo.Hash()] = oo
    		}
    	}
    	return ret
    }
    
    // ToNameKindMap returns a map of K8sObject name/kind hash to K8sObject.
    func (os K8sObjects) ToNameKindMap() map[string]*K8sObject {
    	ret := make(map[string]*K8sObject)
    	for _, oo := range os {
    		if oo.Valid() {
    			ret[oo.HashNameKind()] = oo
    		}
    	}
    	return ret
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 07:16:46 UTC 2023
    - 15.5K bytes
    - Viewed (1)
  2. pkg/registry/flowcontrol/ensurer/strategy.go

    		specEqualish: specEqualish}
    }
    
    func (oo objectOps[ObjectType]) DeepCopy(obj ObjectType) ObjectType { return oo.deepCopy(obj) }
    
    func (oo objectOps[ObjectType]) ReplaceSpec(into, from ObjectType) ObjectType {
    	return oo.replaceSpec(into, from)
    }
    
    func (oo objectOps[ObjectType]) SpecEqualish(expected, actual ObjectType) bool {
    	return oo.specEqualish(expected, actual)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 14K bytes
    - Viewed (0)
  3. tools/bug-report/pkg/cluster/cluster.go

    	for _, o := range pod.OwnerReferences {
    		if o.Kind == name.ReplicaSetStr {
    			for _, rs := range replicasets {
    				if rs.Name == o.Name {
    					for _, oo := range rs.OwnerReferences {
    						if oo.Kind == name.DeploymentStr {
    							return oo.Name
    						}
    					}
    				}
    			}
    		}
    	}
    	return ""
    }
    
    func getOwnerDaemonSet(pod *corev1.Pod, daemonsets []appsv1.DaemonSet) string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 14 02:11:31 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/InterruptibleTask.java

         */
        boolean restoreInterruptedBit = false;
        int spinCount = 0;
        // Interrupting Cow Says:
        //  ______
        // < Spin >
        //  ------
        //        \   ^__^
        //         \  (oo)\_______
        //            (__)\       )\/\
        //                ||----w |
        //                ||     ||
        Runnable state = get();
        Blocker blocker = null;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Sep 29 21:34:48 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  5. src/strings/replace_test.go

    		testCase{blankToX2, "", "X"},
    
    		testCase{blankHighPriority, "oo", "XOXOX"},
    		testCase{blankHighPriority, "ii", "XiXiX"},
    		testCase{blankHighPriority, "oiio", "XOXiXiXOX"},
    		testCase{blankHighPriority, "iooi", "XiXOXOXiX"},
    		testCase{blankHighPriority, "", "X"},
    
    		testCase{blankLowPriority, "oo", "OOX"},
    		testCase{blankLowPriority, "ii", "XiXiX"},
    		testCase{blankLowPriority, "oiio", "OXiXiOX"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 22:53:05 UTC 2017
    - 14.1K bytes
    - Viewed (0)
  6. cmd/testdata/xl-meta-merge.zip

    wyEˆŠ{MТli{Mô ðÏö {U\»¦ ªtexïcBkLys] `Jss¸V^ï¢`iÕN¼ +ºNm®ÜPK¢i}`ZãSlïv¾{}]òM¢@v}¼nÐ}Hiyò úÀ YNÜÉÑÐ <Þ¥V ons£zxA4¢x¯DŽ1ÅÒü ØÑüÁ./De|·` w·„Ó&Úøc²\{{^¸ ¯¦v^¯Ž#¾GÜ°~—_TÜŸ~KLãl²x{Žb©tùZyh {n¢X`e¨åá4V S, Ä*^ì» qay‘ øÔ¿Uc²xrA¢riîrkQ{òo¾ kukkòDK ^i¸HqòˆG¢YPqtìKjñTOª i~ uqrrIÊ Tª÷go +œ^Ø+FyppkRñZq cj ? WiPPIpÕˆ}ÖO¾BGÕî õÿ¯ˆol La‚¬}G\ZI¸tõ\u|ñÊíaxt:atD²CPù@A V]¥r² Ñ»>Lq]ò¦tuy^C^ï[ª}yåP°iÕ¢\GDyqñFenc$†ãúþ3{r8ôsE]c@锾GZì„LGo[ït¾ÖG@~ûAiDq]p¼~ïgAg\I Hq}vrglWÜmh¾@eÌô=U_òc aR KwÜP° ÖWKC\ï²#ñl[Xmª² qÎ EnV»¦lol†|»V}P{~u...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  7. operator/pkg/translate/translate.go

    		if inPathParts[len(inPathParts)-1] == "ReplicaCount" {
    			if skipReplicaCountWithAutoscaleEnabled(iop, componentName) {
    				continue
    			}
    		}
    
    		// strategic merge overlay m to the base object oo
    		mergedObj, err := MergeK8sObject(oo, m, path[1:])
    		if err != nil {
    			return "", err
    		}
    
    		// Apply the workaround for merging service ports with (port,protocol) composite
    		// keys instead of just the merging by port.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/InterruptibleTask.java

         */
        boolean restoreInterruptedBit = false;
        int spinCount = 0;
        // Interrupting Cow Says:
        //  ______
        // < Spin >
        //  ------
        //        \   ^__^
        //         \  (oo)\_______
        //            (__)\       )\/\
        //                ||----w |
        //                ||     ||
        Runnable state = get();
        Blocker blocker = null;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Sep 29 21:34:48 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  9. src/mime/mediatype_test.go

    			"attachment",
    			m("filename", "00000000001111111111222222222233333")},
    		// #attwithasciifnescapedchar
    		{`attachment; filename="f\oo.html"`,
    			"attachment",
    			m("filename", "f\\oo.html")},
    		// #attwithasciifnescapedquote
    		{`attachment; filename="\"quoting\" tested.html"`,
    			"attachment",
    			m("filename", `"quoting" tested.html`)},
    		// #attwithquotedsemicolon
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 26 17:58:37 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  10. pkg/testcerts/testcerts.go

    RmYtSxeRyXAaUWVYLs/zMlBQ0Iz4dpY+FVVbMjIurelVwHF0NBk3VtU5U3lHyKdZ
    j4C2rMjvTxmkyIcR1uBEeVvuGU8R70nZ1yfo3vDwmNGMcLwW+4QK+WcfwfjLXhLs
    5550arfEYdTzYFMxY60HJT/LvbGrjxY0PQUWWDbPiRfsdRjOFduAbM0/EVRda/Oo
    Fg72WnHeojDUhqEz4UyFZbnRJ4x6leQhnrIcVjWX4FFFktiO9rqqfw==
    -----END CERTIFICATE-----`)
    
    // BadCert is a abd x509 cert. Copied from crypto/x509/x509_test.go:1628
    var BadCert = []byte(`
    -----BEGIN CERTIFICATE-----
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 08 16:24:03 UTC 2022
    - 10.9K bytes
    - Viewed (0)
Back to top