Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for opset (0.04 sec)

  1. releasenotes/notes/51081.yaml

    # - documentation
    area: traffic-management
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 22:34:29 UTC 2024
    - 1K bytes
    - Viewed (0)
  2. cni/pkg/ipset/nldeps_unspecified.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package ipset
    
    import (
    	"errors"
    	"net/netip"
    )
    
    func RealNlDeps() NetlinkIpsetDeps {
    	return &realDeps{}
    }
    
    type realDeps struct{}
    
    func (m *realDeps) ipsetIPHashCreate(name string, v6 bool) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. cni/pkg/ipset/nldeps_mock.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package ipset
    
    import (
    	"net/netip"
    
    	"github.com/stretchr/testify/mock"
    )
    
    type MockedIpsetDeps struct {
    	mock.Mock
    }
    
    func FakeNLDeps() *MockedIpsetDeps {
    	return &MockedIpsetDeps{}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. src/go/types/struct.go

    		return embeddedFieldIdent(e.X)
    	case *ast.IndexListExpr:
    		return embeddedFieldIdent(e.X)
    	}
    	return nil // invalid embedded field
    }
    
    func (check *Checker) declareInSet(oset *objset, pos token.Pos, obj Object) bool {
    	if alt := oset.insert(obj); alt != nil {
    		err := check.newError(DuplicateDecl)
    		err.addf(atPos(pos), "%s redeclared", obj.Name())
    		err.addAltDecl(alt)
    		err.report()
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/struct.go

    		return e.Sel
    	case *syntax.IndexExpr:
    		return embeddedFieldIdent(e.X)
    	}
    	return nil // invalid embedded field
    }
    
    func (check *Checker) declareInSet(oset *objset, pos syntax.Pos, obj Object) bool {
    	if alt := oset.insert(obj); alt != nil {
    		err := check.newError(DuplicateDecl)
    		err.addf(pos, "%s redeclared", obj.Name())
    		err.addAltDecl(alt)
    		err.report()
    		return false
    	}
    	return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. manifests/charts/istio-cni/templates/daemonset.yaml

                # capabilities we actually require
                capabilities:
                  drop:
                  - ALL
                  add:
                  # CAP_NET_ADMIN is required to allow ipset and route table access
                  - NET_ADMIN
                  # CAP_NET_RAW is required to allow iptables mutation of the `nat` table
                  - NET_RAW
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top