Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,045 for creading (0.15 sec)

  1. hack/cherry_pick_pull.sh

      echo "    $0 upstream/release-3.14 12345 56789  # Cherry-picks PR 12345, then 56789 and proposes the combination as a single PR."
      echo
      echo "  Set the DRY_RUN environment var to skip git push and creating PR."
      echo "  This is useful for creating patches to a release branch without making a PR."
      echo "  When DRY_RUN is set the script will leave you in a branch containing the commits you cherry-picked."
      echo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 26 03:51:05 UTC 2022
    - 8.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/util/GFileUtils.java

                }
    
                if (!parentDirToCreate.mkdir() && !parentDirToCreate.isDirectory()) {
                    throw new UncheckedIOException(String.format("Failed to create parent directory '%s' when creating directory '%s'", parentDirToCreate, dir));
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/store/DefaultBinaryStore.java

                    throw new RuntimeException("Problems reading data from " + toString(), e);
                }
            }
    
            @Override
            public void close() {
                try {
                    if (resources != null) {
                        resources.stop();
                    }
                } catch (Exception e) {
                    throw new RuntimeException("Problems cleaning resources of " + toString(), e);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/change_test.go

    		defer wg.Done()
    		for {
    			select {
    			case <-stopChan:
    				return
    			default:
    			}
    
    			time.Sleep(10 * time.Millisecond)
    
    			updateCRD()
    		}
    	}()
    
    	// Set up 10 loops creating and reading custom resources
    	for i := 0; i < 10; i++ {
    		wg.Add(1)
    		go func(i int) {
    			defer wg.Done()
    			noxuInstanceToCreate := fixtures.NewNoxuInstance(ns, fmt.Sprintf("foo-%d", i))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:59:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. CHANGELOG.md

        This is only relevant for duplex request bodies, because they are written concurrently when
        reading the response body.
    
     *  New: `MockResponse.inTunnel()` is a new `mockwebserver3` API to configure responses that are
        served while creating a proxy tunnel. This obsoletes both the `tunnelProxy` argument on
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:31:39 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  6. pkg/registry/flowcontrol/prioritylevelconfiguration/strategy.go

    type priorityLevelConfigurationStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating priority level configuration objects.
    var Strategy = priorityLevelConfigurationStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    // NamespaceScoped returns false because all PriorityClasses are global.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 20:55:50 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/io/TempFileCreator.java

     * in the case of Android, the current app. If that is not possible (as is the case under the very
     * old Android Ice Cream Sandwich release), then this class throws an exception instead of creating
     * a file or directory that would be more accessible.
     */
    @J2ktIncompatible
    @GwtIncompatible
    @J2ObjCIncompatible
    @ElementTypesAreNonnullByDefault
    abstract class TempFileCreator {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 06 17:11:11 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/reconciler/reconstruct.go

    			// reconcile() calls SetUp and reconstructs the volume in ASW.
    			klog.V(4).InfoS("Volume exists in desired state, skip cleaning up mounts", "podName", volume.podName, "volumeSpecName", volume.volumeSpecName)
    			continue
    		}
    		klog.InfoS("Cleaning up mounts for volume that could not be reconstructed", "podName", volume.podName, "volumeSpecName", volume.volumeSpecName)
    		rc.cleanupMounts(volume)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. pkg/volume/util/atomic_writer.go

    //     the real data:
    //     <target-dir>/..data          -> ..2016_02_01_15_04_05.12345678/
    //     NOTE(claudiub): We need to create these symlinks AFTER we've finished creating and
    //     linking everything else. On Windows, if a target does not exist, the created symlink
    //     will not work properly if the target ends up being a directory.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/io/TempFileCreator.java

     * in the case of Android, the current app. If that is not possible (as is the case under the very
     * old Android Ice Cream Sandwich release), then this class throws an exception instead of creating
     * a file or directory that would be more accessible.
     */
    @J2ktIncompatible
    @GwtIncompatible
    @J2ObjCIncompatible
    @ElementTypesAreNonnullByDefault
    abstract class TempFileCreator {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 06 17:11:11 UTC 2023
    - 12.5K bytes
    - Viewed (0)
Back to top