Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for meth2 (2.67 sec)

  1. src/time/tzdata/tzdata.go

    		if get4s(z[idx:]) != zcheader {
    			break
    		}
    		meth := get2s(z[idx+10:])
    		size := get4s(z[idx+24:])
    		namelen := get2s(z[idx+28:])
    		xlen := get2s(z[idx+30:])
    		fclen := get2s(z[idx+32:])
    		off := get4s(z[idx+42:])
    		zname := z[idx+46 : idx+46+namelen]
    		idx += 46 + namelen + xlen + fclen
    		if zname != name {
    			continue
    		}
    		if meth != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 22:30:53 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/capture/testdata/kube-virt-interfaces.golden

    iptables -t nat -N ISTIO_INBOUND
    iptables -t nat -N ISTIO_REDIRECT
    iptables -t nat -N ISTIO_IN_REDIRECT
    iptables -t nat -N ISTIO_OUTPUT
    iptables -t nat -I PREROUTING 1 -i eth1 -j RETURN
    iptables -t nat -I PREROUTING 1 -i eth2 -j RETURN
    iptables -t nat -A ISTIO_INBOUND -p tcp --dport 15008 -j RETURN
    iptables -t nat -A ISTIO_REDIRECT -p tcp -j REDIRECT --to-ports 15001
    iptables -t nat -A ISTIO_IN_REDIRECT -p tcp -j REDIRECT --to-ports 15006
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. src/time/zoneinfo_read.go

    		//
    		if get4(buf) != zcheader {
    			break
    		}
    		meth := get2(buf[10:])
    		size := get4(buf[24:])
    		namelen := get2(buf[28:])
    		xlen := get2(buf[30:])
    		fclen := get2(buf[32:])
    		off := get4(buf[42:])
    		zname := buf[46 : 46+namelen]
    		buf = buf[46+namelen+xlen+fclen:]
    		if string(zname) != name {
    			continue
    		}
    		if meth != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/walk/closure.go

    		base.Fatalf("methodValueWrapper: unexpected %v (%v)", dot, dot.Op())
    	}
    
    	meth := dot.Sel
    	rcvrtype := dot.X.Type()
    	sym := ir.MethodSymSuffix(rcvrtype, meth, "-fm")
    
    	if sym.Uniq() {
    		return sym.Def.(*ir.Name)
    	}
    	sym.SetUniq(true)
    
    	base.FatalfAt(dot.Pos(), "missing wrapper for %v", meth)
    	panic("unreachable")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:56:08 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  5. cmd/handler-utils_test.go

    			},
    			shouldFail: false,
    		},
    		// Support multiple values
    		{
    			header: http.Header{
    				"x-amz-meta-key": []string{"amz-meta1", "amz-meta2"},
    			},
    			metadata: map[string]string{
    				"x-amz-meta-key": "amz-meta1,amz-meta2",
    			},
    			shouldFail: false,
    		},
    		// Empty header input returns empty metadata.
    		{
    			header:     nil,
    			metadata:   nil,
    			shouldFail: true,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. src/runtime/error.go

    		throw("panicwrap: no ) in " + name)
    	}
    	if i+2 >= len(name) || name[i:i+2] != ")." {
    		throw("panicwrap: unexpected string after type name: " + name)
    	}
    	typ := name[:i]
    	meth := name[i+2:]
    	panic(plainError("value method " + pkg + "." + typ + "." + meth + " called using nil *" + typ + " pointer"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    	// of objectpath will only be giving us origin methods, anyway, as referring
    	// to instantiated methods is usually not useful.
    
    	if meth.Origin() != meth {
    		return "", false
    	}
    
    	_, named := typesinternal.ReceiverNamed(meth.Type().(*types.Signature).Recv())
    	if named == nil {
    		return "", false
    	}
    
    	if types.IsInterface(named) {
    		// Named interfaces don't have to be package-scoped
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  8. tools/istio-iptables/pkg/capture/run_test.go

    			func(cfg *config.Config) {
    				cfg.KubeVirtInterfaces = "eth1,eth2"
    				cfg.OutboundIPRangesInclude = "*"
    			},
    		},
    		{
    			"ipnets",
    			func(cfg *config.Config) {
    				cfg.OutboundIPRangesInclude = "10.0.0.0/8"
    			},
    		},
    		{
    			"ipnets-with-kube-virt-interfaces",
    			func(cfg *config.Config) {
    				cfg.KubeVirtInterfaces = "eth1,eth2"
    				cfg.OutboundIPRangesInclude = "10.0.0.0/8"
    			},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. src/cmd/doc/pkg.go

    	}
    	found := false
    	for _, typ := range types {
    		if len(typ.Methods) > 0 {
    			for _, meth := range typ.Methods {
    				if match(method, meth.Name) {
    					decl := meth.Decl
    					pkg.emit(meth.Doc, decl)
    					found = true
    				}
    			}
    			continue
    		}
    		if symbol == "" {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 20:15:52 UTC 2024
    - 32K bytes
    - Viewed (0)
  10. src/cmd/cover/cfg_test.go

    	gran := "perblock"
    	ppath := "cfg/" + pname
    	tag := mode + "_" + gran
    	instdir := filepath.Join(dir, "inst2")
    	if err := os.Mkdir(instdir, 0777); err != nil {
    		t.Fatal(err)
    	}
    	mdir := filepath.Join(dir, "meta2")
    	if err := os.Mkdir(mdir, 0777); err != nil {
    		t.Fatal(err)
    	}
    	mpath := filepath.Join(mdir, "covmeta.yyy")
    	incfg := writePkgConfig(t, instdir, tag, ppath, pname, gran, mpath)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 12:51:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top