Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 257 for newRat (0.11 sec)

  1. src/vendor/golang.org/x/net/http2/hpack/tables.go

    	ents       []HeaderField
    	evictCount uint64
    
    	// byName maps a HeaderField name to the unique id of the newest entry with
    	// the same name. See above for a definition of "unique id".
    	byName map[string]uint64
    
    	// byNameValue maps a HeaderField name/value pair to the unique id of the newest
    	// entry with the same name and value. See above for a definition of "unique id".
    	byNameValue map[pairNameValue]uint64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 22:32:44 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ir/const.go

    // NewBool returns an OLITERAL representing b as an untyped boolean.
    func NewBool(pos src.XPos, b bool) Node {
    	return NewBasicLit(pos, types.UntypedBool, constant.MakeBool(b))
    }
    
    // NewInt returns an OLITERAL representing v as an untyped integer.
    func NewInt(pos src.XPos, v int64) Node {
    	return NewBasicLit(pos, types.UntypedInt, constant.MakeInt64(v))
    }
    
    // NewString returns an OLITERAL representing s as an untyped string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 18:53:26 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation.go

    	}
    	return allErrs
    }
    
    func ValidateImmutableField(newVal, oldVal interface{}, fldPath *field.Path) field.ErrorList {
    	return apimachineryvalidation.ValidateImmutableField(newVal, oldVal, fldPath)
    }
    
    func ValidateImmutableAnnotation(newVal string, oldVal string, annotation string, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    
    	if oldVal != newVal {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  4. pkg/apis/apps/validation/validation_test.go

    			field.Required(field.NewPath("spec", "selector"), ""),
    			field.Invalid(field.NewPath("spec", "template", "metadata", "labels"), nil, ""), // selector is empty, labels are not, so select doesn't match labels
    		},
    	}, {
    		name: "selector_doesnt_match",
    		set:  mkStatefulSet(&validPodTemplate, tweakSelectorLabels(map[string]string{"foo": "bar"})),
    		errs: field.ErrorList{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  5. pkg/test/echo/docker/Dockerfile.app_sidecar_base

    # hadolint ignore=DL3005,DL3008
    RUN apt-get update && \
        apt-get install --no-install-recommends -y \
        ca-certificates \
        curl \
        iptables \
        iproute2 \
        iputils-ping \
        knot-dnsutils \
        netcat-openbsd \
        tcpdump \
        conntrack \
        bsdmainutils \
        net-tools \
        lsof \
        sudo \
        && apt-get upgrade -y \
        && apt-get clean \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 22:55:51 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/walk/builtin.go

    		//     panicmakeslicecap()
    		// }
    		nif := ir.NewIfStmt(base.Pos, ir.NewBinaryExpr(base.Pos, ir.OGT, typecheck.Conv(l, types.Types[types.TUINT64]), ir.NewInt(base.Pos, i)), nil, nil)
    		niflen := ir.NewIfStmt(base.Pos, ir.NewBinaryExpr(base.Pos, ir.OLT, l, ir.NewInt(base.Pos, 0)), nil, nil)
    		niflen.Body = []ir.Node{mkcall("panicmakeslicelen", nil, init)}
    		nif.Body.Append(niflen, mkcall("panicmakeslicecap", nil, init))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:35:22 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  7. pkg/volume/util/resize_util.go

    		return oldPV, fmt.Errorf("unexpected error marshaling old PV %q with error : %v", oldPV.Name, err)
    	}
    
    	newData, err := json.Marshal(newPV)
    	if err != nil {
    		return oldPV, fmt.Errorf("unexpected error marshaling new PV %q with error : %v", newPV.Name, err)
    	}
    
    	patchBytes, err := strategicpatch.CreateTwoWayMergePatch(oldData, newData, oldPV)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:30:35 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  8. pkg/apis/authorization/validation/validation_test.go

    		{NonResourceAttributes: &authorizationapi.NonResourceAttributes{}, Groups: []string{"my-group"}},
    	}
    	for _, successCase := range successCases {
    		if errs := ValidateSubjectAccessReviewSpec(successCase, field.NewPath("spec")); len(errs) != 0 {
    			t.Errorf("expected success: %v", errs)
    		}
    	}
    
    	errorCases := []struct {
    		name string
    		obj  authorizationapi.SubjectAccessReviewSpec
    		msg  string
    	}{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 07:48:42 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  9. src/runtime/mspanset.go

    		if top < spineLen {
    			unlock(&b.spineLock)
    			goto retry
    		}
    
    		spine := b.spine.Load()
    		if spineLen == b.spineCap {
    			// Grow the spine.
    			newCap := b.spineCap * 2
    			if newCap == 0 {
    				newCap = spanSetInitSpineCap
    			}
    			newSpine := persistentalloc(newCap*goarch.PtrSize, cpu.CacheLineSize, &memstats.gcMiscSys)
    			if b.spineCap != 0 {
    				// Blocks are allocated off-heap, so
    				// no write barriers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGFailOnNoTestIntegrationTest.groovy

    import static org.gradle.testing.fixture.JUnitCoverage.LATEST_JUPITER_VERSION
    import static org.gradle.testing.fixture.TestNGCoverage.NEWEST
    
    class TestNGFailOnNoTestIntegrationTest extends TestNGTestFrameworkIntegrationTest {
    
        static final String LATEST_TESTNG_VERSION = NEWEST
    
        def "test source and test task use same test framework"() {
            given:
            buildFile << """
                apply plugin:'java-library'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top