Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 54 for DR (0.03 sec)

  1. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

            }
            if ( !dr.getPath().isEmpty() ) {
                dunc = "\\" + dr.getPath() + dunc;
            }
    
            if ( dunc.charAt(0) != '\\' ) {
                log.warn("No slash at start of remaining DFS path " + dunc);
            }
    
            this.unc = dunc;
            if ( dr.getShare() != null && !dr.getShare().isEmpty() ) {
                this.share = dr.getShare();
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jul 20 08:24:53 UTC 2019
    - 23.9K bytes
    - Viewed (0)
  2. src/image/draw/draw.go

    			d := dst.Pix[i : i+4 : i+4] // Small cap improves performance, see https://golang.org/issue/27857
    			dr := uint32(d[0])
    			dg := uint32(d[1])
    			db := uint32(d[2])
    			da := uint32(d[3])
    
    			// dr, dg, db and da are all 8-bit color at the moment, ranging in [0,255].
    			// We work in 16-bit color, and so would normally do:
    			// dr |= dr << 8
    			// and similarly for dg, db and da, but instead we multiply a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  3. src/test/java/jcifs/tests/DfsTest.java

            final String hostname = "foo";
            final String root = "dfs";
            final String path = "\\bla\\";
    
            DfsImpl dfs = new DfsImpl(context);
    
            DfsReferralDataImpl dr = new DfsReferralDataImpl() {
    
                @Override
                public int getPathConsumed () {
                    return 2 + hostname.length() + root.length() + path.length();
                }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Mar 01 09:46:04 UTC 2020
    - 13.5K bytes
    - Viewed (0)
  4. istioctl/pkg/precheck/precheck.go

    			return false
    		}
    		return tls.Sni == ""
    	}
    	for _, dr := range drs.Items {
    		verificationImpacted := false
    		sniImpacted := false
    		verificationImpacted = verificationImpacted || checkVerify(dr.Spec.GetTrafficPolicy().GetTls())
    		sniImpacted = sniImpacted || checkSNI(dr.Spec.GetTrafficPolicy().GetTls())
    		for _, pl := range dr.Spec.GetTrafficPolicy().GetPortLevelSettings() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 02:57:30 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/pe.go

    	n := uint64(0)
    
    	for d := dr; d != nil; d = d.next {
    		n++
    	}
    	ctxt.Out.SeekSet(startoff + int64(binary.Size(&IMAGE_IMPORT_DESCRIPTOR{}))*int64(n+1))
    
    	// write dll names
    	for d := dr; d != nil; d = d.next {
    		d.nameoff = uint64(ctxt.Out.Offset()) - uint64(startoff)
    		strput(ctxt.Out, d.name)
    	}
    
    	// write function names
    	for d := dr; d != nil; d = d.next {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  6. pilot/pkg/model/sidecar.go

    	// this config namespace) will see, identify all the destinationRules
    	// that these services need
    	for _, s := range out.services {
    		if dr := ps.destinationRule(configNamespace, s); dr != nil {
    			out.destinationRules[s.Hostname] = dr
    			for _, cdr := range dr {
    				for _, from := range cdr.from {
    					out.destinationRulesByNames[from] = cdr.rule
    				}
    			}
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  7. src/debug/dwarf/line_test.go

    	// Get line table from d.
    	var got []LineEntry
    	dr := d.Reader()
    	for {
    		ent, err := dr.Next()
    		if err != nil {
    			t.Fatal("dr.Next:", err)
    		} else if ent == nil {
    			break
    		}
    
    		if ent.Tag != TagCompileUnit {
    			dr.SkipChildren()
    			continue
    		}
    
    		// Ignore system compilation units (this happens in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  8. pkg/kube/client.go

    		}
    		// namespaced resources should specify the namespace
    		dr = c.dynamic.Resource(mapping.Resource).Namespace(ns)
    	} else {
    		// for cluster-wide resources
    		dr = c.dynamic.Resource(mapping.Resource)
    	}
    	return obj, dr, nil
    }
    
    // IstioScheme returns a scheme will all known Istio-related types added
    var (
    	IstioScheme = istioScheme()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 39K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster.go

    			return nil, nil
    		}
    		dr := prevCfg.Spec.(*networking.DestinationRule)
    		services = append(services, proxy.SidecarScope.ServicesForHostname(host.Name(dr.Host))...)
    	} else {
    		dr := cfg.Spec.(*networking.DestinationRule)
    		// Destinationrule was updated. Find matching services from updated destinationrule.
    		services = append(services, proxy.SidecarScope.ServicesForHostname(host.Name(dr.Host))...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/loadbalancer/loadbalancer_test.go

    		mesh     *networking.LocalityLoadBalancerSetting
    		dr       *networking.LocalityLoadBalancerSetting
    		expected *networking.LocalityLoadBalancerSetting
    	}{
    		{
    			"all disabled",
    			nil,
    			nil,
    			nil,
    		},
    		{
    			"mesh only",
    			&networking.LocalityLoadBalancerSetting{},
    			nil,
    			&networking.LocalityLoadBalancerSetting{},
    		},
    		{
    			"dr only",
    			nil,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 39.1K bytes
    - Viewed (0)
Back to top