Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,349 for u$ (0.08 sec)

  1. pkg/ctrlz/assets/static/css/fonts.css

    }
    /* latin */
    @font-face {
      font-family: 'Roboto';
      font-style: italic;
      font-weight: 500;
      src: local('Roboto Medium Italic'), local('Roboto-MediumItalic'), url(https://fonts.gstatic.com/s/roboto/v19/KFOjCnqEu92Fr1Mu51S7ACc6CsTYl4BO.woff2) format('woff2');
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  2. docs/en/data/github_sponsors.yml

        url: https://github.com/mikeckennedy
      - login: ndimares
        avatarUrl: https://avatars.githubusercontent.com/u/6267663?u=cfb27efde7a7212be8142abb6c058a1aeadb41b1&v=4
        url: https://github.com/ndimares
    - - login: takashi-yoneya
        avatarUrl: https://avatars.githubusercontent.com/u/33813153?u=2d0522bceba0b8b69adf1f2db866503bd96f944e&v=4
        url: https://github.com/takashi-yoneya
      - login: xoflare
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:09:53 UTC 2024
    - 27K bytes
    - Viewed (0)
  3. src/net/netip/uint128.go

    func (u uint128) xor(m uint128) uint128 {
    	return uint128{u.hi ^ m.hi, u.lo ^ m.lo}
    }
    
    // or returns the bitwise OR of u and m (u|m).
    func (u uint128) or(m uint128) uint128 {
    	return uint128{u.hi | m.hi, u.lo | m.lo}
    }
    
    // not returns the bitwise NOT of u.
    func (u uint128) not() uint128 {
    	return uint128{^u.hi, ^u.lo}
    }
    
    // subOne returns u - 1.
    func (u uint128) subOne() uint128 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 07 21:28:44 UTC 2022
    - 2.2K bytes
    - Viewed (1)
  4. src/internal/types/testdata/check/conversions1.go

    	type T struct{}
    	var s S
    	var t T
    	var u struct{}
    	s = s
    	s = t // ERRORx `cannot use .* in assignment`
    	s = u
    	s = S(s)
    	s = S(t)
    	s = S(u)
    	t = u
    	t = T(u)
    }
    
    func _() {
    	type S struct{ x int }
    	type T struct {
    		x int "foo"
    	}
    	var s S
    	var t T
    	var u struct {
    		x int "bar"
    	}
    	s = s
    	s = t // ERRORx `cannot use .* in assignment`
    	s = u // ERRORx `cannot use .* in assignment`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/unstructured_test.go

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/unstructured.go

    }
    
    func (u *Unstructured) setNestedSlice(value []interface{}, fields ...string) {
    	if u.Object == nil {
    		u.Object = make(map[string]interface{})
    	}
    	SetNestedSlice(u.Object, value, fields...)
    }
    
    func (u *Unstructured) setNestedMap(value map[string]string, fields ...string) {
    	if u.Object == nil {
    		u.Object = make(map[string]interface{})
    	}
    	SetNestedStringMap(u.Object, value, fields...)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 28 03:26:35 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/unstructured_list.go

    	return err
    }
    
    func (u *UnstructuredList) GetAPIVersion() string {
    	return getNestedString(u.Object, "apiVersion")
    }
    
    func (u *UnstructuredList) SetAPIVersion(version string) {
    	u.setNestedField(version, "apiVersion")
    }
    
    func (u *UnstructuredList) GetKind() string {
    	return getNestedString(u.Object, "kind")
    }
    
    func (u *UnstructuredList) SetKind(kind string) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 28 04:46:35 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  8. test/convert2.go

    func _() {
    	type S struct{}
    	type T struct{}
    	var s S
    	var t T
    	var u struct{}
    	s = s
    	s = t // ERROR "cannot use .* in assignment|incompatible type"
    	s = u
    	s = S(s)
    	s = S(t)
    	s = S(u)
    	t = u
    	t = T(u)
    }
    
    func _() {
    	type S struct{ x int }
    	type T struct {
    		x int "foo"
    	}
    	var s S
    	var t T
    	var u struct {
    		x int "bar"
    	}
    	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. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectContainerExtensions.kt

            polymorphicDomainObjectContainer().create(name, type)
    
        override fun <U : T> create(name: String, type: Class<U>, configuration: Action<in U>): U =
            polymorphicDomainObjectContainer().create(name, type, configuration)
    
        override fun <U : T> maybeCreate(name: String, type: Class<U>): U =
            polymorphicDomainObjectContainer().maybeCreate(name, type)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 22:09:44 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/AbstractPolymorphicDomainObjectContainer.java

        }
    
        protected abstract <U extends T> U doCreate(String name, Class<U> type);
    
        @Override
        public <U extends T> U create(String name, Class<U> type) {
            assertMutable("create(String, Class)");
            return create(name, type, null);
        }
    
        @Override
        public <U extends T> U maybeCreate(String name, Class<U> type) throws InvalidUserDataException {
            T item = findByName(name);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 10:01:06 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top