Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 134 for pouch (0.05 sec)

  1. cluster/gce/gci/configure-helper.sh

    function get-or-generate-uuid(){
      local device="${1}"
    
      local ssdmap="/home/kubernetes/localssdmap.txt"
      echo "Generating or getting UUID from ${ssdmap}"
    
      if [[ ! -e "${ssdmap}" ]]; then
        touch "${ssdmap}"
        chmod +w "${ssdmap}"
      fi
    
      # each line of the ssdmap looks like "${device} persistent-uuid"
      local myuuid
      if grep -q "${device}" "${ssdmap}"; then
        #create symlink based on saved uuid
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. pkg/volume/util/util.go

    		klog.Errorf("Can't mkdir %s: %v", dir, err)
    		return
    	}
    
    	readyFile := filepath.Join(dir, readyFileName)
    	file, err := os.Create(readyFile)
    	if err != nil {
    		klog.Errorf("Can't touch %s: %v", readyFile, err)
    		return
    	}
    	file.Close()
    }
    
    // GetSecretForPod locates secret by name in the pod's namespace and returns secret map
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/container_manager_linux.go

    		// Err on the side of caution. Avoid moving the docker daemon unless we are able to identify its context.
    		return err
    	} else if !runningInHost {
    		// Process is running inside a container. Don't touch that.
    		klog.V(2).InfoS("PID is not running in the host namespace", "pid", pid)
    		return nil
    	}
    
    	var errs []error
    	if manager != nil {
    		cont, err := getContainer(pid)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/io/Files.java

       *
       * @param file the file to create or update
       * @throws IOException if an I/O error occurs
       */
      @SuppressWarnings("GoodTime") // reading system time without TimeSource
      public static void touch(File file) throws IOException {
        checkNotNull(file);
        if (!file.createNewFile() && !file.setLastModified(System.currentTimeMillis())) {
          throw new IOException("Unable to update modification time of " + file);
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    type CustomResourceConversion struct {
    	// strategy specifies how custom resources are converted between versions. Allowed values are:
    	// - `"None"`: The converter only change the apiVersion and would not touch any other field in the custom resource.
    	// - `"Webhook"`: API Server will call to an external webhook to do the conversion. Additional information
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            expected.add("maven-it-plugin-log-file");
            expected.add("maven-it-plugin-expression");
            expected.add("maven-it-plugin-fork");
            expected.add("maven-it-plugin-touch");
    
            List<String> actual = new ArrayList<>();
            @SuppressWarnings("unchecked")
            List<Plugin> plugins = (List<Plugin>) pom.getValue("build/plugins");
            for (Plugin plugin : plugins) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/io/Files.java

       *
       * @param file the file to create or update
       * @throws IOException if an I/O error occurs
       */
      @SuppressWarnings("GoodTime") // reading system time without TimeSource
      public static void touch(File file) throws IOException {
        checkNotNull(file);
        if (!file.createNewFile() && !file.setLastModified(System.currentTimeMillis())) {
          throw new IOException("Unable to update modification time of " + file);
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

                if (!leakDetectorJar.exists()) {
                    // Need to download the jar
                    GFileUtils.parentMkdirs(leakDetectorJar);
                    GFileUtils.touch(leakDetectorJar);
                    try (OutputStream out = Files.newOutputStream(leakDetectorJar.toPath());
                         InputStream in = new URL(leakDetectorUrl).openStream()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/call.go

    				atparams, tmp := check.renameTParams(call.Pos(), asig.TypeParams().list(), asig)
    				asig = tmp.(*Signature)
    				asig.tparams = &TypeParamList{atparams} // renameTParams doesn't touch associated type parameters
    				arg.typ = asig                          // new type identity for the function argument
    				tparams = append(tparams, atparams...)
    				// add partial list of type arguments, if any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types.go

    type CustomResourceConversion struct {
    	// strategy specifies how custom resources are converted between versions. Allowed values are:
    	// - `None`: The converter only change the apiVersion and would not touch any other field in the custom resource.
    	// - `Webhook`: API Server will call to an external webhook to do the conversion. Additional information
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 32.3K bytes
    - Viewed (0)
Back to top