Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for ip_port (0.16 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/cmd/compile/internal/typecheck/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 iexport.go for the export data format.
    
    package typecheck
    
    import (
    	"cmd/compile/internal/base"
    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/types"
    )
    
    // HaveInlineBody reports whether we have fn's inline body available
    // for inlining.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:52:50 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/gofmt/testdata/import.golden

    )
    
    import (
    	// a block with comments
    	"errors"
    	"fmt" // for Printf
    	"io"  // for Reader
    	"log" // for Fatal
    	"math"
    )
    
    import (
    	"fmt" // for Printf
    
    	"math"
    
    	"log" // for Fatal
    
    	"errors"
    
    	"io" // for Reader
    )
    
    import (
    	// for Printf
    	"fmt"
    
    	"math"
    
    	// for Fatal
    	"log"
    
    	"errors"
    
    	// for Reader
    	"io"
    )
    
    import (
    	"errors"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 28 23:33:26 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. pkg/kubemark/.import-restrictions

    rules:
      # override pkg/ import restriction on cmd/ for kubemark
      - selectorRegexp: k8s[.]io/kubernetes/cmd
        allowedPrefixes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 13:47:54 UTC 2023
    - 172 bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. test/import.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that when import gives multiple names
    // to a single type, they still all refer to the same type.
    
    package main
    
    import _os_ "os"
    import "os"
    import . "os"
    
    func f(e *os.File)
    
    func main() {
    	var _e_ *_os_.File
    	var dot *File
    
    	f(_e_)
    	f(dot)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 07:47:26 UTC 2012
    - 425 bytes
    - Viewed (0)
Back to top