Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for GetSink (0.13 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java

                }
                if (link.startsWith("/")) {
                    redirect = ftpInfo.toUrl(file.getLink());
                } else if (link.startsWith("../")) {
                    redirect = ftpInfo.toChildUrl(file.getLink());
                } else {
                    redirect = ftpInfo.toChildUrl("../" + file.getLink());
                }
                if (!uri.equals(redirect)) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  2. pkg/proxy/util/nfacct/nfacct_linux_test.go

    // maintains a list for netlink attributes, and stores a predefined response and an optional
    // error for subsequent execution.
    type fakeRequest struct {
    	// cmd and flags which were used to create the request.
    	cmd   int
    	flags uint16
    
    	// data holds netlink attributes.
    	data []nl.NetlinkRequestData
    
    	// response and err are the predefined output of execution.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  3. src/syscall/types_linux.go

    #include <sys/times.h>
    #include <sys/timex.h>
    #include <sys/types.h>
    #include <sys/un.h>
    #include <sys/user.h>
    #include <sys/utsname.h>
    #include <sys/wait.h>
    #include <linux/filter.h>
    #include <linux/netlink.h>
    #include <linux/rtnetlink.h>
    #include <linux/icmpv6.h>
    #include <poll.h>
    #include <termios.h>
    #include <time.h>
    #include <unistd.h>
    #include <utime.h>
    
    enum {
    	sizeofPtr = sizeof(void*),
    };
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 26 20:15:45 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelElementNode.java

        }
    
        @Override
        public boolean hasLink(String name) {
            return links != null && links.containsKey(name);
        }
    
        @Override
        @Nullable
        public ModelNodeInternal getLink(String name) {
            return links == null ? null : links.get(name);
        }
    
        @Override
        public Iterable<? extends ModelNodeInternal> getLinks() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. go.mod

    	github.com/spf13/cobra v1.8.0
    	github.com/spf13/pflag v1.0.5
    	github.com/spf13/viper v1.19.0
    	github.com/stoewer/go-strcase v1.3.0
    	github.com/stretchr/testify v1.9.0
    	github.com/vishvananda/netlink v1.2.1-beta.2.0.20240411215012-578e95cc3190
    	github.com/vishvananda/netns v0.0.4
    	github.com/yl2chen/cidranger v1.0.2
    	go.opentelemetry.io/otel v1.27.0
    	go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.27.0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. src/syscall/mkerrors.sh

    #include <linux/if.h>
    #include <linux/if_arp.h>
    #include <linux/if_ether.h>
    #include <linux/if_tun.h>
    #include <linux/if_packet.h>
    #include <linux/if_addr.h>
    #include <linux/filter.h>
    #include <linux/netlink.h>
    #include <linux/reboot.h>
    #include <linux/rtnetlink.h>
    #include <linux/ptrace.h>
    #include <linux/sched.h>
    #include <linux/serial.h>
    #include <linux/wait.h>
    #include <linux/icmpv6.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 06 21:22:22 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    #include <sys/timerfd.h>
    #include <sys/uio.h>
    #include <sys/xattr.h>
    #include <netinet/udp.h>
    #include <linux/audit.h>
    #include <linux/bpf.h>
    #include <linux/can.h>
    #include <linux/can/error.h>
    #include <linux/can/netlink.h>
    #include <linux/can/raw.h>
    #include <linux/capability.h>
    #include <linux/cryptouser.h>
    #include <linux/devlink.h>
    #include <linux/dm-ioctl.h>
    #include <linux/errqueue.h>
    #include <linux/ethtool_netlink.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  8. tools/istio-iptables/pkg/capture/run.go

    	// Equivalent to `ip -6 addr add "::6/128" dev lo`
    	address := &net.IPNet{IP: net.ParseIP("::6"), Mask: net.CIDRMask(128, 128)}
    	addr := &netlink.Addr{IPNet: address}
    
    	err = netlink.AddrAdd(link, addr)
    	if ignoreExists(err) != nil {
    		return fmt.Errorf("failed to add IPv6 inbound address: %v", err)
    	}
    	log.Infof("Added ::6 address")
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/NodeBackedModelMap.java

            return get((String) name);
        }
    
        @Nullable
        @Override
        public T get(String name) {
            // TODO - lock this down
            MutableModelNode link = modelNode.getLink(name);
            if (link == null) {
                return null;
            }
    
            viewState.assertCanReadChild(name);
    
            link.ensureUsable();
            if (!elementFilter.apply(link)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 23K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/xla_tpu_device.cc

        // waiting for the transfer to complete anyway there is probably little
        // downside. If we were to add the ability for computations to wait directly
        // on transfers, then we might want to rethink this property.
        // Also ideally this host callback should be on source stream rather than
        // destination stream, but when this function returns, the send requests
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 20.9K bytes
    - Viewed (0)
Back to top