Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 418 for newLru (0.23 sec)

  1. cmd/update_nofips.go

    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    // Newer official download info URLs appear earlier below.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Mar 09 03:07:08 UTC 2024
    - 931 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_list_upgrade_pseudo.txt

    #   * v0.1.0
    #   * v0.0.0-20190430073000-30950c05d534
    # Only v0.1.0 is tagged.
    #
    # The v0.1.1 pseudo-version is semantically higher than the latest tag.
    # The v0.0.0 pseudo-version is chronologically newer.
    
    # The latest pseudo-version is semantically higher than the latest tag.
    # 'list -u' should not suggest a lower version as an upgrade.
    
    go get example.com/pseudoupgrade@b5426c8
    go list -m -u all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 779 bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/upgrade/preflight.go

    			"Each plugin listed should be manually verified for compatibility with the newer version of CoreDNS. " +
    			"Once ready, the upgrade can be initiated by skipping the preflight check. During the upgrade, " +
    			"kubeadm will migrate the configuration while leaving the listed plugin configs untouched, " +
    			"but cannot guarantee that they will work with the newer version of CoreDNS.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 25 13:53:28 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/format.go

    }
    
    func (d *Format) ConvertToType(typeVal ref.Type) ref.Val {
    	switch typeVal {
    	case FormatType:
    		return d
    	case types.TypeType:
    		return FormatType
    	default:
    		return types.NewErr("type conversion error from '%s' to '%s'", FormatType, typeVal)
    	}
    }
    
    func (d *Format) Equal(other ref.Val) ref.Val {
    	otherDur, ok := other.(*Format)
    	if !ok {
    		return types.MaybeNoSuchOverloadErr(other)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_go_version_mixed.txt

    # Test that dependencies can use Go language features newer than the
    # Go version specified by the main module.
    
    env GO111MODULE=on
    
    go build
    
    -- go.mod --
    module m
    go 1.12
    require (
    	sub.1 v1.0.0
    )
    replace (
    	sub.1 => ./sub
    )
    
    -- x.go --
    package x
    
    import "sub.1"
    
    func F() { sub.F(0, 0) }
    
    var A sub.Alias
    var D sub.Defined
    
    -- sub/go.mod --
    module m
    go 1.14
    
    -- sub/sub.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 08 21:27:51 UTC 2019
    - 646 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/quantity.go

    }
    
    func (d Quantity) ConvertToType(typeVal ref.Type) ref.Val {
    	switch typeVal {
    	case quantityTypeValue:
    		return d
    	case types.TypeType:
    		return quantityTypeValue
    	default:
    		return types.NewErr("type conversion error from '%s' to '%s'", quantityTypeValue, typeVal)
    	}
    }
    
    func (d Quantity) Equal(other ref.Val) ref.Val {
    	otherDur, ok := other.(Quantity)
    	if !ok {
    		return types.MaybeNoSuchOverloadErr(other)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 11:23:54 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. cmd/update_fips.go

    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    // Newer official download info URLs appear earlier below.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Mar 09 03:07:08 UTC 2024
    - 934 bytes
    - Viewed (0)
  8. src/runtime/rt0_linux_ppc64.s

    	// sequence of string pointers followed by a NULL, and auxv.
    	// There is no TLS base pointer.
    	//
    	// TODO(austin): Support ABI v1 dynamic linking entry point
    	XOR	R0, R0 // Note, newer kernels may not always set R0 to 0.
    	MOVD	$runtime·rt0_go(SB), R12
    	MOVD	R12, CTR
    	MOVBZ	runtime·iscgo(SB), R5
    	CMP	R5, $0
    	BEQ	nocgo
    	BR	(CTR)
    nocgo:
    	MOVD	0(R1), R3 // argc
    	ADD	$8, R1, R4 // argv
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 22:20:51 UTC 2023
    - 847 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/library/ip.go

    	if !ok {
    		return types.MaybeNoSuchOverloadErr(arg)
    	}
    
    	addr, err := parseIPAddr(s)
    	if err != nil {
    		// Don't add context, we control the error message already.
    		return types.NewErr("%v", err)
    	}
    
    	return apiservercel.IP{
    		Addr: addr,
    	}
    }
    
    func ipToString(arg ref.Val) ref.Val {
    	ip, ok := arg.(apiservercel.IP)
    	if !ok {
    		return types.MaybeNoSuchOverloadErr(arg)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 11:02:34 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/upgrade/policy_test.go

    				kubeadmVersion: "v1.12.3",
    			},
    			newK8sVersion:         "v1.10.10",
    			expectedMandatoryErrs: 1, // version must be higher than v1.12.0
    			expectedSkippableErrs: 1, // can't upgrade old k8s with newer kubeadm
    		},
    		{
    			name: "upgrading two minor versions in one go is not supported",
    			vg: &fakeVersionGetter{
    				clusterVersion: "v1.11.3",
    				kubeletVersion: "v1.11.3",
    				kubeadmVersion: "v1.13.0",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 03:17:05 UTC 2023
    - 9.9K bytes
    - Viewed (0)
Back to top