Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 77 for ptrval (0.56 sec)

  1. pkg/apis/batch/v1beta1/zz_generated.defaults.go

    			}
    			if a.LivenessProbe.ProbeHandler.GRPC != nil {
    				if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
    					var ptrVar1 string = ""
    					a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
    				}
    			}
    		}
    		if a.ReadinessProbe != nil {
    			v1.SetDefaults_Probe(a.ReadinessProbe)
    			if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 20:39:47 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  2. pkg/apis/apps/v1beta1/zz_generated.defaults.go

    			}
    			if a.LivenessProbe.ProbeHandler.GRPC != nil {
    				if a.LivenessProbe.ProbeHandler.GRPC.Service == nil {
    					var ptrVar1 string = ""
    					a.LivenessProbe.ProbeHandler.GRPC.Service = &ptrVar1
    				}
    			}
    		}
    		if a.ReadinessProbe != nil {
    			v1.SetDefaults_Probe(a.ReadinessProbe)
    			if a.ReadinessProbe.ProbeHandler.HTTPGet != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 17 17:31:23 UTC 2021
    - 20.8K bytes
    - Viewed (0)
  3. pkg/volume/iscsi/iscsi_util_test.go

    	portal, iqn, err := extractPortalAndIqn(devicePath)
    	if err != nil || portal != "127.0.0.1:3260" || iqn != "iqn.2014-12.com.example:test.tgt00" {
    		t.Errorf("extractPortalAndIqn: got %v %s %s", err, portal, iqn)
    	}
    	devicePath = "127.0.0.1:3260-eui.02004567A425678D-lun-0"
    	portal, iqn, err = extractPortalAndIqn(devicePath)
    	if err != nil || portal != "127.0.0.1:3260" || iqn != "eui.02004567A425678D" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 18 09:43:07 UTC 2022
    - 14.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/map.go

    				// memo, but it would require detecting whether types are 'tainted' by
    				// references to type parameters.
    				memo: make(map[types.Type]uint32),
    				// Re-using ptrMap ensures that pointer identity is preserved in this
    				// hasher.
    				ptrMap:     h.ptrMap,
    				sigTParams: tparams,
    			}
    		}
    
    		for i := 0; i < tparams.Len(); i++ {
    			tparam := tparams.At(i)
    			hash += 7 * h.Hash(tparam.Constraint())
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. pkg/volume/iscsi/iscsi_test.go

    		t.Errorf("Expected true for mounter.IsReadOnly")
    	}
    }
    
    func TestPortalMounter(t *testing.T) {
    	if portal := portalMounter("127.0.0.1"); portal != "127.0.0.1:3260" {
    		t.Errorf("wrong portal: %s", portal)
    	}
    	if portal := portalMounter("127.0.0.1:3260"); portal != "127.0.0.1:3260" {
    		t.Errorf("wrong portal: %s", portal)
    	}
    }
    
    type testcase struct {
    	name      string
    	defaultNs string
    	spec      *volume.Spec
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 15:56:32 UTC 2022
    - 16.4K bytes
    - Viewed (0)
  6. pkg/volume/iscsi/iscsi.go

    // volumeName: pv0001
    func (iscsi *iscsiDisk) GetPodDeviceMapPath() (string, string) {
    	return iscsi.iscsiPodDeviceMapPath()
    }
    
    func portalMounter(portal string) string {
    	if !strings.Contains(portal, ":") {
    		portal = portal + ":3260"
    	}
    	return portal
    }
    
    // get iSCSI volume info: readOnly and fstype
    func getISCSIVolumeInfo(spec *volume.Spec) (bool, string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  7. tests/test_openapi_separate_input_output_schemas.py

        @app.post("/items-list/")
        def create_item_list(item: List[Item]):
            return item
    
        @app.get("/items/")
        def read_items() -> List[Item]:
            return [
                Item(
                    name="Portal Gun",
                    description="Device to travel through the multi-rick-verse",
                    sub=SubItem(subname="subname"),
                ),
                Item(name="Plumbus"),
            ]
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Sep 28 04:14:40 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/controller_test.go

    				catchAlls[true] = ftr.fs
    			}
    		}
    		if testDebugLogs {
    			t.Logf("For trial %s, adding wf=%v FlowSchema %s", trial, ftr.wellFormed, fcfmt.Fmt(ftr.fs))
    		}
    	}
    	if n == 0 || rng.Float32() < 0.5 {
    		add(mandFTRCatchAll)
    	}
    	for i := 1; i <= n; i++ {
    		ftr := genFS(t, rng, fmt.Sprintf("%s-fs%d", trial, i), false, goodPLNames, badPLNames)
    		add(ftr)
    	}
    	if n == 0 || rng.Float32() < 0.5 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  9. src/reflect/abi.go

    // next n integer registers.
    //
    // Bit i in ptrMap indicates whether the i'th value is a pointer.
    // n must be <= 8.
    //
    // Returns whether assignment succeeded.
    func (a *abiSeq) assignIntN(offset, size uintptr, n int, ptrMap uint8) bool {
    	if n > 8 || n < 0 {
    		panic("invalid n")
    	}
    	if ptrMap != 0 && size != goarch.PtrSize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. src/cmd/go/internal/load/test.go

    // multiple main packages.
    func recompileForTest(pmain, preal, ptest, pxtest *Package) *PackageError {
    	// The "test copy" of preal is ptest.
    	// For each package that depends on preal, make a "test copy"
    	// that depends on ptest. And so on, up the dependency tree.
    	testCopy := map[*Package]*Package{preal: ptest}
    	for _, p := range PackageList([]*Package{pmain}) {
    		if p == preal {
    			continue
    		}
    		// Copy on write.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
Back to top