Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for sris (0.06 sec)

  1. cmd/site-replication.go

    			allUsers.Add(u)
    		}
    		for g := range sri.GroupDescMap {
    			allGroups.Add(g)
    		}
    		for p := range sri.Policies {
    			allPolicies.Add(p)
    		}
    		for u := range sri.UserPolicies {
    			allUserWPolicies.Add(u)
    		}
    		for g := range sri.GroupPolicies {
    			allGroupWPolicies.Add(g)
    		}
    		for r := range sri.ILMExpiryRules {
    			allILMExpiryRules.Add(r)
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  2. src/crypto/x509/x509_test.go

    			t.Errorf("%s: SAN emails differ from template. Got %v, want %v", test.name, cert.EmailAddresses, template.EmailAddresses)
    		}
    
    		if len(cert.URIs) != 1 || cert.URIs[0].String() != "https://foo.com/wibble#foo" {
    			t.Errorf("%s: URIs differ from template. Got %v, want %v", test.name, cert.URIs, template.URIs)
    		}
    
    		if !reflect.DeepEqual(cert.IPAddresses, template.IPAddresses) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/asm9.go

    }
    
    // The prefixable optab entry contains the pseudo-opcodes which generate relocations, or may generate
    // a more efficient sequence of instructions if a prefixed version exists (ex. paddi instead of oris/ori/add).
    //
    // This table is meant to transform all sequences which might be TOC-relative into an equivalent PC-relative
    // sequence. It also encompasses several transformations which do not involve relocations, those could be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    	if err = os.WriteFile(src, []byte(swigIntSizeCode), 0666); err != nil {
    		return
    	}
    	srcs := []string{src}
    
    	p := load.GoFilesPackage(context.TODO(), load.PackageOpts{}, srcs)
    
    	if _, _, e := BuildToolchain.gc(b, &Action{Mode: "swigDoIntSize", Package: p, Objdir: objdir}, "", nil, nil, "", false, "", srcs); e != nil {
    		return "32", nil
    	}
    	return "64", nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. tests/integration/pilot/common/routing.go

    	mtlsHost := host.Name(t.Apps.A.Config().ClusterLocalFQDN())
    	nakedHost := host.Name(t.Apps.Naked.Config().ClusterLocalFQDN())
    	httpsPort := ports.HTTP.ServicePort
    	httpsAutoPort := ports.AutoHTTPS.ServicePort
    	snis := []string{
    		model.BuildSubsetKey(model.TrafficDirectionOutbound, "", mtlsHost, httpsPort),
    		model.BuildDNSSrvSubsetKey(model.TrafficDirectionOutbound, "", mtlsHost, httpsPort),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  6. cmd/admin-handlers.go

    			}
    			for _, v := range c.EmailAddresses {
    				check ^= xxh3.HashString(v)
    			}
    			for _, v := range c.IPAddresses {
    				check ^= xxh3.HashString(v.String())
    			}
    			for _, v := range c.URIs {
    				check ^= xxh3.HashString(v.String())
    			}
    			tlsInfo.Certs = append(tlsInfo.Certs, madmin.TLSCert{
    				PubKeyAlgo:    c.PublicKeyAlgorithm.String(),
    				SignatureAlgo: c.SignatureAlgorithm.String(),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
Back to top