Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 71 for xxxx01 (0.16 sec)

  1. android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java

              ALMOST_TOO_LONG + ".c");
    
      private static final ImmutableSet<String> RS =
          ImmutableSet.of(
              "com",
              "co.uk",
              "foo.bd",
              "xxxxxx.bd",
              "org.mK",
              "us",
              "co.uk.", // Trailing dot
              "co\uFF61uk", // Alternate dot character
              "\u7f51\u7edc.Cn", // "网络.Cn"
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 05 13:16:00 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. istioctl/pkg/ztunnelconfig/ztunnelconfig.go

      istioctl ztunnel-config workload
    
      # Retrieve summary of workloads on node XXXX for a given Ztunnel instance.
      istioctl ztunnel-config workload <ztunnel-name[.namespace]> --node ambient-worker
    
      # Retrieve full workload dump of workloads with address XXXX for a given Ztunnel instance.
      istioctl ztunnel-config workload <ztunnel-name[.namespace]> --address 0.0.0.0 -o json
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 22K bytes
    - Viewed (0)
  3. cmd/batch-rotate.go

    //     kmskey: "key-id" # match objects with KMS key-id (applicable only for sse-kms)
    //   notify:
    //     endpoint: "https://notify.endpoint" # notification endpoint to receive job status events
    //     token: "Bearer xxxxx" # optional authentication token for the notification endpoint
    
    //   retry:
    //     attempts: 10 # number of retries for the job before giving up
    //     delay: "500ms" # least amount of delay between each retry
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. pkg/volume/util/fsquota/quota_linux_test.go

    1048580:/quota1/b
    1048581:/quota2/b
    `
    	projects4 = `1048577:/quota1/a
    1048581:/quota2/b
    `
    	projects5 = `1048581:/quota2/b
    `
    
    	projidHeader = `# This is a /etc/projid header
    xxxxxx:1048579
    `
    	projid1 = `volume1048577:1048577
    `
    	projid2 = `volume1048577:1048577
    volume1048580:1048580
    `
    	projid3 = `volume1048577:1048577
    volume1048580:1048580
    volume1048581:1048581
    `
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/cache/cache.go

    	f, err := os.Open(subdir)
    	if err != nil {
    		return
    	}
    	names, _ := f.Readdirnames(-1)
    	f.Close()
    
    	for _, name := range names {
    		// Remove only cache entries (xxxx-a and xxxx-d).
    		if !strings.HasSuffix(name, "-a") && !strings.HasSuffix(name, "-d") {
    			continue
    		}
    		entry := filepath.Join(subdir, name)
    		info, err := os.Stat(entry)
    		if err == nil && info.ModTime().Before(cutoff) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. src/text/scanner/scanner_test.go

    		mode     uint
    	}{
    		{"foo01.bar31.xx-0-1-1-0", "01 31 0 1 1 0", ScanInts},
    		{"foo0/12/0/5.67", "0 12 0 5 67", ScanInts},
    		{"xxx1e0yyy", "1 0", ScanInts},
    		{"1_2", "1_2", ScanInts},
    		{"xxx1.0yyy2e3ee", "1 0 2 3", ScanInts},
    		{"xxx1.0yyy2e3ee", "1.0 2e3", ScanFloats},
    	} {
    		got := extractInts(test.in, test.mode)
    		if got != test.want {
    			t.Errorf("%q: got %q; want %q", test.in, got, test.want)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 03:41:50 UTC 2022
    - 25.3K bytes
    - Viewed (0)
  7. cmd/batch-expire.go

    //
    //   notify:
    //     endpoint: https://notify.endpoint # notification endpoint to receive job completion status
    //     token: Bearer xxxxx # optional authentication token for the notification endpoint
    //
    //   retry:
    //     attempts: 10 # number of retries for the job before giving up
    //     delay: 500ms # least amount of delay between each retry
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 13:50:53 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. src/net/url/url.go

    	}
    	return buf.String()
    }
    
    // Redacted is like [URL.String] but replaces any password with "xxxxx".
    // Only the password in u.User is redacted.
    func (u *URL) Redacted() string {
    	if u == nil {
    		return ""
    	}
    
    	ru := *u
    	if _, has := ru.User.Password(); has {
    		ru.User = UserPassword(ru.User.Username(), "xxxxx")
    	}
    	return ru.String()
    }
    
    // Values maps a string key to a list of values.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  9. configure.py

      environ_cp[var_name] = str(var)
    
    
    def convert_version_to_int(version):
      """Convert a version number to a integer that can be used to compare.
    
      Version strings of the form X.YZ and X.Y.Z-xxxxx are supported. The
      'xxxxx' part, for instance 'homebrew' on OS/X, is ignored.
    
      Args:
        version: a version to be converted
    
      Returns:
        An integer if converted successfully, otherwise return None.
      """
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. src/cmd/link/internal/arm/asm.go

    	case objabi.R_PLT2: // ldr pc, [ip, #0xZZZ]!
    		return 0xe5bcf000 + (0xfff & int64(uint32(ldr.SymValue(rs)-(ldr.SymValue(syms.PLT)+int64(r.Off()))+r.Add()+8))), noExtReloc, isOk
    	case objabi.R_CALLARM: // bl XXXXXX or b YYYYYY
    		// r.Add is the instruction
    		// low 24-bit encodes the target address
    		t := (ldr.SymValue(rs) + int64(signext24(r.Add()&0xffffff)*4) - (ldr.SymValue(s) + int64(r.Off()))) / 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 22.9K bytes
    - Viewed (0)
Back to top