Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ApplyContent (0.13 sec)

  1. pilot/pkg/config/file/store.go

    	s.mu.Lock()
    	defer s.mu.Unlock()
    
    	result := sets.New[string]()
    	for n := range s.byFile {
    		result.Insert(n)
    	}
    
    	return result
    }
    
    // ApplyContent applies the given yamltext to this source. The content is tracked with the given name. If ApplyContent
    // gets called multiple times with the same name, the contents applied by the previous incarnation will be overwritten
    // or removed, depending on the new content.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. pkg/config/analysis/local/istiod_analyze.go

    	for _, r := range readers {
    		by, err := io.ReadAll(r.Reader)
    		if err != nil {
    			errs = multierror.Append(errs, err)
    			continue
    		}
    
    		if err = src.ApplyContent(r.Name, string(by)); err != nil {
    			errs = multierror.Append(errs, err)
    		}
    	}
    	return errs
    }
    
    // AddRunningKubeSource adds a source based on a running k8s cluster to the current IstiodAnalyzer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:13 UTC 2024
    - 21.6K bytes
    - Viewed (0)
Back to top