Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for addMapping (0.14 sec)

  1. pkg/spiffe/spiffe.go

    		return fmt.Errorf("parse certificate from rootPEM got error: %v", err)
    	}
    
    	v.AddMapping(trustDomain, rootCAs)
    	return nil
    }
    
    // AddMappings merges a trust domain to certs map to the certPools map.
    func (v *PeerCertVerifier) AddMappings(certMap map[string][]*x509.Certificate) {
    	for trustDomain, certs := range certMap {
    		v.AddMapping(trustDomain, certs)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. src/runtime/pprof/proto.go

    		// If we do need it, it would go here, before we
    		// enter the mappings into b.mem in the first place.
    
    		buildID, _ := elfBuildID(file)
    		addMapping(lo, hi, offset, file, buildID)
    	}
    }
    
    func (b *profileBuilder) addMapping(lo, hi, offset uint64, file, buildID string) {
    	b.addMappingEntry(lo, hi, offset, file, buildID, false)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java

                searchEngineClient.admin().cluster().prepareHealth(toIndex).setWaitForYellowStatus().execute(ActionListener.wrap(response -> {
                    searchEngineClient.addMapping(docIndex, "doc", toIndex);
                    if (searchEngineClient.copyDocIndex(fromIndex, toIndex, replaceAliases)
                            && (replaceAliases && !searchEngineClient.updateAlias(toIndex))) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14K bytes
    - Viewed (0)
  4. pkg/spiffe/spiffe_test.go

    						t.Fatalf("Failed to parse certificate: " + err.Error())
    					}
    					certMap[trustDomain] = append(certMap[trustDomain], rootCert)
    				}
    			}
    
    			verifier := NewPeerCertVerifier()
    			verifier.AddMappings(certMap)
    			if verifier == nil {
    				t.Fatalf("Failed to create peer cert verifier.")
    			}
    			client := &http.Client{
    				Timeout: time.Second,
    				Transport: &http.Transport{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 18.1K bytes
    - Viewed (0)
Back to top