Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for 01xxxx (0.32 sec)

  1. src/strings/strings_test.go

    	// 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},
    	{"012xxxxx"[1:], "012", false},
    	{"xxxxx012"[:7], "012", false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  2. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/filter/TestSelectionMatcherTest.groovy

            ["FooTest.test", "FooTest.*fast*"]  | "FooTest"                 | "xxxx"                | false
    
            ["FooTest", "*BarTest"]             | "FooTest"                 | "test"                | true
            ["FooTest", "*BarTest"]             | "FooTest"                 | "xxxx"                | true
            ["FooTest", "*BarTest"]             | "BarTest"                 | "xxxx"                | true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. hack/lib/etcd.sh

    }
    
    kube::etcd::start() {
      # validate before running
      kube::etcd::validate
    
      # Start etcd
      ETCD_DIR=${ETCD_DIR:-$(mktemp -d 2>/dev/null || mktemp -d -t test-etcd.XXXXXX)}
      if [[ -d "${ARTIFACTS:-}" ]]; then
        ETCD_LOGFILE="${ARTIFACTS}/etcd.$(uname -n).$(id -un).log.DEBUG.$(date +%Y%m%d-%H%M%S).$$"
      else
        ETCD_LOGFILE=${ETCD_LOGFILE:-"/dev/null"}
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. pkg/volume/util/util_test.go

    			mountRefs: []string{
    				"/home/somewhere/var/lib/kubelet/plugins/kubernetes.io/some-plugin/mounts/volume-XXXX",
    				"/var/lib/kubelet/plugins/kubernetes.io/some-plugin/mounts/volume-XXXX",
    				"/mnt/kubelet/plugins/kubernetes.io/some-plugin/mounts/volume-XXXX",
    				"/mnt/plugins/kubernetes.io/some-plugin/mounts/volume-XXXX",
    			},
    			expected: false,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  5. src/runtime/map_test.go

    	testMapLookups(t, map[string]string{
    		"x":                      "x1val",
    		"xx":                     "x2val",
    		"foo":                    "fooval",
    		"xxxx":                   "x4val",
    		"xxxxx":                  "x5val",
    		"xxxxxx":                 "x6val",
    		strings.Repeat("x", 128): "longval",
    	})
    }
    
    func testMapLookups(t *testing.T, m map[string]string) {
    	for k, v := range m {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  6. tests/integration/telemetry/policy/helper_test.go

    	// Testing of Blackhole and Passthrough clusters:
    	// Setup of environment:
    	// 1. client and destination are deployed to app-1-XXXX namespace
    	// 2. client is restricted to talk to destination via Sidecar scope where outbound policy is set (ALLOW_ANY, REGISTRY_ONLY)
    	//    and clients' egress can only be to service-2-XXXX/* and istio-system/*
    	// 3. a namespace service-2-YYYY is created
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. hack/make-rules/test-cmd.sh

      make -C "${KUBE_ROOT}" WHAT="cmd/kube-controller-manager"
    
      # Start controller manager
      kube::log::status 'Generate kubeconfig for controller-manager'
      local config
      config="$(mktemp controller-manager.kubeconfig.XXXXX)"
      cat <<EOF > "$config"
    kind: Config
    users:
    - name: controller-manager
      user:
        token: admin-token
    clusters:
    - cluster:
        server: https://127.0.0.1:${SECURE_API_PORT}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 09:10:14 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. src/net/net_windows_test.go

    	// getmac output looks like:
    	//
    	//Connection Name:  Local Area Connection
    	//Network Adapter:  Intel Gigabit Network Connection
    	//Physical Address: XX-XX-XX-XX-XX-XX
    	//Transport Name:   \Device\Tcpip_{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}
    	//
    	//Connection Name:  Wireless Network Connection
    	//Network Adapter:  Wireles WLAN Card
    	//Physical Address: XX-XX-XX-XX-XX-XX
    	//Transport Name:   Media disconnected
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. internal/config/identity/openid/jwt_test.go

    	}
    }
    
    func TestDefaultExpiryDuration(t *testing.T) {
    	testCases := []struct {
    		reqURL    string
    		duration  time.Duration
    		expectErr bool
    	}{
    		{
    			reqURL:   "http://127.0.0.1:8443/?Token=xxxxx",
    			duration: time.Duration(60) * time.Minute,
    		},
    		{
    			reqURL:    "http://127.0.0.1:8443/?DurationSeconds=9s",
    			expectErr: true,
    		},
    		{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. pkg/proxy/iptables/proxier.go

    }
    
    // serviceExternalChainName returns the name of the KUBE-EXT-XXXX chain for a service, which
    // implements "short-circuiting" for internally-originated external-destination traffic when using
    // `Local` external traffic policy.  It forwards traffic from local sources to the KUBE-SVC-XXXX
    // chain and traffic from external sources to the KUBE-SVL-XXXX chain.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
Back to top