Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 232 for _notoc (0.33 sec)

  1. src/cmd/link/internal/ppc64/asm.go

    					ldr.Errorf(s, "Unsupported NOTOC external reference call into %s", ldr.SymName(r.Sym()))
    
    				case sym.STEXT:
    					targ := r.Sym()
    					if (ldr.AttrExternal(targ) && ldr.SymLocalentry(targ) <= 1) || (!ldr.AttrExternal(targ) && (!ldr.AttrShared(targ) || hasPCrel)) {
    						// This is NOTOC to NOTOC call (st_other is 0 or 1). No call stub is needed.
    					} else {
    						// This is a NOTOC to TOC function. Generate a calling stub.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  2. hack/lib/protoc.sh

          ln -fns "${download_folder}" protoc
          mv protoc/bin/protoc protoc/protoc
          chmod -R +rX protoc/protoc
          rm -fr protoc/include
          rm "${download_file}"
        fi
        kube::log::info "protoc v${PROTOC_VERSION} installed. To use:"
        kube::log::info "export PATH=\"$(pwd)/protoc:\${PATH}\""
      )
    }
    
    # Marker function to indicate protoc.sh has been fully sourced
    kube::protoc::loaded() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 20:53:13 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. hack/install-protoc.sh

    # limitations under the License.
    
    # This script is convenience to download and install protoc in third_party.
    # Usage: `hack/install-protoc.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/protoc.sh"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 26 23:00:08 UTC 2023
    - 876 bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/test/stubtest_linux_ppc64le.S

    // NOTOC -> dynamic [P8/default]: A P8 compatible, non-PIC stub is generated
    // NOTOC -> dynamic [P8/pie]:     A P8 compatible, PIC stub is generated
    //
    //
    // Some notes about other cases:
    //   TOC -> TOC, NOTOC -> NOTOC, NOTOC -> TOC  local calls do not require require call stubs.
    //   TOC -> NOTOC (R2 is preserved, st_other==0): A special case where a call stub is not needed.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 15:06:17 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. hack/_update-generated-protobuf-dockerized.sh

    source "${KUBE_ROOT}/hack/lib/init.sh"
    source "${KUBE_ROOT}/hack/lib/protoc.sh"
    
    kube::protoc::check_protoc
    kube::golang::setup_env
    
    GOPROXY=off go install k8s.io/code-generator/cmd/go-to-protobuf
    GOPROXY=off go install k8s.io/code-generator/cmd/go-to-protobuf/protoc-gen-gogo
    
    # requires the 'proto' tag to build (will remove when ready)
    # searches for the protoc-gen-gogo extension in the output directory
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:32 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. .gitignore

    *~
    # python artifacts
    *.pyc
    # pilot
    pilot/pkg/kube/config
    pilot/pkg/proxy/envoy/envoy
    # lint
    lintconfig.gen.json
    .istiorc
    .istiorc.mk
    # codegen stuff
    bin/adapterlinter
    bin/protoc-gen-gogoslick*
    bin/protoc-min-version*
    bin/protoc-gen-docs*
    bin/testlinter
    bin/envvarlinter
    bin/istioctl
    *.orig
    # Avoid accidental istio.VERSION changes
    istio.VERSION
    LICENSES.txt
    # Proxy generated proxy config in integration test
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 21:20:01 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. pkg/test/echo/proto/echo_grpc.pb.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // Code generated by protoc-gen-go-grpc. DO NOT EDIT.
    // versions:
    // - protoc-gen-go-grpc v1.3.0
    // - protoc             (unknown)
    // source: test/echo/proto/echo.proto
    
    // Generate with protoc --go_out=. echo.proto -I /work/common-protos/ -I.
    
    package proto
    
    import (
    	context "context"
    	grpc "google.golang.org/grpc"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 26 01:14:28 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. hack/_update-generated-proto-bindings-dockerized.sh

    KUBE_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/../" && pwd -P)"
    
    source "${KUBE_ROOT}/hack/lib/init.sh"
    source "${KUBE_ROOT}/hack/lib/protoc.sh"
    source "${KUBE_ROOT}/hack/lib/util.sh"
    
    if [ "$#" == 0 ]; then
        echo "usage: $0 <api_dir>..."
        exit 1
    fi
    
    kube::protoc::check_protoc
    
    for api; do
        # This can't use `git ls-files` because it runs in a container without the
        # .git dir synced.
        protos=()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:04 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. .gitignore

    /cluster/env.sh
    
    # Compiled binaries in third_party
    /third_party/pkg
    
    # Also ignore etcd installed by hack/install-etcd.sh
    /third_party/etcd*
    /default.etcd
    
    # Also ignore protoc installed by hack/install-protoc.sh
    /third_party/protoc*
    
    # User cluster configs
    .kubeconfig
    
    .tags*
    
    # Version file for dockerized build
    .dockerized-kube-version-defs
    
    # Web UI
    /www/master/node_modules/
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. test/slice3.go

    	v1 = 1
    	v2 = 2
    	v3 = 3
    	v4 = 4
    	v5 = 5
    	v10 = 10
    	v20 = 20
    )
    
    func notOK() {
    	if ok {
    		println("BUG:")
    		ok = false
    	}
    }
    
    func checkSlice(desc string, f func() []byte, xbase, xlen, xcap int) {
    	defer func() {
    		if err := recover(); err != nil {
    			if xbase >= 0 {
    				notOK()
    				println(desc, " unexpected panic: ", fmt.Sprint(err))
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 2.9K bytes
    - Viewed (0)
Back to top