Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,501 for desk (0.04 sec)

  1. operator/pkg/validate/validate_values_test.go

    }
    
    func TestValidateValues(t *testing.T) {
    	tests := []struct {
    		desc     string
    		yamlStr  string
    		wantErrs util.Errors
    	}{
    		{
    			desc: "nil success",
    		},
    		{
    			desc: "StarIPRange",
    			yamlStr: `
    global:
      proxy:
        includeIPRanges: "*"
        excludeIPRanges: "*"
    `,
    		},
    		{
    			desc: "ProxyConfig",
    			yamlStr: `
    global:
      podDNSSearchNamespaces:
      - "my-namespace"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 13:43:12 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileTreeIntegrationTest.groovy

                def files = fileTree(dir: 'files').minus(fileTree(dir: 'files/b'))
                task copy(type: Copy) {
                    from files
                    into 'dest'
                }
            """
    
            when:
            run 'copy'
    
            then:
            file('dest').assertHasDescendants(
                'one.txt',
                'two.txt' // does not preserve structure, but probably should
            )
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7K bytes
    - Viewed (0)
  3. tools/golangci-override.yaml

                desc: "don't use v3; v2 is orders of magnitude higher performance"
              - pkg: k8s.io/apimachinery/pkg/util/sets
                desc: "use istio.io/istio/pkg/util/sets"
              - pkg: k8s.io/utils/env
                desc: "use istio.io/istio/pkg/env"
              - pkg: k8s.io/utils/strings/slices
                desc: "use istio.io/istio/pkg/slices"
              - pkg: k8s.io/utils/pointer
                desc: "use istio.io/istio/pkg/ptr"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. manifests/addons/dashboards/lib/panels.libsonnet

          + custom.withGradientMode('hue')
          + if std.length(desc) > 0 then
            timeSeries.panelOptions.withDescription(desc)
          else {},
    
        simple(title, targets, desc=''):
          self.base(title, targets, desc)
          + options.legend.withCalcs([])
          + options.legend.withDisplayMode('list'),
    
        short(title, targets, desc=''):
          self.base(title, targets, desc)
          + timeSeries.standardOptions.withUnit('short')
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. operator/pkg/translate/translate_common_test.go

    	tests := []struct {
    		desc     string
    		yamlStr  string
    		want     []string
    		wantErrs bool
    	}{
    		{
    			desc:    "nil success",
    			yamlStr: "",
    			want:    nil,
    		},
    		{
    			desc: "all components disabled",
    			yamlStr: `
    components:
      pilot:
        enabled: false
      ingressGateways:
      - enabled: false`,
    			want: nil,
    		},
    		{
    			desc: "only pilot component enabled",
    			yamlStr: `
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 21 22:14:28 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  6. cluster/gce/gci/apiserver_etcd_test.go

    }
    
    func TestServerOverride(t *testing.T) {
    	testCases := []struct {
    		desc string
    		env  kubeAPIServeETCDEnv
    		want []string
    	}{
    		{
    			desc: "ETCD-SERVERS is not set - default override",
    			want: []string{
    				"--etcd-servers-overrides=/events#http://127.0.0.1:4002",
    			},
    		},
    		{
    			desc: "ETCD-SERVERS and ETCD_SERVERS_OVERRIDES are set",
    			env: kubeAPIServeETCDEnv{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 18 11:14:24 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  7. pkg/apis/discovery/v1beta1/conversion_test.go

    )
    
    func TestEndpointZoneConverstion(t *testing.T) {
    	testcases := []struct {
    		desc     string
    		external v1beta1.Endpoint
    		internal discovery.Endpoint
    	}{
    		{
    			desc:     "no topology field",
    			external: v1beta1.Endpoint{},
    			internal: discovery.Endpoint{},
    		},
    		{
    			desc: "non empty topology map, but no zone",
    			external: v1beta1.Endpoint{
    				Topology: map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 05 10:48:05 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

                    from 'path'
                    into 'dest'
                    filesMatching ('**/a*') {
                        name = "DEST-" + sourceName
                    }
                }
            '''.stripIndent()
    
            when:
            run 'copy'
    
            then:
            file('dest').assertHasDescendants('bcd.txt', 'DEST-abc.txt')
            file('dest/DEST-abc.txt').text == 'content'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  9. src/path/filepath/symlink.go

    				if len(dest) > volLen {
    					dest += pathSeparator
    				}
    				dest += ".."
    			} else {
    				// Discard everything since the last slash.
    				dest = dest[:r]
    			}
    			continue
    		}
    
    		// Ordinary path component. Add it to result.
    
    		if len(dest) > filepathlite.VolumeNameLen(dest) && !os.IsPathSeparator(dest[len(dest)-1]) {
    			dest += pathSeparator
    		}
    
    		dest += path[start:end]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. src/compress/bzip2/bzip2_test.go

    }
    
    func TestReader(t *testing.T) {
    	var vectors = []struct {
    		desc   string
    		input  []byte
    		output []byte
    		fail   bool
    	}{{
    		desc: "hello world",
    		input: mustDecodeHex("" +
    			"425a68393141592653594eece83600000251800010400006449080200031064c" +
    			"4101a7a9a580bb9431f8bb9229c28482776741b0",
    		),
    		output: []byte("hello world\n"),
    	}, {
    		desc: "concatenated files",
    		input: mustDecodeHex("" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 6.3K bytes
    - Viewed (0)
Back to top