Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for file_watcher (0.21 sec)

  1. pkg/istio-agent/testdata/grpc-bootstrap.json

          "PILOT_SAN": [
            "istiod.istio-system.svc"
          ]
        },
        "locality": {},
        "UserAgentVersionType": null
      },
      "certificate_providers": {
        "default": {
          "plugin_name": "file_watcher",
          "config": {
            "certificate_file": "/cert/path/cert-chain.pem",
            "private_key_file": "/cert/path/key.pem",
            "ca_certificate_file": "/cert/path/root-cert.pem",
            "refresh_interval": "900s"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 957 bytes
    - Viewed (0)
  2. pkg/istio-agent/grpcxds/grpc_bootstrap.go

    			log.Warnf("failed parsing config in certificate_provider: %v", err)
    		}
    	} else {
    		log.Warnf("did not find config in certificate_provider")
    	}
    
    	return nil
    }
    
    const FileWatcherCertProviderName = "file_watcher"
    
    type FileWatcherCertProviderConfig struct {
    	CertificateFile   string          `json:"certificate_file,omitempty"`
    	PrivateKeyFile    string          `json:"private_key_file,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/HierarchicalFileWatcherUpdater.java

        private final FileWatcher fileWatcher;
        private final FileSystemLocationToWatchValidator locationToWatchValidator;
        private ImmutableSet<File> watchedHierarchies = ImmutableSet.of();
    
        public HierarchicalFileWatcherUpdater(
            FileWatcher fileWatcher,
            FileSystemLocationToWatchValidator locationToWatchValidator,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/NonHierarchicalFileWatcherUpdaterTest.groovy

     */
    
    package org.gradle.internal.watch.registry.impl
    
    import net.rubygrapefruit.platform.file.FileWatcher
    import org.gradle.internal.watch.registry.FileWatcherUpdater
    
    class NonHierarchicalFileWatcherUpdaterTest extends AbstractFileWatcherUpdaterTest {
    
        @Override
        FileWatcherUpdater createUpdater(FileWatcher watcher, WatchableHierarchies watchableHierarchies) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 13:24:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. pkg/filewatcher/worker.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package filewatcher
    
    import (
    	"bufio"
    	"bytes"
    	"crypto/sha256"
    	"fmt"
    	"io"
    	"os"
    	"sync"
    
    	"github.com/fsnotify/fsnotify"
    )
    
    type worker struct {
    	mu sync.RWMutex
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 22:31:06 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top