Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for xxxxxxx (0.1 sec)

  1. pkg/volume/util/fsquota/common/quota_common_linux.go

    	FSQuotaAccounting QuotaType = 1 << iota
    	// FSQuotaEnforcing for quotas for enforcement
    	FSQuotaEnforcing QuotaType = 1 << iota
    )
    
    // FirstQuota is the quota ID we start with.
    // XXXXXXX Need a better way of doing this...
    var FirstQuota QuotaID = 1048577
    
    // MountsFile is the location of the system mount data
    var MountsFile = "/proc/self/mounts"
    
    // MountParseRegexp parses out /proc/sys/self/mounts
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 28 06:09:31 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. src/go/printer/testdata/declarations.input

    )
    
    var (
    	short = X{
    	}
    	aMuchLongerName = X{}
    
    	x1 = X{} // foo
    	x2 = X{
    	} // foo
    )
    
    func _() {
    	type (
    		xxxxxx int
    		x float
    		xxx string
    		xxxxx []x
    		xx struct{}
    		xxxxxxx struct {
    			_, _ int
    			_ float
    		}
    		xxxx chan<- string
    	)
    }
    
    // alignment of "=" in consecutive lines (extended example from issue 1414)
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  3. src/go/printer/testdata/declarations.golden

    	aMuchLongerName	= 3
    )
    
    var (
    	short		= X{}
    	aMuchLongerName	= X{}
    
    	x1	= X{}	// foo
    	x2	= X{}	// foo
    )
    
    func _() {
    	type (
    		xxxxxx	int
    		x	float
    		xxx	string
    		xxxxx	[]x
    		xx	struct{}
    		xxxxxxx	struct {
    			_, _	int
    			_	float
    		}
    		xxxx	chan<- string
    	)
    }
    
    // alignment of "=" in consecutive lines (extended example from issue 1414)
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.2K bytes
    - Viewed (0)
  4. src/regexp/all_test.go

    	{"[a-c]+$", "x", "", ""},
    	{"^[a-c]+$", "x", "", ""},
    
    	// Other cases.
    	{"abc", "def", "abcdefg", "defdefg"},
    	{"bc", "BC", "abcbcdcdedef", "aBCBCdcdedef"},
    	{"abc", "", "abcdabc", "d"},
    	{"x", "xXx", "xxxXxxx", "xXxxXxxXxXxXxxXxxXx"},
    	{"abc", "d", "", ""},
    	{"abc", "d", "abc", "d"},
    	{".+", "x", "abc", "x"},
    	{"[a-c]*", "x", "def", "xdxexfx"},
    	{"[a-c]+", "x", "abcbcdcdedef", "xdxdedef"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  5. src/strings/strings_test.go

    	{"", "a", false},
    
    	// cases to cover code in runtime/asm_amd64.s:indexShortStr
    	// 2-byte needle
    	{"xxxxxx", "01", false},
    	{"01xxxx", "01", true},
    	{"xx01xx", "01", true},
    	{"xxxx01", "01", true},
    	{"01xxxxx"[1:], "01", false},
    	{"xxxxx01"[:6], "01", false},
    	// 3-byte needle
    	{"xxxxxxx", "012", false},
    	{"012xxxx", "012", true},
    	{"xx012xx", "012", true},
    	{"xxxx012", "012", true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  6. test/fixedbugs/bug031.go

    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:48:57 UTC 2012
    - 802 bytes
    - Viewed (0)
  7. samples/slack/src/main/java/okhttp3/slack/SlackClient.java

        } else {
          OAuthSession session = new OAuthSession(true,
              "xoxp-XXXXXXXXXX-XXXXXXXXXX-XXXXXXXXXXX-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
              scopes, "UXXXXXXXX", "My Slack Group", "TXXXXXXXX");
          client.initOauthSession(session);
        }
    
        client.awaitAccessToken(Timeout.NONE);
        client.startRtm();
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 12 03:31:36 UTC 2019
    - 3.4K bytes
    - Viewed (0)
  8. cmd/erasure-encode_test.go

    	b.Run(" X0000000|00000000 ", func(b *testing.B) { benchmarkErasureEncode(8, 8, 1, 0, size, b) })
    	b.Run(" 00000000|XXXXXXX0 ", func(b *testing.B) { benchmarkErasureEncode(8, 8, 0, 7, size, b) })
    	b.Run(" XXXXXXX0|00000000 ", func(b *testing.B) { benchmarkErasureEncode(8, 8, 7, 0, size, b) })
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 30 20:43:25 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  9. cmd/erasure-decode_test.go

    	b.Run(" X0000000|X0000000 ", func(b *testing.B) { benchmarkErasureDecode(8, 8, 1, 1, size, b) })
    	b.Run(" 00000000|XXXXXXXX ", func(b *testing.B) { benchmarkErasureDecode(8, 8, 0, 8, size, b) })
    	b.Run(" XXXX0000|XXXX0000 ", func(b *testing.B) { benchmarkErasureDecode(8, 8, 4, 4, size, b) })
    	b.Run(" XXXXXXXX|00000000 ", func(b *testing.B) { benchmarkErasureDecode(8, 8, 8, 0, size, b) })
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 30 20:43:25 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. hack/run-prometheus-on-etcd-scrapes.sh

    if ! [[ -r "$scrapes_file" ]]; then
        echo "$0: $scrapes_file is not a readable file" >&2
        exit 2
    fi
    
    SCRIPT_ROOT=$(dirname "${BASH_SOURCE[0]}")
    
    CONFIG="/tmp/$(cd /tmp && mktemp config.XXXXXX)"
    UNPACKDIR="/tmp/$(cd /tmp && mktemp -d unpack.XXXXXX)"
    SERVER_PID=""
    
    cleanup_prom() {
        rm -f "$CONFIG"
        rm -rf "$UNPACKDIR"
        if [[ -n "$SERVER_PID" ]]; then
    	kill "$SERVER_PID"
        fi
    }
    
    trap cleanup_prom EXIT
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 08 20:28:05 UTC 2021
    - 2.9K bytes
    - Viewed (0)
Back to top