Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for oo (0.02 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. analysis/analysis-api/testData/annotations/annotationsOnDeclaration/direct/arrayType.kt

    annotation class Anno(val value: KClass<*>)
    
    @Anno(Array<String>::class)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 25 07:15:56 UTC 2024
    - 89 bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/annotations/annotationsOnDeclaration/direct/arrayType2.kt

    annotation class Anno(val value: KClass<*>)
    
    @Anno(Array<Array<String>>::class)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 25 07:15:56 UTC 2024
    - 96 bytes
    - Viewed (0)
  4. test/linkobj.go

    		run("go", "tool", "compile", "-p=main", pkg, "-D", ".", "-importcfg=importcfg", "-l", "-o", "p3."+o, "-linkobj", "p3.lo", "p3.go")
    
    		cp("p1."+o, "p1.oo")
    		cp("p2."+o, "p2.oo")
    		cp("p3."+o, "p3.oo")
    		cp("p1.lo", "p1."+o)
    		cp("p2.lo", "p2."+o)
    		cp("p3.lo", "p3."+o)
    		out := runFail("go", "tool", "link", "p2."+o)
    		if !strings.Contains(out, "not package main") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/annotations/annotationsOnDeclaration/direct/listType.kt

    annotation class Anno(val value: KClass<*>)
    
    @Anno(List<String>::class)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 25 07:15:56 UTC 2024
    - 88 bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/annotations/annotationsOnDeclaration/direct/primitiveArrayType.kt

    annotation class Anno(val value: KClass<*>)
    
    @Anno(IntArray::class)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 25 07:15:56 UTC 2024
    - 84 bytes
    - Viewed (0)
  7. 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)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/time_test.go

    		if err != nil {
    			t.Errorf("%d-2: Failed to unmarshal '%+v': %v", i, string(jsonMarshalled), err)
    		}
    
    		iN, iO := input.T.Zone()
    		oN, oO := result.T.Zone()
    		if iN != oN || iO != oO {
    			t.Errorf("%d-3: Time zones differ before and after serialization %s:%d %s:%d", i, iN, iO, oN, oO)
    		}
    
    		if input.T.UnixNano() != result.T.UnixNano() {
    			t.Errorf("%d-4: Failed to marshal input '%#v': got %#v", i, input, result)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top