Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 139 for DR (0.04 sec)

  1. src/main/java/jcifs/smb1/smb1/Dfs.java

                DfsReferral dr = trans.getDfsReferrals(auth, "", 0);
                if (dr != null) {
                    DfsReferral start = dr;
                    do {
                        String domain = dr.server.toLowerCase();
                        entry.map.put(domain, new HashMap());
                        dr = dr.next;
                    } while (dr != start);
        
                    _domains = entry;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 11.7K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/destinationrule/ca-certificates.go

    	dr := r.Message.(*v1alpha3.DestinationRule)
    	drNs := r.Metadata.FullName.Namespace
    	drName := r.Metadata.FullName.String()
    	mode := dr.GetTrafficPolicy().GetTls().GetMode()
    	if mode == v1alpha3.ClientTLSSettings_SIMPLE || mode == v1alpha3.ClientTLSSettings_MUTUAL {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. src/image/draw/clip_test.go

    		// Check that the clipped rectangle is contained by the dst / src / mask
    		// rectangles, in their respective coordinate spaces.
    		if !r.In(c.dr) {
    			t.Errorf("%s: c.dr %v does not contain r %v", c.desc, c.dr, r)
    		}
    		// sr is r translated into src's coordinate space.
    		sr := r.Add(c.sp.Sub(c.dr.Min))
    		if !sr.In(c.sr) {
    			t.Errorf("%s: c.sr %v does not contain sr %v", c.desc, c.sr, sr)
    		}
    		if !c.nilMask {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  4. pkg/test/framework/features/allowlist.txt

    mtls_k8s_ca,TestMtlsStrictK8sCA/global-mtls-on-no-dr/a->http://multiversion:http
    mtls_k8s_ca,TestMtlsStrictK8sCA/global-mtls-on-no-dr/a->http://naked:http
    mtls_k8s_ca,TestMtlsStrictK8sCA/global-mtls-on-no-dr/a->tcp://a:tcp
    mtls_k8s_ca,TestMtlsStrictK8sCA/global-mtls-on-no-dr/a->tcp://b:tcp
    mtls_k8s_ca,TestMtlsStrictK8sCA/global-mtls-on-no-dr/a->tcp://multiversion:tcp
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 18 18:03:23 UTC 2022
    - 103.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbTreeConnection.java

            DfsReferralData dr = start;
            IOException last = null;
            do {
                if ( dr != null ) {
                    targetDomain = dr.getDomain();
                    host = dr.getServer().toLowerCase(Locale.ROOT);
                    share = dr.getShare();
                }
    
                try {
    
                    if ( this.nonPooled ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 31K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java

            DfsReferralDataImpl dr = new DfsReferralDataImpl();
            dr.server = n.getServer();
            dr.share = n.getShare();
            dr.expiration = n.getExpiration();
            dr.path = n.getPath();
            dr.pathConsumed = this.pathConsumed + n.getPathConsumed();
            if ( this.path != null ) {
                dr.pathConsumed -= ( this.path != null ? this.path.length() + 1 : 0 );
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Nov 13 15:13:49 UTC 2021
    - 11K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/DfsImpl.java

            }
    
            if ( dr != null && dr.isIntermediate() ) {
                dr = resolveIntermediates(tf, path, depthLimit, dr);
            }
    
            return dr;
    
        }
    
    
        /**
         * @param tf
         * @param path
         * @param depthLimit
         * @param dr
         * @return
         * @throws SmbAuthException
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:07:29 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  8. pilot/pkg/xds/endpoints/endpoint_builder_test.go

    )
    
    func TestPopulateFailoverPriorityLabels(t *testing.T) {
    	tests := []struct {
    		name           string
    		dr             *config.Config
    		mesh           *meshconfig.MeshConfig
    		expectedLabels []byte
    	}{
    		{
    			name:           "no dr",
    			expectedLabels: nil,
    		},
    		{
    			name: "simple",
    			dr: &config.Config{
    				Spec: &networking.DestinationRule{
    					TrafficPolicy: &networking.TrafficPolicy{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. pilot/pkg/xds/endpoints/mtls_checker.go

    	if drc == nil {
    		return nil
    	}
    	dr, ok := drc.Spec.(*networkingapi.DestinationRule)
    	if !ok || dr == nil {
    		return nil
    	}
    
    	if subset == "" {
    		return trafficPolicyTLSModeForPort(dr.GetTrafficPolicy(), port)
    	}
    
    	for _, ss := range dr.Subsets {
    		if ss.Name != subset {
    			continue
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/inline/inlheur/funcprops_test.go

    	res := strings.TrimSpace(dr.s.Text())
    	if !strings.HasPrefix(res, "// ") {
    		dr.t.Fatalf("malformed line %s:%d, no comment: %s", dr.p, dr.ln, res)
    	}
    	return res[3:]
    }
    
    // readObjBlob reads in a series of commented lines until
    // it hits a delimiter, then returns the contents of the comments.
    func (dr *dumpReader) readObjBlob(delim string) (string, error) {
    	var sb strings.Builder
    	foundDelim := false
    	for dr.scan() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 15K bytes
    - Viewed (0)
Back to top