Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 154 for sigblock (0.18 sec)

  1. cluster/addons/dns/nodelocaldns/README.md

    One way to enable connectivity from node-local-dns pods to clusterDNS ip is to use an ipBlock rule instead:
    
    ```
    spec:
      egress:
      - ports:
        - port: 53
          protocol: TCP
        - port: 53
          protocol: UDP
        to:
        - ipBlock:
            cidr: <well-known clusterIP for DNS>/32
      podSelector: {}
      policyTypes:
      - Ingress
      - Egress
    ```
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 3K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/BlockPayload.java

    import java.io.DataInputStream;
    import java.io.DataOutputStream;
    
    public abstract class BlockPayload {
        private Block block;
    
        public Block getBlock() {
            return block;
        }
    
        public void setBlock(Block block) {
            this.block = block;
        }
    
        public BlockPointer getPos() {
            return getBlock().getPos();
        }
    
        public BlockPointer getNextPos() {
            return getBlock().getNextPos();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.4K 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. pkg/registry/networking/networkpolicy/storage/storage_test.go

    			object := obj.(*networking.NetworkPolicy)
    			object.Spec.Ingress = []networking.NetworkPolicyIngressRule{
    				{
    					From: []networking.NetworkPolicyPeer{
    						{
    							IPBlock: &networking.IPBlock{
    								CIDR:   "192.168.0.0/16",
    								Except: []string{"192.168.3.0/24", "192.168.4.0/24"},
    							},
    						},
    					},
    				},
    			}
    			return object
    		},
    		// invalid updateFunc
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/networking/v1/types.go

    	NamespaceSelector *metav1.LabelSelector `json:"namespaceSelector,omitempty" protobuf:"bytes,2,opt,name=namespaceSelector"`
    
    	// 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: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/extensions/v1beta1/zz_generated.deepcopy.go

    func (in *IPBlock) DeepCopyInto(out *IPBlock) {
    	*out = *in
    	if in.Except != nil {
    		in, out := &in.Except, &out.Except
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IPBlock.
    func (in *IPBlock) DeepCopy() *IPBlock {
    	if in == nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 33.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    						return newLineAfter(i)
    					}
    
    					// Convert line to line block.
    					stmt.InBlock = true
    					block := &LineBlock{Token: stmt.Token[:1], Line: []*Line{stmt}}
    					stmt.Token = stmt.Token[1:]
    					x.Stmt[i] = block
    					new := &Line{Token: tokens[1:], InBlock: true}
    					block.Line = append(block.Line, new)
    					return new
    				}
    
    			case *LineBlock:
    				if stmt == hint {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/networking/v1/generated.proto

      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector namespaceSelector = 2;
    
      // ipBlock defines policy on a particular IPBlock. If this field is set then
      // neither of the other fields can be.
      // +optional
      optional IPBlock ipBlock = 3;
    }
    
    // NetworkPolicyPort describes a port to allow traffic on
    message NetworkPolicyPort {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirDataFlowInfoProvider.kt

            firParent.accept(pathSearcher)
    
            return firStatements.map { unwrapLeaf(pathSearcher[it] ?: it) }
        }
    
        private fun unwrapLeaf(firLeaf: FirElement): FirElement {
            if (firLeaf is FirBlock && firLeaf.statements.size == 1) {
                val firStatement = firLeaf.statements[0]
                if (firStatement is FirExpression && firStatement.resolvedType == firLeaf.resolvedType) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 14:04:46 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  10. pkg/apis/networking/types.go

    	// Otherwise it selects all pods in the namespaces selected by namespaceSelector.
    	// +optional
    	NamespaceSelector *metav1.LabelSelector
    
    	// ipBlock defines policy on a particular IPBlock. If this field is set then
    	// neither of the other fields can be.
    	// +optional
    	IPBlock *IPBlock
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // NetworkPolicyList is a list of NetworkPolicy objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 27.7K bytes
    - Viewed (0)
Back to top