Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for CD (0.04 sec)

  1. istioctl/pkg/describe/describe.go

    		},
    	}
    }
    
    func (v *myProtoValue) keyAsString(key string) string {
    	s := v.keyAsStruct(key)
    	return s.GetStringValue()
    }
    
    func getIstioRBACPolicies(cd *configdump.Wrapper, port int32) ([]string, error) {
    	hcm, err := getInboundHTTPConnectionManager(cd, port)
    	if err != nil || hcm == nil {
    		return []string{}, err
    	}
    
    	// Identify RBAC policies. Currently there are no "breadcrumbs" so we only return the policy names.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  2. src/fmt/fmt_test.go

    	{"%# 08x", []byte{0xab}, "00000xab"},
    	{"%10x", []byte{0xab, 0xcd}, "      abcd"},
    	{"% 10x", []byte{0xab, 0xcd}, "     ab cd"},
    	{"%#10x", []byte{0xab, 0xcd}, "    0xabcd"},
    	{"%# 10x", []byte{0xab, 0xcd}, " 0xab 0xcd"},
    	{"%010x", []byte{0xab, 0xcd}, "000000abcd"},
    	{"% 010x", []byte{0xab, 0xcd}, "00000ab cd"},
    	{"%#010x", []byte{0xab, 0xcd}, "00000xabcd"},
    	{"%# 010x", []byte{0xab, 0xcd}, "00xab 0xcd"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  3. cluster/gce/windows/k8s-node-setup.psm1

          MustDownload-File -OutFile $install_dir\td.zip -URLs $url
    
          cd $install_dir
          Log-Output 'Extracting Logging agent'
          Expand-Archive td.zip
          mv .\td\td-agent-bit-${LOGGINGAGENT_VERSION}-win64\ $LOGGINGAGENT_ROOT
          cd C:\
          Remove-Item -Force -Recurse $install_dir
      }
    
      # Download Logging exporter if needed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  4. src/encoding/xml/marshal_test.go

    		UnmarshalOnly: true,
    	},
    
    	// Check that []byte works, including named []byte types.
    	{
    		Value:     &Data{Bytes: []byte("ab"), Custom: MyBytes("cd"), Attr: []byte{'v'}},
    		ExpectXML: `<Data Attr="v"><Bytes>ab</Bytes><Custom>cd</Custom></Data>`,
    	},
    
    	// Test innerxml
    	{
    		Value: &SecretAgent{
    			Handle:    "007",
    			Identity:  "James Bond",
    			Obfuscate: "<redacted/>",
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  5. hack/local-up-cluster.sh

      cni_plugins_url="${CNI_PLUGINS_URL}/${CNI_PLUGINS_VERSION}/${cni_plugin_tarball}"
      cni_plugin_sha_url="${cni_plugins_url}.sha256"
    
      echo "Installing CNI plugin binaries ..." &&
        cd "${TMP_DIR}" &&
        curl -sSL --retry 5 -o "${cni_plugin_tarball}" "${cni_plugins_url}" &&
        curl -sSL --retry 5 -o "${cni_plugin_tarball}.sha256" "${cni_plugin_sha_url}" &&
        sha256sum -c "${cni_plugin_tarball}.sha256" &&
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. src/cmd/dist/build.go

    		fatalf("internal/goversion/goversion.go does not contain 'const Version = ...'")
    	}
    	version := fmt.Sprintf("devel go1.%s-", m[1])
    	version += chomp(run(goroot, CheckExit, "git", "log", "-n", "1", "--format=format:%h %cd", "HEAD"))
    
    	// Cache version.
    	writefile(version, path, 0)
    
    	return version
    }
    
    // isGitRepo reports whether the working directory is inside a Git repository.
    func isGitRepo() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

                "items": {
                  "allOf": [
                    {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  8. src/regexp/syntax/parse.go

    //
    // For example,
    //
    //	ABC|ABD|AEF|BCX|BCY
    //
    // simplifies by literal prefix extraction to
    //
    //	A(B(C|D)|EF)|BC(X|Y)
    //
    // which simplifies by character class introduction to
    //
    //	A(B[CD]|EF)|BC[XY]
    func (p *parser) factor(sub []*Regexp) []*Regexp {
    	if len(sub) < 2 {
    		return sub
    	}
    
    	// Round 1: Factor out common literal prefixes.
    	var str []rune
    	var strflags Flags
    	start := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  9. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // housekeeping, and users typically shouldn't need to set or
      // understand this field. A workflow can be the user's name, a
      // controller's name, or the name of a specific apply path like
      // "ci-cd". The set of fields is always in the version that the
      // workflow used when modifying the object.
      //
      // +optional
      repeated ManagedFieldsEntry managedFields = 17;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // housekeeping, and users typically shouldn't need to set or
      // understand this field. A workflow can be the user's name, a
      // controller's name, or the name of a specific apply path like
      // "ci-cd". The set of fields is always in the version that the
      // workflow used when modifying the object.
      //
      // +optional
      // +listType=atomic
      repeated ManagedFieldsEntry managedFields = 17;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
Back to top