Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 103 for igmp (0.11 sec)

  1. src/math/big/prime.go

    	// U_n = D^-1 (2V_{n+1} - PV_n) allowing us to run the full extra-strong test
    	// at the cost of a single modular inversion. This computation is easy and fast in GMP,
    	// so we can get the full extra-strong test at essentially the same performance as the
    	// almost extra strong test."
    
    	// Compute Lucas sequence V_s(b, 1), where:
    	//
    	//	V(0) = 2
    	//	V(1) = P
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 14:43:52 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/issues_test.go

    var _ T = template /* ERRORx "cannot use.*text/template.* as T value" */.Template{}
    `
    	)
    
    	a := mustTypecheck(asrc, nil, nil)
    	imp := importHelper{pkg: a, fallback: defaultImporter()}
    
    	withImporter := func(cfg *Config) {
    		cfg.Importer = imp
    	}
    
    	testFiles(t, []string{"b.go"}, [][]byte{[]byte(bsrc)}, 0, false, withImporter)
    	testFiles(t, []string{"c.go"}, [][]byte{[]byte(csrc)}, 0, false, withImporter)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  3. src/go/types/issues_test.go

    var _ T = template /* ERRORx "cannot use.*text/template.* as T value" */.Template{}
    `
    	)
    
    	a := mustTypecheck(asrc, nil, nil)
    	imp := importHelper{pkg: a, fallback: importer.Default()}
    
    	withImporter := func(cfg *Config) {
    		cfg.Importer = imp
    	}
    
    	testFiles(t, []string{"b.go"}, [][]byte{[]byte(bsrc)}, false, withImporter)
    	testFiles(t, []string{"c.go"}, [][]byte{[]byte(csrc)}, false, withImporter)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

      # We need to add rules to accept all TCP/UDP/ICMP/SCTP packets.
      if iptables -w -L INPUT | grep "Chain INPUT (policy DROP)" > /dev/null; then
        echo "Add rules to accept all inbound TCP/UDP/ICMP packets"
        iptables -w -A INPUT -w -p TCP -j ACCEPT
        iptables -w -A INPUT -w -p UDP -j ACCEPT
        iptables -w -A INPUT -w -p ICMP -j ACCEPT
        iptables -w -A INPUT -w -p SCTP -j ACCEPT
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.3.md

    *More Instructions coming soon*
    
    ## Provider-specific Notes
    
    * AWS
      * Support for ap-northeast-2 region (Seoul)
      * Allow cross-region image pulling with ECR
      * More reliable kube-up/kube-down
      * Enable ICMP Type 3 Code 4 for ELBs
      * ARP caching fix
      * Use /dev/xvdXX names
      * ELB:
        * ELB proxy protocol support 
    	* mixed plaintext/encrypted ports support in ELBs
        * SSL support for ELB listeners
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  6. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/vnd.accpac.simply.imp",
    				"application/vnd.acucobol",
    				"application/vnd.acucorp",
    				"application/vnd.adobe.air-application-installer-package+zip",
    				"application/vnd.adobe.aftereffects.project",
    				"application/vnd.adobe.aftereffects.template",
    				"application/vnd.adobe.xdp+xml",
    				"application/vnd.adobe.xfdf",
    				"application/vnd.aether.imp",
    				"application/vnd.airzip.filesecure.azf",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  7. src/net/dial.go

    // It depends on each operating system how the operating system
    // behaves with a non-well known protocol number such as "0" or "255".
    //
    // Examples:
    //
    //	Dial("ip4:1", "192.0.2.1")
    //	Dial("ip6:ipv6-icmp", "2001:db8::1")
    //	Dial("ip6:58", "fe80::1%lo0")
    //
    // For TCP, UDP and IP networks, if the host is empty or a literal
    // unspecified IP address, as in ":80", "0.0.0.0:80" or "[::]:80" for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  8. src/cmd/link/internal/loadpe/ldpe.go

    				continue
    			}
    			// For non-text symbols, forward the reference from __imp_X to
    			// X immediately.
    			if !isText {
    				r.SetSym(isym)
    				continue
    			}
    			// Flag this imp symbol to be processed later in windynrelocsym.
    			ldr.SetGot(rs, RedirectToDynImportGotToken)
    			// Consistency check: should be no PLT token here.
    			splt := ldr.SymPlt(rs)
    			if splt != -1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  9. cluster/gce/util.sh

        if ! gcloud compute firewall-rules create "$1" \
          --project "${NETWORK_PROJECT}" \
          --network "${NETWORK}" \
          --source-ranges "$2" \
          --target-tags "$3" \
          --allow tcp,udp,icmp,esp,ah,sctp; then
          if (( attempt > 4 )); then
            echo -e "${color_red}Failed to create firewall rule $1 ${color_norm}" >&2
            exit 2
          fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"iceland":                              "\U0001f1ee\U0001f1f8",
    	"id":                                   "\U0001f194",
    	"ideograph_advantage":                  "\U0001f250",
    	"imp":                                  "\U0001f47f",
    	"inbox_tray":                           "\U0001f4e5",
    	"incoming_envelope":                    "\U0001f4e8",
    	"india":                                "\U0001f1ee\U0001f1f3",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
Back to top