Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Directories (0.79 sec)

  1. src/cmd/go/alldocs.go

    // thing that go work use does.
    //
    // The -r flag searches recursively for modules in the argument
    // directories, and the use command operates as if each of the directories
    // were specified as arguments: namely, use directives will be added for
    // directories that exist, and removed for directories that do not exist.
    //
    // See the workspaces reference at https://go.dev/ref/mod#workspaces
    // for more information.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * <code>public</code> on the server <code>storage15</code>. In addition
     * to referencing files and directories, jCIFS can also address servers,
     * and workgroups.
     * <p>
     * <font color="#800000"><i>Important: all SMB URLs that represent
     * workgroups, servers, shares, or directories require a trailing slash '/'.
     * </i></font>
     * <p>
     * When using the <tt>java.net.URL</tt> class with
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    				// and the go.mod indicates that we should
    				// not consider parent directories.
    				return path
    			}
    		}
    		limit = i
    	}
    	return path
    }
    
    // hasGoFiles reports whether dir contains any files with names ending in .go.
    // For a vendor check we must exclude directories that contain no .go files.
    // Otherwise it is not possible to vendor just a/b/c and still import the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods.go

    	klog.V(3).InfoS("Clean up orphaned pod directories")
    	err = kl.cleanupOrphanedPodDirs(allPods, runningRuntimePods)
    	if err != nil {
    		// We want all cleanup tasks to be run even if one of them failed. So
    		// we just log an error here and continue other cleanup tasks.
    		// This also applies to the other clean up tasks.
    		klog.ErrorS(err, "Failed cleaning up orphaned pod directories")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    				}
    			}
    		}
    	}
    
    	// Make data directories for the pod
    	if err := kl.makePodDataDirs(pod); err != nil {
    		kl.recorder.Eventf(pod, v1.EventTypeWarning, events.FailedToMakePodDataDirectories, "error making pod data directories: %v", err)
    		klog.ErrorS(err, "Unable to make pod data directories for pod", "pod", klog.KObj(pod))
    		return false, err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

            'dir'  | FileType.RegularFile | 'output directory .*file must be a directory, but is not'
            'dir'  | FileType.Missing     | 'output .*this_file_does_not.exist must exist'
        }
    
        def "directories are created for outputs in the workspace"() {
            given:
            buildFile << """
                def a = file('a.jar')
                a.text = '1234'
    
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-helper.sh

          gce-metadata-fw-helper -I LOG "MetadataServerFirewallReject" !
          gce-metadata-fw-helper -I LOG "MetadataServerFirewallAccept"
          ;;
      esac
    }
    
    function create-dirs {
      echo "Creating required directories"
      mkdir -p /var/lib/kubelet
      mkdir -p /etc/kubernetes/manifests
      if [[ "${KUBERNETES_MASTER:-}" == "false" ]]; then
        mkdir -p /var/lib/kube-proxy
      fi
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_test.go

    	kl := testKubelet.kubelet
    	pods := []*v1.Pod{
    		podWithUIDNameNs("12345678", "pod1", "ns"),
    		podWithUIDNameNs("12345679", "pod2", "ns"),
    	}
    
    	kl.podManager.SetPods(pods)
    	// Sync to create pod directories.
    	kl.HandlePodSyncs(kl.podManager.GetPods())
    	for i := range pods {
    		assert.True(t, dirExists(kl.getPodDir(pods[i].UID)), "Expected directory to exist for pod %d", i)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "properties": {
            "defaultMode": {
              "description": "Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
              "format": "int32",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            executer.expectDeprecationWarningWithMultilinePattern("""The contents of the immutable workspace '.*' have been modified. This behavior has been deprecated. This will fail with an error in Gradle 9.0. These workspace directories are not supposed to be modified once they are created. The modification might have been caused by an external process, or could be the result of disk corruption. The inconsistent workspace will be moved to '.*', and will be recreated.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
Back to top