Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for ip_port (0.15 sec)

  1. pkg/controlplane/apiserver/server.go

    		if err != nil {
    			return err
    		}
    
    		// convenience label to easily map a lease object to a specific apiserver
    		lease.Labels[apiv1.LabelHostname] = hostname
    
    		// Include apiserver network location <ip_port> used by peers to proxy requests between kube-apiservers
    		if utilfeature.DefaultFeatureGate.Enabled(features.UnknownVersionInteroperabilityProxy) {
    			if peeraddress != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 19:24:41 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. src/go/internal/gcimporter/iimport.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Indexed package import.
    // See cmd/compile/internal/gc/iexport.go for the export data format.
    
    package gcimporter
    
    import (
    	"bufio"
    	"bytes"
    	"encoding/binary"
    	"fmt"
    	"go/constant"
    	"go/token"
    	"go/types"
    	"internal/saferio"
    	"io"
    	"math"
    	"math/big"
    	"slices"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. src/go/ast/import.go

    package ast
    
    import (
    	"cmp"
    	"go/token"
    	"slices"
    	"strconv"
    )
    
    // SortImports sorts runs of consecutive import lines in import blocks in f.
    // It also removes duplicate imports when it is possible to do so without data loss.
    func SortImports(fset *token.FileSet, f *File) {
    	for _, d := range f.Decls {
    		d, ok := d.(*GenDecl)
    		if !ok || d.Tok != token.IMPORT {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. cmd/import-boss/testdata/simple-fwd/aaa/.import-restrictions

    rules:
      - selectorRegexp: k8s[.]io
        allowedPrefixes:
          - k8s.io/kubernetes/cmd/import-boss/testdata/simple-fwd/allowed
        forbiddenPrefixes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 222 bytes
    - Viewed (0)
  5. src/cmd/compile/internal/typecheck/iexport.go

    // index table, which allows efficient random access of individual
    // declarations and inline function bodies. In turn, this allows
    // avoiding unnecessary work for compilation units that import large
    // packages.
    //
    //
    // The top-level data format is structured as:
    //
    //     Header struct {
    //         Tag        byte   // 'i'
    //         Version    uvarint
    //         StringSize uvarint
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 21 02:40:02 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  6. cmd/import-boss/testdata/nested-fwd/.import-restrictions

    rules:
      - selectorRegexp: k8s[.]io
        allowedPrefixes:
          - k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/allowed-by-root
          - k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/allowed-by-both
        forbiddenPrefixes:
          - k8s.io/kubernetes/cmd/import-boss/testdata/nested-fwd/forbidden-by-root
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 396 bytes
    - Viewed (0)
  7. cmd/import-boss/testdata/inverse/allowed/.import-restrictions

    inverseRules:
      - selectorRegexp: k8s[.]io
        allowedPrefixes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 127 bytes
    - Viewed (0)
  8. cmd/import-boss/testdata/transitive/forbidden/.import-restrictions

    inverseRules:
      - selectorRegexp: k8s[.]io
        forbiddenPrefixes:
          - k8s.io/kubernetes/cmd/import-boss/testdata/transitive/aaa
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 153 bytes
    - Viewed (0)
  9. cmd/import-boss/testdata/inverse/forbidden/.import-restrictions

    inverseRules:
      - selectorRegexp: k8s[.]io
        forbiddenPrefixes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 129 bytes
    - Viewed (0)
  10. cmd/import-boss/testdata/transitive/allowed/.import-restrictions

    inverseRules:
      - selectorRegexp: k8s[.]io
        allowedPrefixes:
          - k8s.io/kubernetes/cmd/import-boss/testdata/transitive/aaa
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 151 bytes
    - Viewed (0)
Back to top