Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 2,639 for ensure (0.14 sec)

  1. src/reflect/float32reg_riscv64.s

    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    
    // riscv64 allows 32-bit floats to live in the bottom
    // part of the register, it expects them to be NaN-boxed.
    // These functions are needed to ensure correct conversions
    // on riscv64.
    
    // Convert float32->uint64
    TEXT ·archFloat32ToReg(SB),NOSPLIT,$0-16
    	MOVF	val+0(FP), F1
    	MOVD	F1, ret+8(FP)
    	RET
    
    // Convert uint64->float32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 04 13:38:32 UTC 2022
    - 794 bytes
    - Viewed (0)
  2. pkg/kubeapiserver/options/plugins_test.go

    limitations under the License.
    */
    
    package options
    
    import (
    	"strings"
    	"testing"
    )
    
    func TestAdmissionPluginOrder(t *testing.T) {
    	// Ensure the last four admission plugins listed are webhooks, quota, and deny
    	allplugins := strings.Join(AllOrderedPlugins, ",")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 21:38:55 UTC 2022
    - 1K bytes
    - Viewed (0)
  3. src/reflect/float32reg_ppc64x.s

    //go:build ppc64 || ppc64le
    
    #include "textflag.h"
    
    // On PPC64, the float32 becomes a float64
    // when loaded in a register, different from
    // other platforms. These functions are
    // needed to ensure correct conversions on PPC64.
    
    // Convert float32->uint64
    TEXT ·archFloat32ToReg(SB),NOSPLIT,$0-16
    	FMOVS	val+0(FP), F1
    	FMOVD	F1, ret+8(FP)
    	RET
    
    // Convert uint64->float32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 838 bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/testdata/pgo/devirtualize/devirt.go

    // Devirtualization of callees from transitive dependencies should work even if
    // they aren't directly referenced in the package. See #61577.
    //
    // Dots in the last package path component are escaped in symbol names. Use one
    // to ensure the escaping doesn't break lookup.
    import (
    	"fmt"
    
    	"example.com/pgo/devirtualize/mult.pkg"
    )
    
    var sink int
    
    type Adder interface {
    	Add(a, b int) int
    }
    
    type Add struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 13 18:17:57 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  5. cluster/gce/gci/helper.sh

    # limitations under the License.
    
    # A library of helper functions and constant for GCI distro
    
    # Creates the GCI specific metadata files if they do not exit.
    # Assumed var
    #   KUBE_TEMP
    function ensure-gci-metadata-files {
      if [[ ! -f "${KUBE_TEMP}/gci-update.txt" ]]; then
        echo -n "update_disabled" > "${KUBE_TEMP}/gci-update.txt"
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 17 19:00:22 UTC 2022
    - 919 bytes
    - Viewed (0)
  6. src/internal/abi/escape.go

    import "unsafe"
    
    // NoEscape hides the pointer p from escape analysis, preventing it
    // from escaping to the heap. It compiles down to nothing.
    //
    // WARNING: This is very subtle to use correctly. The caller must
    // ensure that it's truly safe for p to not escape to the heap by
    // maintaining runtime pointer invariants (for example, that globals
    // and the heap may not generally point into a stack).
    //
    //go:nosplit
    //go:nocheckptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 884 bytes
    - Viewed (0)
  7. pkg/kubelet/cm/doc.go

    limitations under the License.
    */
    
    // Package cm (abbreviation of "container manager") and its subpackages contain all the kubelet code
    // to manage containers. For example, they contain functions to configure containers' cgroups,
    // ensure containers run with the desired QoS, and allocate compute resources like cpus, memory,
    // devices...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 05 18:20:51 UTC 2023
    - 934 bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ConcurrentBuildsArtifactTransformIntegrationTest.groovy

    }
    block1.mustRunAfter redThings
    blueThings.mustRunAfter block1
    
    task block2 {
        doLast {
            ${server.callFromBuild("block2")}
        }
    }
    block2.mustRunAfter blueThings
    
    """
            // Ensure build scripts compiled
            run("help")
    
            def block1 = server.expectAndBlock("block1")
            def block2 = server.expectAndBlock("block2")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. test/fixedbugs/issue19012.go

    // Copyright 2017 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.
    
    // Issue 19012: if we have any unknown type at a call site,
    // we must ensure that we return to the user a suppressed
    // error message saying instead of including <T> in
    // the message.
    
    package main
    
    func f(x int, y uint) {
    	if true {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 28 22:22:08 UTC 2023
    - 872 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_get_major.txt

    [short] skip
    [!git] skip
    
    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    
    # golang.org/issue/34383: if a module path ends in a major-version suffix,
    # ensure that 'direct' mode can resolve the package to a module.
    
    go get vcs-test.golang.org/git/v3pkg.git/v3@v3.0.0
    
    go list -m vcs-test.golang.org/git/v3pkg.git/v3
    stdout '^vcs-test.golang.org/git/v3pkg.git/v3 v3.0.0$'
    
    go get vcs-test.golang.org/git/empty-v2-without-v1.git/v2@v2.0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 616 bytes
    - Viewed (0)
Back to top