Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for tv (0.23 sec)

  1. operator/cmd/mesh/operator-common.go

    hub: {{.Hub}}
    tag: {{.Tag}}
    {{- if .ImagePullSecrets }}
    imagePullSecrets:
    {{- range .ImagePullSecrets }}
    - {{ . }}
    {{- end }}
    {{- end }}
    revision: {{if .Revision }} {{.Revision}} {{else}} "" {{end}}
    `
    
    	tv := struct {
    		IstioNamespace    string
    		WatchedNamespaces string
    		Hub               string
    		Tag               string
    		ImagePullSecrets  []string
    		Revision          string
    	}{
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Sat Dec 17 02:25:04 GMT 2022
    - 3.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/OverflowAvoidingLockSupport.java

     * signal on 32 bit devices running Android Q.
     */
    @J2ktIncompatible
    @ElementTypesAreNonnullByDefault
    final class OverflowAvoidingLockSupport {
      // Represents the max nanoseconds representable on a linux timespec with a 32 bit tv_sec
      static final long MAX_NANOSECONDS_THRESHOLD = (1L + Integer.MAX_VALUE) * 1_000_000_000L - 1L;
    
      private OverflowAvoidingLockSupport() {}
    
      static void parkNanos(@CheckForNull Object blocker, long nanos) {
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Apr 04 09:45:04 GMT 2023
    - 1.6K bytes
    - Viewed (0)
  3. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    tsushima.aichi.jp tsushima.nagasaki.jp tsuwano.shimane.jp tsuyama.okayama.jp tt tt.im tube tui tula.su tuleap-partners.com tunes tunk.org tur.ar tur.br turek.pl turin.it turystyka.pl tuscany.it tushu tuva.su tuxfamily.org tv tv.bb tv.bo tv.br tv.im tv.in tv.it tv.kg tv.na tv.sd tv.tr tv.tz tvedestrand.no tvs tw tw.cn twmail.cc twmail.net twmail.org tx.us tychy.pl tydal.no tynset.no typedream.app tysfjord.no tysnes.no tysvar.no tysvær.no tz tønsberg.no u.bg u.channelsdvr.net u.se u2-local.xnbay.com u2.xnbay.com...
    Others
    - Registered: Fri Apr 12 11:42:09 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 40.4K bytes
    - Viewed (0)
  4. tests/query_test.go

    	}
    
    	for idx, tv := range times {
    		AssertEqual(t, tv, users[idx].CreatedAt)
    	}
    
    	var ptrtimes []*time.Time
    	if err := DB.Model(User{}).Where("name like ?", "pluck-user%").Pluck("created_at", &ptrtimes).Error; err != nil {
    		t.Errorf("got error when pluck time: %v", err)
    	}
    
    	for idx, tv := range ptrtimes {
    		AssertEqual(t, tv, users[idx].CreatedAt)
    	}
    
    Go
    - Registered: Sun Apr 14 09:35:11 GMT 2024
    - Last Modified: Fri Mar 15 06:14:48 GMT 2024
    - 49.4K bytes
    - Viewed (0)
  5. cmd/storage-datatypes.go

    	TransitionTier string `msg:"tt"`
    	// TransitionVersionID stores a version ID of the object associate
    	// with the remote tier.
    	TransitionVersionID string `msg:"tv"`
    	// ExpireRestored indicates that the restored object is to be expired.
    	ExpireRestored bool `msg:"exp"`
    
    	// DataDir of the file
    	DataDir string `msg:"dd"`
    
    	// Indicates if this object is still in V1 format.
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Mon Apr 08 09:22:27 GMT 2024
    - 14.6K bytes
    - Viewed (0)
  6. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    pro.tt
    int.tt
    coop.tt
    jobs.tt
    mobi.tt
    travel.tt
    museum.tt
    aero.tt
    name.tt
    gov.tt
    edu.tt
    
    // tv : https://en.wikipedia.org/wiki/.tv
    // Not listing any 2LDs as reserved since none seem to exist in practice,
    // Wikipedia notwithstanding.
    tv
    
    // tw : https://en.wikipedia.org/wiki/.tw
    tw
    edu.tw
    gov.tw
    mil.tw
    com.tw
    net.tw
    org.tw
    idv.tw
    Plain Text
    - Registered: Fri Apr 12 11:42:09 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
  7. android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java

              "site.ee",
              "site.fi",
              "site.fm",
              "site.gr",
              "www.leguide.ma",
              "site.ma",
              "some.org.mk",
              "site.mk",
              "site.tv",
              "site.us",
              "www.odev.us",
              "www.GOOGLE.com",
              "www.com",
              "google.com",
              "www7.google.co.uk",
              "google.Co.uK",
              "jobs.kt.com.",
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Mar 05 13:16:00 GMT 2024
    - 17.3K bytes
    - Viewed (0)
  8. src/cmd/cgo/gcc.go

    	if r == '_' {
    		return "X" + s
    	}
    	return string(unicode.ToUpper(r)) + s[size:]
    }
    
    // godefsFields rewrites field names for use in Go or C definitions.
    // It strips leading common prefixes (like tv_ in tv_sec, tv_usec)
    // converts names to upper case, and rewrites _ into Pad_godefs_n,
    // so that all fields are exported.
    func godefsFields(fld []*ast.Field) {
    	prefix := fieldPrefix(fld)
    
    Go
    - Registered: Tue Apr 16 11:13:10 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/net/InternetDomainNameTest.java

              "site.ee",
              "site.fi",
              "site.fm",
              "site.gr",
              "www.leguide.ma",
              "site.ma",
              "some.org.mk",
              "site.mk",
              "site.tv",
              "site.us",
              "www.odev.us",
              "www.GOOGLE.com",
              "www.com",
              "google.com",
              "www7.google.co.uk",
              "google.Co.uK",
              "jobs.kt.com.",
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Mar 05 13:16:00 GMT 2024
    - 17.3K bytes
    - Viewed (0)
  10. ci/official/containers/linux_arm64/builder.devtoolset/stringop_trunc.patch

    +  char ut_host[UT_HOSTSIZE]
    +    __attribute_nonstring__;	/* Hostname for remote login.  */
       struct exit_status ut_exit;	/* Exit status of a process marked
     				   as DEAD_PROCESS.  */
     /* The ut_session and ut_tv fields must be the same size when compiled
    diff --git a/sysdeps/gnu/bits/utmpx.h b/sysdeps/gnu/bits/utmpx.h
    index f8716ca..13d84e4 100644
    --- a/sysdeps/gnu/bits/utmpx.h
    +++ b/sysdeps/gnu/bits/utmpx.h
    Others
    - Registered: Tue Apr 16 12:39:09 GMT 2024
    - Last Modified: Mon Sep 18 14:52:45 GMT 2023
    - 42.9K bytes
    - Viewed (1)
Back to top