Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,847 for annot1 (0.15 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue_test.go

    		st.MakePod().Name("p0").Namespace("ns1").Annotation("annot1", "val1").NominatedNodeName("node1").Obj(),
    		st.MakePod().Name("p1").Namespace("ns1").Annotation("annot", "val").Obj(),
    		st.MakePod().Name("p2").Namespace("ns2").Annotation("annot2", "val2").Annotation("annot3", "val3").NominatedNodeName("node3").Obj(),
    		st.MakePod().Name("p3").Namespace("ns4").Annotation("annot2", "val2").Annotation("annot3", "val3").NominatedNodeName("node1").Obj(),
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeInfoProvider.kt

         * Example:
         * ```
         * interface Base
         *
         * typealias FirstAlias = @Anno1 Base
         * typealias SecondAlias = @Anno2 FirstAlias
         *
         * fun foo(): @Anno3 SecondAlias = TODO()
         * ```
         * The return type of `foo` will be `@Anno3 @Anno2 @Anno1 Base` instead of `@Anno3 SecondAlias`
         */
        public val KaType.fullyExpandedType: KaType
            get() = withValidityAssertion {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/aenum.go

    	AKADDB
    	AKADDD
    	AKADDQ
    	AKADDW
    	AKANDB
    	AKANDD
    	AKANDNB
    	AKANDND
    	AKANDNQ
    	AKANDNW
    	AKANDQ
    	AKANDW
    	AKMOVB
    	AKMOVD
    	AKMOVQ
    	AKMOVW
    	AKNOTB
    	AKNOTD
    	AKNOTQ
    	AKNOTW
    	AKORB
    	AKORD
    	AKORQ
    	AKORTESTB
    	AKORTESTD
    	AKORTESTQ
    	AKORTESTW
    	AKORW
    	AKSHIFTLB
    	AKSHIFTLD
    	AKSHIFTLQ
    	AKSHIFTLW
    	AKSHIFTRB
    	AKSHIFTRD
    	AKSHIFTRQ
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  4. istioctl/pkg/kubeinject/testdata/deployment/hello-with-proxyconfig-anno.yaml

    Xiaopeng Han <******@****.***> 1686841337 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 556 bytes
    - Viewed (0)
  5. istioctl/pkg/kubeinject/testdata/deployment/hello-with-proxyconfig-anno.yaml.injected

    Xiaopeng Han <******@****.***> 1686841337 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. pilot/pkg/config/file/store.go

    		// TODO: populate
    		annots := u.GetAnnotations()
    		if annots == nil {
    			annots = map[string]string{}
    		}
    		jsonfm, err := json.Marshal(fieldMap)
    		if err != nil {
    			return nil, err
    		}
    		annots[FieldMapKey] = string(jsonfm)
    		jsonsource, err := json.Marshal(source)
    		if err != nil {
    			return nil, err
    		}
    		annots[ReferenceKey] = string(jsonsource)
    		u.SetAnnotations(annots)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. src/math/big/int.go

    	}
    
    	// x & (-y) == x & ^(y-1) == x &^ (y-1)
    	y1 := nat(nil).sub(y.abs, natOne)
    	z.abs = z.abs.andNot(x.abs, y1)
    	z.neg = false
    	return z
    }
    
    // AndNot sets z = x &^ y and returns z.
    func (z *Int) AndNot(x, y *Int) *Int {
    	if x.neg == y.neg {
    		if x.neg {
    			// (-x) &^ (-y) == ^(x-1) &^ ^(y-1) == ^(x-1) & (y-1) == (y-1) &^ (x-1)
    			x1 := nat(nil).sub(x.abs, natOne)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  8. test/convert2.go

    	s = s
    	s = t // ERROR "cannot use .* in assignment|incompatible type"
    	s = u // ERROR "cannot use .* in assignment|incompatible type"
    	s = S(s)
    	s = S(t)
    	s = S(u) // ERROR "cannot convert"
    	t = u    // ERROR "cannot use .* in assignment|incompatible type"
    	t = T(u) // ERROR "cannot convert"
    }
    
    // conversions between pointers to structs
    
    func _() {
    	type S struct{}
    	type T struct{}
    	var s *S
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 08 15:55:44 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  9. test/assign1.go

    	pa = pa1  // ERROR "cannot use|incompatible"
    	pa1 = pa0 // ERROR "cannot use|incompatible"
    	pa1 = pa  // ERROR "cannot use|incompatible"
    
    	pb0 = pb  // ERROR "cannot use|incompatible"
    	pb0 = pb1 // ERROR "cannot use|incompatible"
    	pb = pb0  // ERROR "cannot use|incompatible"
    	pb = pb1  // ERROR "cannot use|incompatible"
    	pb1 = pb0 // ERROR "cannot use|incompatible"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 02:19:43 UTC 2012
    - 5.6K bytes
    - Viewed (0)
  10. test/convert1.go

    	_ = string(si) // ERROR "cannot convert.* string|invalid type conversion"
    	_ = []byte(si) // ERROR "cannot convert.*\[\]byte|invalid type conversion"
    	_ = []rune(si) // ERROR "cannot convert.*\[\]rune|invalid type conversion"
    	_ = []int64(si)
    	_ = Tstring(si) // ERROR "cannot convert.*Tstring|invalid type conversion"
    	_ = Tbyte(si)   // ERROR "cannot convert.*Tbyte|invalid type conversion"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 3.4K bytes
    - Viewed (0)
Back to top