Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 67 for oo (0.02 sec)

  1. analysis/analysis-api/testData/annotations/annotationsOnDeclaration/direct/onClass.kt

    annotation class A(val a: Int, val c: KClass<*>)
    
    @A(1, Int::class)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Nov 22 21:46:58 UTC 2021
    - 84 bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/annotations/annotationsOnDeclaration/useSite/onProperty.kt

    annotation class A(val a: Int, val c: KClass<*>)
    
    @property:A(1, Int::class)
    val f<caret>oo : Int
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Nov 22 21:46:58 UTC 2021
    - 112 bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/annotations/annotationsOnDeclaration/direct/onTypeAlias.kt

    annotation class A(val a: Int, val c: KClass<*>)
    
    @A(1, Int::class)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Nov 22 21:46:58 UTC 2021
    - 97 bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/annotations/annotationsOnDeclaration/direct/onProperty.kt

    annotation class A(val a: Int, val c: KClass<*>)
    
    @A(1, Int::class)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Nov 22 21:46:58 UTC 2021
    - 92 bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/annotations/metaAnnotations/onProperty_javaAnnotation_varargParameter.kt

        ElementType[] value();
    }
    
    // FILE: test.kt
    
    import java.lang.annotation.ElementType.FIELD
    import java.lang.annotation.ElementType.METHOD
    
    class Test {
        @JavaAnno(FIELD, METHOD)
        val f<caret>oo = ""
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jan 12 10:48:21 UTC 2023
    - 478 bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/annotations/annotationsOnDeclaration/direct/onProperty_javaAnnotation_targets.kt

    @Target({FIELD, METHOD})
    public @interface JavaAnno() {
        ElementType[] types();
    }
    
    // FILE: test.kt
    
    import java.lang.annotation.ElementType.FIELD
    
    class Test {
        @JavaAnno(FIELD)
        val f<caret>oo = ""
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Nov 17 11:58:14 UTC 2022
    - 422 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