Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 719 for phsh (0.04 sec)

  1. src/cmd/link/internal/ld/elf.go

    		pnotei.Flags = elf.PF_R
    		phsh(pnotei, sh)
    	}
    
    	if len(buildinfo) > 0 {
    		sh := elfshname(".note.gnu.build-id")
    		resoff -= int64(elfbuildinfo(sh, uint64(startva), uint64(resoff)))
    		phsh(getpnote(), sh)
    	}
    
    	if *flagBuildid != "" {
    		sh := elfshname(".note.go.buildid")
    		resoff -= int64(elfgobuildid(sh, uint64(startva), uint64(resoff)))
    		phsh(getpnote(), sh)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. src/cmd/link/testdata/linkname/push.go

    // Copyright 2024 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.
    
    // "Push" linknames are ok.
    
    package main
    
    import (
    	"cmd/link/testdata/linkname/p"
    	_ "unsafe"
    )
    
    // Push f1 to p.
    //
    //go:linkname f1 cmd/link/testdata/linkname/p.f1
    func f1() { f2() }
    
    // f2 is pushed from p.
    //
    //go:linkname f2
    func f2()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:05:33 UTC 2024
    - 426 bytes
    - Viewed (0)
  3. hack/dev-push-conformance.sh

    # REGISTRY and VERSION must be set.
    # Example usage:
    #   $ export REGISTRY=gcr.io/someone
    #   $ export VERSION=v1.4.0-testfix
    #   ./hack/dev-push-conformance.sh
    # That will build and push gcr.io/someone/conformance-amd64:v1.4.0-testfix
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT="$(dirname "${BASH_SOURCE[0]}")/.."
    source "${KUBE_ROOT}/build/common.sh"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 08 02:46:11 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  4. hack/dev-build-and-push.sh

    # This script will build a dev release and push it to an existing cluster.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    # Build a dev release
    if ! make -f "${KUBE_ROOT}"/Makefile quick-release
    then
            echo "Building a release failed!"
            exit 1
    fi
    
    # Now push this out to the cluster
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 22 00:39:55 UTC 2019
    - 987 bytes
    - Viewed (0)
  5. releasenotes/notes/scope-push-by-sidecar-changes.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: networking
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 01 03:09:01 UTC 2021
    - 175 bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/push-tpose-through-ewise.mlir

    // RUN: tf-opt %s --push-transpose-through-ewise --split-input-file | FileCheck %s
    
    // CHECK-LABEL: pushTposeAfterAddSimple
    func.func @pushTposeAfterAddSimple(%arg0: tensor<2x3x4x5xf32>) -> tensor<5x2x3x4xf32> {
      %perm = arith.constant dense<[3, 0, 1, 2]> : tensor<4xi32>
      %0 = "tfl.transpose"(%arg0, %perm) : (tensor<2x3x4x5xf32>, tensor<4xi32>) -> tensor<5x2x3x4xf32>
      %cst = arith.constant dense<1.0> : tensor<5x2x3x4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. releasenotes/notes/full-push-regression.yaml

    John Howard <******@****.***> 1662986093 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 12 12:34:53 UTC 2022
    - 213 bytes
    - Viewed (0)
  8. releasenotes/notes/xds-push-deadlock.yaml

    John Howard <******@****.***> 1654795350 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 09 17:22:30 UTC 2022
    - 199 bytes
    - Viewed (0)
  9. releasenotes/notes/drop-legacy-partial-full-push.yaml

    John Howard <******@****.***> 1682620609 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 27 18:36:49 UTC 2023
    - 145 bytes
    - Viewed (0)
  10. pkg/dns/server/name_table_test.go

    	push := model.NewPushContext()
    	push.Mesh = mesh
    	push.AddPublicServices([]*model.Service{headlessService})
    	push.AddServiceInstances(headlessService,
    		makeServiceInstances(pod1, headlessService, "pod1", "headless-svc"))
    	push.AddServiceInstances(headlessService,
    		makeServiceInstances(pod2, headlessService, "pod2", "headless-svc"))
    	push.AddServiceInstances(headlessService,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 04:26:03 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top