Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 134 for nextLink (0.16 sec)

  1. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

                            }
                        }
                    }
                    final String nextLink = (String) contentMap.get("@odata.nextLink");
                    if (StringUtil.isNotBlank(nextLink)) {
                        processMemberOf(user, groupList, roleList, nextLink);
                    }
                } else if (contentMap.containsKey("error")) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  2. pkg/volume/util/subpath/subpath_windows.go

    	if !filepath.IsAbs(linkedPath) {
    		linkedPath = filepath.Join(getUpperPath(upperpath), linkedPath)
    	}
    	nextLink, err := evalSymlink(linkedPath)
    	if err != nil {
    		return path, err
    	}
    	return filepath.Join(nextLink, base), nil
    }
    
    // check whether hostPath is within volume path
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 12:57:11 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/netlink.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package ipvs
    
    import (
    	"k8s.io/apimachinery/pkg/util/sets"
    )
    
    // NetLinkHandle for revoke netlink interface
    type NetLinkHandle interface {
    	// EnsureAddressBind checks if address is bound to the interface and, if not, binds it.  If the address is already bound, return true.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 27 19:02:20 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. src/encoding/gob/decoder.go

    func toInt(x uint64) int64 {
    	i := int64(x >> 1)
    	if x&1 != 0 {
    		i = ^i
    	}
    	return i
    }
    
    func (dec *Decoder) nextInt() int64 {
    	n, _, err := decodeUintReader(&dec.buf, dec.countBuf)
    	if err != nil {
    		dec.err = err
    	}
    	return toInt(n)
    }
    
    func (dec *Decoder) nextUint() uint64 {
    	n, _, err := decodeUintReader(&dec.buf, dec.countBuf)
    	if err != nil {
    		dec.err = err
    	}
    	return n
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  5. cni/pkg/ipset/nldeps_linux.go

    		family = unix.AF_INET6
    	} else {
    		family = unix.AF_INET
    	}
    	err := netlink.IpsetCreate(name, "hash:ip", netlink.IpsetCreateOptions{Comments: true, Replace: true, Family: family})
    	if ipsetErr, ok := err.(nl.IPSetError); ok && ipsetErr == nl.IPSET_ERR_EXIST {
    		return nil
    	}
    
    	return err
    }
    
    func (m *realDeps) destroySet(name string) error {
    	err := netlink.IpsetDestroy(name)
    	return err
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 18:07:05 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. cni/pkg/iptables/iptables_linux.go

    		}
    	}
    
    	return nil
    }
    
    func AddLoopbackRoutes(cfg *Config) error {
    	return forEachLoopbackRoute(cfg, netlink.RouteReplace)
    }
    
    func DelLoopbackRoutes(cfg *Config) error {
    	return forEachLoopbackRoute(cfg, netlink.RouteDel)
    }
    
    func forEachLoopbackRoute(cfg *Config, f func(*netlink.Route) error) error {
    	loopbackLink, err := netlink.LinkByName("lo")
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/hash/HashTestUtils.java

            int len = random.nextInt(value.length - off + 1);
            for (PrimitiveSink sink : sinks) {
              sink.putBytes(value, off, len);
            }
          }
        },
        PUT_BYTE_BUFFER() {
          @Override
          void performAction(Random random, Iterable<? extends PrimitiveSink> sinks) {
            byte[] value = new byte[random.nextInt(128)];
            random.nextBytes(value);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 25.3K bytes
    - Viewed (0)
  8. pkg/proxy/util/nfacct/handler.go

    */
    
    package nfacct
    
    import (
    	"github.com/vishvananda/netlink/nl"
    	"github.com/vishvananda/netns"
    	"golang.org/x/sys/unix"
    )
    
    // handler is an injectable interface for creating netlink request.
    type handler interface {
    	newRequest(cmd int, flags uint16) request
    }
    
    // request is an injectable interface representing a netlink request.
    type request interface {
    	Serialize() []byte
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/netlink_linux.go

    	proxyutil "k8s.io/kubernetes/pkg/proxy/util"
    	netutils "k8s.io/utils/net"
    
    	"github.com/vishvananda/netlink"
    	"golang.org/x/sys/unix"
    )
    
    type netlinkHandle struct {
    	netlink.Handle
    	isIPv6 bool
    }
    
    // NewNetLinkHandle will create a new NetLinkHandle
    func NewNetLinkHandle(isIPv6 bool) NetLinkHandle {
    	return &netlinkHandle{netlink.Handle{}, isIPv6}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 30 16:18:49 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/capture/run_linux.go

    			if cfg.EnableIPv6 {
    				families = append(families, unix.AF_INET6)
    			}
    			for _, family := range families {
    				r := netlink.NewRule()
    				r.Family = family
    				r.Table = tproxyTable
    				r.Mark = tproxyMark
    				if err := netlink.RuleAdd(r); err != nil {
    					return fmt.Errorf("failed to configure netlink rule: %v", err)
    				}
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top