Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 566 for stay (0.04 sec)

  1. pkg/controller/garbagecollector/garbagecollector.go

    			// informers keep attempting to sync in the background, so retrying doesn't interrupt them.
    			// the call to resyncMonitors on the reattempt will no-op for resources that still exist.
    			// note that workers stay paused until we successfully resync.
    			if !cache.WaitForNamedCacheSync("garbage collector", waitForStopOrTimeout(ctx.Done(), period), func() bool {
    				return gc.dependencyGraphBuilder.IsSynced(logger)
    			}) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  2. cmd/metacache-set.go

    	defer func() {
    		for _, r := range readers {
    			r.Close()
    		}
    	}()
    	for i := range disks {
    		r, w := io.Pipe()
    		// Make sure we close the pipe so blocked writes doesn't stay around.
    		defer r.CloseWithError(context.Canceled)
    
    		readers[i] = newMetacacheReader(r)
    		d := disks[i]
    
    		// Send request to each disk.
    		go func() {
    			var werr error
    			if d == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_set_test.go

    		if err != nil {
    			t.Errorf(onPolicy("Could not get scaled down StatefulSet: %v", err))
    		}
    		if set.Status.Replicas != 2 {
    			t.Errorf(onPolicy("Expected set to stay at two replicas"))
    		}
    
    		claim, err = om.claimsLister.PersistentVolumeClaims(set.Namespace).Get("datadir-foo-2")
    		if err != nil {
    			t.Errorf(onPolicy("Could not find expected pvc datadir-foo-2"))
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/init.go

    			}
    			if RootMode == NeedRoot {
    				base.Fatal(ErrNoModRoot)
    			}
    			if !mustUseModules {
    				// GO111MODULE is 'auto', and we can't find a module root.
    				// Stay in GOPATH mode.
    				return
    			}
    		} else if search.InDir(modRoot, os.TempDir()) == "." {
    			// If you create /tmp/go.mod for experimenting,
    			// then any tests that create work directories under /tmp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/MapMakerInternalMap.java

            return;
          }
    
          /*
           * Reclassify nodes in each list to new Map. Because we are using power-of-two expansion, the
           * elements from each bin must either stay at same index, or move with a power of two offset.
           * We eliminate unnecessary node creation by catching cases where old nodes can be reused
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/devicemanager/manager.go

    		// TODO: Until the bug - https://github.com/golang/go/issues/33357 is fixed, os.stat wouldn't return the
    		// right mode(socket) on windows. Hence deleting the file, without checking whether
    		// its a socket, on windows.
    		stat, err := os.Lstat(filePath)
    		if err != nil {
    			klog.ErrorS(err, "Failed to stat file", "path", filePath)
    			continue
    		}
    		if stat.IsDir() {
    			continue
    		}
    		err = os.RemoveAll(filePath)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

            return;
          }
    
          /*
           * Reclassify nodes in each list to new Map. Because we are using power-of-two expansion, the
           * elements from each bin must either stay at same index, or move with a power of two offset.
           * We eliminate unnecessary node creation by catching cases where old nodes can be reused
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    **Note:** The `@Classpath` annotation was introduced in Gradle 3.2. To stay compatible with earlier Gradle versions, classpath properties should also be annotated with `@InputFiles`.
    
    | `@link:{javadocPath}/org/gradle/api/tasks/CompileClasspath.html[CompileClasspath]`
    | `Iterable<File>`*
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  9. src/os/stat.go

    // license that can be found in the LICENSE file.
    
    package os
    
    import "internal/testlog"
    
    // Stat returns a [FileInfo] describing the named file.
    // If there is an error, it will be of type [*PathError].
    func Stat(name string) (FileInfo, error) {
    	testlog.Stat(name)
    	return statNolog(name)
    }
    
    // Lstat returns a [FileInfo] describing the named file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 973 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    The runtime variants are all based on the existing _runtime_ variant and we do not change any existing information.
    All Java ecosystem attributes, the dependencies and the main jar file stay part of each of the runtime variants.
    We only set the additional attributes `OPERATING_SYSTEM_ATTRIBUTE` and `ARCHITECTURE_ATTRIBUTE` which are defined as part of Gradle's <<building_cpp_projects.adoc#building_cpp_projects,native support>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
Back to top