Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 111 for DR (0.02 sec)

  1. 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)
  2. src/main/java/jcifs/smb/SmbTransportImpl.java

            }
            if ( log.isDebugEnabled() ) {
                log.debug("Got referral " + dr);
            }
    
            getContext().getDfs().cache(getContext(), path, dr);
            throw new DfsReferral(dr);
        }
    
    
        <T extends CommonServerMessageBlockResponse> T send ( CommonServerMessageBlockRequest request, T response ) throws SmbException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
  3. 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)
  4. src/testing/fstest/mapfs_test.go

    		fi, err := d.Info()
    		if err != nil {
    			return err
    		}
    		fmt.Fprintf(buf, "%s: %v\n", path, fi.Mode())
    		return nil
    	})
    	want := `
    .: drwxrwxrwx
    a: dr-xr-xr-x
    a/b.txt: -rw-rw-rw-
    `[1:]
    	got := buf.String()
    	if want != got {
    		t.Errorf("MapFS modes want:\n%s\ngot:\n%s\n", want, got)
    	}
    }
    
    func TestMapFSFileInfoName(t *testing.T) {
    	m := MapFS{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 14:59:55 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/asm/internal/asm/testdata/386enc.s

    	MOVL 2147483648(AX), AX  // 8b8000000080
    	MOVL -2147483648(AX), AX // 8b8000000080
    	ADDL 2147483648(AX), AX  // 038000000080
    	ADDL -2147483648(AX), AX // 038000000080
    	// Make sure MOV CR/DR continues to work after changing its movtabs.
    	MOVL CR0, AX // 0f20c0
    	MOVL CR0, DX // 0f20c2
    	MOVL CR4, DI // 0f20e7
    	MOVL AX, CR0 // 0f22c0
    	MOVL DX, CR0 // 0f22c2
    	MOVL DI, CR4 // 0f22e7
    	MOVL DR0, AX // 0f21c0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbFile.java

                            se = new SmbException(dr.server, ioe);
                        }
                    }
    
                    dr = dr.next;
                } while (dr != start);
    
                if (se != null)
                    throw se;
    
                if (log.level >= 3)
                    log.println( dr );
    
                dfsReferral = dr;
                if (dr.pathConsumed < 0) {
                    dr.pathConsumed = 0;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  8. 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)
  9. istioctl/pkg/internaldebug/internal-debug.go

    }
    
    func (s *DebugWriter) PrintAll(drs map[string]*discovery.DiscoveryResponse) error {
    	// Gather the statuses before printing so they may be sorted
    	mappedResp := map[string]string{}
    	for id, dr := range drs {
    		for _, resource := range dr.Resources {
    			if s.InternalDebugAllIstiod {
    				mappedResp[id] = string(resource.Value) + "\n"
    			} else {
    				_, _ = s.Writer.Write(resource.Value)
    				_, _ = s.Writer.Write([]byte("\n"))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 04:16:55 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. 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)
Back to top