Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for Inblock (0.14 sec)

  1. pkg/apis/networking/v1/zz_generated.conversion.go

    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1.IPBlock)(nil), (*networking.IPBlock)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_IPBlock_To_networking_IPBlock(a.(*v1.IPBlock), b.(*networking.IPBlock), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*networking.IPBlock)(nil), (*v1.IPBlock)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  2. pkg/apis/networking/validation/validation_test.go

    		networkPolicy.Spec.Ingress[0].From[0].IPBlock = &networking.IPBlock{
    			CIDR:   "192.168.0.0/16",
    			Except: []string{"192.168.3.0/24", "192.168.4.0/24"},
    		}
    	}
    
    	setIngressFromIPBlockIPV6 := func(networkPolicy *networking.NetworkPolicy) {
    		setIngressFromIfEmpty(networkPolicy)
    		networkPolicy.Spec.Ingress[0].From[0].IPBlock = &networking.IPBlock{
    			CIDR:   "fd00:192:168::/48",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  3. pkg/apis/extensions/v1beta1/zz_generated.conversion.go

    	out.NamespaceSelector = (*metav1.LabelSelector)(unsafe.Pointer(in.NamespaceSelector))
    	if in.IPBlock != nil {
    		in, out := &in.IPBlock, &out.IPBlock
    		*out = new(networking.IPBlock)
    		if err := Convert_v1beta1_IPBlock_To_networking_IPBlock(*in, *out, s); err != nil {
    			return err
    		}
    	} else {
    		out.IPBlock = nil
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 95.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// IPBlock defines policy on a particular IPBlock. If this field is set then
    	// neither of the other fields can be.
    	// +optional
    	IPBlock *IPBlock `json:"ipBlock,omitempty" protobuf:"bytes,3,rep,name=ipBlock"`
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  5. src/internal/trace/order.go

    	// N.B. No context to validate. Basically anything can unblock
    	// a goroutine (e.g. sysmon).
    	o.queue.push(Event{table: evt, ctx: curCtx, base: *ev})
    	return curCtx, true, nil
    }
    
    func (o *ordering) advanceGoSwitch(ev *baseEvent, evt *evTable, m ThreadID, gen uint64, curCtx schedCtx) (schedCtx, bool, error) {
    	// GoSwitch and GoSwitchDestroy represent a trio of events:
    	// - Unblock of the goroutine to switch to.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/debug.go

    	OptDcl []*ir.Name
    
    	// Filled in by the user. Translates Block and Value ID to PC.
    	//
    	// NOTE: block is only used if value is BlockStart.ID or BlockEnd.ID.
    	// Otherwise, it is ignored.
    	GetPC func(block, value ID) int64
    }
    
    type BlockDebug struct {
    	// State at the start and end of the block. These are initialized,
    	// and updated from new information that flows on back edges.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  7. src/runtime/mgcmark.go

    	nBlocks := func(bytes uintptr) int {
    		return int(divRoundUp(bytes, rootBlockBytes))
    	}
    
    	work.nDataRoots = 0
    	work.nBSSRoots = 0
    
    	// Scan globals.
    	for _, datap := range activeModules() {
    		nDataRoots := nBlocks(datap.edata - datap.data)
    		if nDataRoots > work.nDataRoots {
    			work.nDataRoots = nDataRoots
    		}
    
    		nBSSRoots := nBlocks(datap.ebss - datap.bss)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		c.stopLock.Unlock()
    		return
    	}
    	c.stopped = true
    	c.ready.stop()
    	c.stopLock.Unlock()
    	close(c.stopCh)
    	c.stopWg.Wait()
    }
    
    func forgetWatcher(c *Cacher, w *cacheWatcher, index int, scope namespacedName, triggerValue string, triggerSupported bool) func(bool) {
    	return func(drainWatcher bool) {
    		c.Lock()
    		defer c.Unlock()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. src/crypto/tls/tls_test.go

    		t.Fatal(err)
    	}
    	keyPEM := pem.EncodeToMemory(&pem.Block{Type: "PRIVATE KEY", Bytes: keyDER})
    	tmpl := &x509.Certificate{
    		SerialNumber: big.NewInt(1),
    		Subject:      pkix.Name{CommonName: "test"},
    	}
    	certDER, err := x509.CreateCertificate(rand.Reader, tmpl, tmpl, key.Public(), key)
    	if err != nil {
    		t.Fatal(err)
    	}
    	certPEM := pem.EncodeToMemory(&pem.Block{Type: "CERTIFICATE", Bytes: certDER})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  10. src/net/http/request.go

    	// The Server will close the request body. The ServeHTTP
    	// Handler does not need to.
    	//
    	// Body must allow Read to be called concurrently with Close.
    	// In particular, calling Close should unblock a Read waiting
    	// for input.
    	Body io.ReadCloser
    
    	// GetBody defines an optional func to return a new copy of
    	// Body. It is used for client requests when a redirect requires
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
Back to top