Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 168 for withers (0.34 sec)

  1. pkg/kubelet/pluginmanager/pluginwatcher/plugin_watcher.go

    	}
    
    	fsWatcher, err := fsnotify.NewWatcher()
    	if err != nil {
    		return fmt.Errorf("failed to start plugin fsWatcher, err: %v", err)
    	}
    	w.fsWatcher = fsWatcher
    
    	// Traverse plugin dir and add filesystem watchers before starting the plugin processing goroutine.
    	if err := w.traversePluginDir(w.path); err != nil {
    		klog.ErrorS(err, "Failed to traverse plugin socket path", "path", w.path)
    	}
    
    	go func(fsWatcher *fsnotify.Watcher) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 01 00:26:37 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  2. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/vfs/impl/WatchingVirtualFileSystemTest.groovy

            watchingVirtualFileSystem.afterBuildFinished()
            then:
            0 * _
    
            watchingVirtualFileSystem.root == emptySnapshotHierarchy
        }
    
        def "stops the watchers before the build when watching is disabled"() {
            when:
            watchingVirtualFileSystem.afterBuildStarted(WatchMode.ENABLED, VfsLogging.NORMAL, WatchLogging.NORMAL, buildOperationRunner)
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/lockedfile/internal/filelock/filelock_fcntl.go

    	mu.Unlock()
    
    	if owner != f {
    		panic("unlock called on a file that is not locked")
    	}
    
    	err := setlkw(f.Fd(), syscall.F_UNLCK)
    
    	mu.Lock()
    	l := locks[ino]
    	if len(l.queue) == 0 {
    		// No waiters: remove the map entry.
    		delete(locks, ino)
    	} else {
    		// The first waiter is sending us their file now.
    		// Receive it and update the queue.
    		l.owner = <-l.queue[0]
    		l.queue = l.queue[1:]
    		locks[ino] = l
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 17 02:24:35 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  4. tools/docker-builder/crane.go

    				p := a.PlanFor(arch).Find(t)
    				if p == nil {
    					continue
    				}
    				df := p.Dockerfile
    				dargs := createArgs(a, t, v, arch)
    				args, err := dockerfile.Parse(df, dockerfile.WithArgs(dargs), dockerfile.IgnoreRuns())
    				if err != nil {
    					return fmt.Errorf("parse: %v", err)
    				}
    				args.Arch = arch
    				args.Name = t
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. cmd/erasure-sets.go

    func (s *erasureSets) StorageInfo(ctx context.Context) StorageInfo {
    	var storageInfo madmin.StorageInfo
    
    	storageInfos := make([]madmin.StorageInfo, len(s.sets))
    
    	g := errgroup.WithNErrs(len(s.sets))
    	for index := range s.sets {
    		index := index
    		g.Go(func() error {
    			storageInfos[index] = s.sets[index].StorageInfo(ctx)
    			return nil
    		}, index)
    	}
    
    	// Wait for the go routines.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  6. okhttp-testing-support/src/main/kotlin/okhttp3/OkHttpClientTestRule.kt

      /**
       * Returns an OkHttpClient for tests to use as a starting point.
       *
       * The returned client installs a default event listener that gathers debug information. This will
       * be logged if the test fails.
       *
       * This client is also configured to be slightly more deterministic, returning a single IP
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.5K bytes
    - Viewed (1)
  7. security/pkg/pki/ra/k8s_ra_test.go

    				if csr.Status.Certificate != nil {
    					continue
    				}
    				csr.Status.Certificate = certificate
    				// fake clientset doesn't handle resource version, so we need to delay the update
    				// to make sure watchers can catch the event
    				time.Sleep(time.Millisecond)
    				client.Kube().CertificatesV1().CertificateSigningRequests().UpdateStatus(ctx, csr, metav1.UpdateOptions{})
    			}
    		}
    	}()
    	return client
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 00:44:54 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unreachable/unreachable.go

    type deadState struct {
    	pass        *analysis.Pass
    	hasBreak    map[ast.Stmt]bool
    	hasGoto     map[string]bool
    	labels      map[string]ast.Stmt
    	breakTarget ast.Stmt
    
    	reachable bool
    }
    
    // findLabels gathers information about the labels defined and used by stmt
    // and about which statements break, whether a label is involved or not.
    func (d *deadState) findLabels(stmt ast.Stmt) {
    	switch x := stmt.(type) {
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  9. architecture/security/istio-agent.md

       while also keeping file watchers on them. Envoy proxy then connects to istio-agent's SDS Server through the defined socket path and gets the cryptographic materials of the certificate files served by the SDS API.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 22 16:45:50 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  10. docs/features/https.md

     * **Security** of the connection. This includes verification of the remote webserver with certificates and the privacy of data exchanged with strong ciphers.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 24 00:16:30 UTC 2022
    - 10.5K bytes
    - Viewed (0)
Back to top