Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 570 for u$ (0.03 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. 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)
  4. 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)
  5. test/chan/powser2.go

    }
    
    func mul(u, v *rat) *rat {
    	g1 := gcd(u.num, v.den)
    	g2 := gcd(u.den, v.num)
    	r := new(rat)
    	r.num = (u.num / g1) * (v.num / g2)
    	r.den = (u.den / g2) * (v.den / g1)
    	return r
    }
    
    func neg(u *rat) *rat {
    	return i2tor(-u.num, u.den)
    }
    
    func sub(u, v *rat) *rat {
    	return add(u, neg(v))
    }
    
    func inv(u *rat) *rat { // invert a rat
    	if u.num == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 13.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/functional/src/main/java/org/gradle/internal/Try.java

            @Override
            public <U> Try<U> flatMap(Function<? super T, Try<U>> f) {
                return (Try<U>) this;
            }
    
            @SuppressWarnings("unchecked")
            @Override
            public <U> Try<U> map(Function<? super T, U> f) {
                return (Try<U>) this;
            }
    
            @SuppressWarnings("unchecked")
            @Override
            public <U> Try<U> tryMap(Function<? super T, U> f) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtunnel.go

    		return u.conn.Write(b)
    	}
    	if u.err != nil {
    		return 0, u.err
    	}
    	return 0, fmt.Errorf("Write called before Initialize")
    }
    func (u *tunnelingWebsocketUpgraderConn) Close() error {
    	u.lock.Lock()
    	defer u.lock.Unlock()
    	if u.conn != nil {
    		return u.conn.Close()
    	}
    	if u.err != nil {
    		return u.err
    	}
    	// record that we closed so we don't write again or try to initialize
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  8. src/internal/runtime/atomic/types.go

    // the result into u.
    //
    // The full process is performed atomically.
    //
    //go:nosplit
    func (u *Uint32) And(value uint32) {
    	And(&u.value, value)
    }
    
    // Or takes value and performs a bit-wise
    // "or" operation with the value of u, storing
    // the result into u.
    //
    // The full process is performed atomically.
    //
    //go:nosplit
    func (u *Uint32) Or(value uint32) {
    	Or(&u.value, value)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    func (u *uploader) createReport(start time.Time, expiryDate string, countFiles []string, lastWeek string) (string, error) {
    	uploadOK := true
    	mode, asof := u.dir.Mode()
    	if mode != "on" {
    		u.logger.Printf("No upload config or mode %q is not 'on'", mode)
    		uploadOK = false // no config, nothing to upload
    	}
    	if u.tooOld(expiryDate, u.startTime) {
    		u.logger.Printf("Expiry date %s is too old", expiryDate)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. test/chan/powser1.go

    }
    
    func mul(u, v rat) rat {
    	g1 := gcd(u.num, v.den)
    	g2 := gcd(u.den, v.num)
    	var r rat
    	r.num = (u.num / g1) * (v.num / g2)
    	r.den = (u.den / g2) * (v.den / g1)
    	return r
    }
    
    func neg(u rat) rat {
    	return i2tor(-u.num, u.den)
    }
    
    func sub(u, v rat) rat {
    	return add(u, neg(v))
    }
    
    func inv(u rat) rat { // invert a rat
    	if u.num == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 12.7K bytes
    - Viewed (0)
Back to top