Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for extr6 (0.14 sec)

  1. pkg/api/pod/util_test.go

    	}
    	if extraPaths := secretPaths.Difference(expectedSecretPaths); len(extraPaths) > 0 {
    		t.Logf("Extra secret paths:\n%s", strings.Join(sets.List[string](extraPaths), "\n"))
    		t.Error("Extra fields with 'secret' in the name found. Verify VisitPodSecretNames() is including these fields if appropriate, then correct expectedSecretPaths")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    			oneNewExtraM()
    		}
    	} else if extraMLength.Load() == 0 {
    		// Make sure there is at least one extra M.
    		oneNewExtraM()
    	}
    }
    
    // oneNewExtraM allocates an m and puts it on the extra list.
    func oneNewExtraM() {
    	// Create extra goroutine locked to extra m.
    	// The goroutine is the context in which the cgo callback will run.
    	// The sched.pc will never be returned to, but setting it to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  3. fastapi/applications.py

                    another one for output.
                    """
                ),
            ] = True,
            **extra: Annotated[
                Any,
                Doc(
                    """
                    Extra keyword arguments to be stored in the app, not used by FastAPI
                    anywhere.
                    """
                ),
            ],
        ) -> None:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  4. src/crypto/x509/x509_test.go

    	nn := pkix.Name{}
    	nn.FillFromRDNSequence(&rdns)
    
    	// Check that zero-length non-nil ExtraNames hide Names.
    	extra := []pkix.AttributeTypeAndValue{
    		{Type: asn1.ObjectIdentifier([]int{1, 2, 3, 4, 5}), Value: "backing array"}}
    	extraNotNil := pkix.Name{
    		Locality:   []string{"Gophertown"},
    		ExtraNames: extra[:0],
    		Names: []pkix.AttributeTypeAndValue{
    			{Type: asn1.ObjectIdentifier([]int{1, 2, 3, 4, 5}), Value: "golang.org"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  5. cluster/gce/util.sh

      local -r primary_cn="${1}"
    
      # Determine extra certificate names for master
    
      # Create service_ip by stripping the network mask part from
      # SERVICE_CLUSTER_IP_RANGE and incrementing the host part with 1
      service_ip=${SERVICE_CLUSTER_IP_RANGE%/*}
      service_ip="${service_ip%.*}.$((${service_ip##*.} + 1))"
      local sans=""
      for extra in "$@"; do
        if [[ -n "${extra}" ]]; then
          sans="${sans}IP:${extra},"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  6. src/reflect/all_test.go

    	for i, test := range appendTests {
    		origLen, extraLen := len(test.orig), len(test.extra)
    		want := append(test.orig, test.extra...)
    		// Convert extra from []int to []Value.
    		e0 := make([]Value, len(test.extra))
    		for j, e := range test.extra {
    			e0[j] = ValueOf(e)
    		}
    		// Convert extra from []int to *SliceValue.
    		e1 := ValueOf(test.extra)
    
    		// Test Append.
    		a0 := ValueOf(&test.orig).Elem()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    	return b.compilerCmd(b.fcExe(), incdir, workdir)
    }
    
    // ccExe returns the CC compiler setting without all the extra flags we add implicitly.
    func (b *Builder) ccExe() []string {
    	return envList("CC", cfg.DefaultCC(cfg.Goos, cfg.Goarch))
    }
    
    // cxxExe returns the CXX compiler setting without all the extra flags we add implicitly.
    func (b *Builder) cxxExe() []string {
    	return envList("CXX", cfg.DefaultCXX(cfg.Goos, cfg.Goarch))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-helper.sh

      local -r dst_dir="/etc/kubernetes/$1/$2"
    
      copy-manifests "${src_dir}/$2" "${dst_dir}"
    }
    
    # A function that downloads extra addons from a URL and puts them in the GCI
    # manifests directory.
    function download-extra-addons {
      local -r out_dir="${KUBE_HOME}/kube-manifests/kubernetes/gci-trusty/gce-extras"
    
      mkdir -p "${out_dir}"
    
      # shellcheck disable=SC2206
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    }
    
    func DnsQuery(name string, qtype uint16, options uint32, extra *byte, qrs **DNSRecord, pr *byte) (status error) {
    	var _p0 *uint16
    	_p0, status = syscall.UTF16PtrFromString(name)
    	if status != nil {
    		return
    	}
    	return _DnsQuery(_p0, qtype, options, extra, qrs, pr)
    }
    
    func _DnsQuery(name *uint16, qtype uint16, options uint32, extra *byte, qrs **DNSRecord, pr *byte) (status error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster_builder_test.go

    			passthrough := cb.buildInboundPassthroughCluster()
    			ips := sets.New[string]()
    			ips.Insert(passthrough.GetUpstreamBindConfig().GetSourceAddress().Address)
    			for _, extra := range passthrough.GetUpstreamBindConfig().GetExtraSourceAddresses() {
    				ips.Insert(extra.GetAddress().GetAddress())
    			}
    			want := sets.New[string]()
    			if tt.ipv4Expected {
    				want.Insert("127.0.0.6")
    			}
    			if tt.ipv6Expected {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
Back to top