Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for directory1 (0.39 sec)

  1. src/cmd/go/alldocs.go

    // to a subdirectory named "go" in the user's home directory
    // ($HOME/go on Unix, %USERPROFILE%\go on Windows),
    // unless that directory holds a Go distribution.
    // Run "go env GOPATH" to see the current GOPATH.
    //
    // See https://golang.org/wiki/SettingGOPATH to set a custom GOPATH.
    //
    // Each directory listed in GOPATH must have a prescribed structure:
    //
    // The src directory holds source code. The path below src
    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/cmd/go/internal/work/exec.go

    // evaluating f in the directory dir.
    // We always pass absolute paths of source files so that
    // the error messages will include the full path to a file
    // in need of attention.
    func mkAbs(dir, f string) string {
    	// Leave absolute paths alone.
    	// Also, during -n mode we use the pseudo-directory $WORK
    	// instead of creating an actual work directory that won't be used.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    	return kl.StatsProvider.RlimitStats()
    }
    
    // setupDataDirs creates:
    // 1.  the root directory
    // 2.  the pods directory
    // 3.  the plugins directory
    // 4.  the pod-resources directory
    // 5.  the checkpoint directory
    // 6.  the pod logs root directory
    func (kl *Kubelet) setupDataDirs() error {
    	if cleanedRoot := filepath.Clean(kl.rootDirectory); cleanedRoot != kl.rootDirectory {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_test.go

    		assert.True(t, dirExists(kl.getPodDir(pods[i].UID)), "Expected directory to exist for pod %d", i)
    	}
    
    	// Pod 1 has been deleted and no longer exists.
    	kl.podManager.SetPods([]*v1.Pod{pods[0]})
    	kl.HandlePodCleanups(ctx)
    	assert.True(t, dirExists(kl.getPodDir(pods[0].UID)), "Expected directory to exist for pod 0")
    	assert.False(t, dirExists(kl.getPodDir(pods[1].UID)), "Expected directory to be deleted for pod 1")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-helper.sh

        setup-addon-manifests "addons" "konnectivity-agent"
        setup-konnectivity-agent-manifest
      fi
      if [[ "${ENABLE_CLUSTER_DNS:-}" == "true" ]]; then
        # Create a new directory for the DNS addon and prepend a "0" on the name.
        # Prepending "0" to the directory ensures that add-on manager
        # creates the dns service first. This ensures no other add-on
        # can "steal" the designated DNS clusterIP.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods.go

    				// Create the sub path now because if it's auto-created later when referenced, it may have an
    				// incorrect ownership and mode. For example, the sub path directory must have at least g+rwx
    				// when the pod specifies an fsGroup, and if the directory is not created here, Docker will
    				// later auto-create it with the incorrect mode 0750
    				// Make extra care not to escape the volume!
    				perm, err := hu.GetMode(volumePath)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  7. cluster/gce/util.sh

      # https://github.com/Microsoft/SDN/blob/master/Kubernetes/windows/start-kubelet.ps1.
      flags+=" --config=${WINDOWS_KUBELET_CONFIG_FILE}"
      flags+=" --kubeconfig=${WINDOWS_KUBECONFIG_FILE}"
    
      # The directory where the TLS certs are located.
      flags+=" --cert-dir=${WINDOWS_PKI_DIR}"
      flags+=" --pod-manifest-path=${WINDOWS_MANIFESTS_DIR}"
    
      # Configure kubelet to run as a windows service.
      flags+=" --windows-service=true"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let constructor = "TF::CreateInitTextFileToImportPass()";
      let options = [
        Option<"saved_model_dir_", "tf-saved-model-dir", "std::string", /*default=*/"",
               "Directory containing the model exported as a TensorFlow "
               "SavedModel. If your model is not based on the TensorFlow "
               "SavedModel, use an empty value.">
      ];
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  9. cmd/object-handlers.go

    		os.Sweep()
    	}
    }
    
    // PutObjectExtractHandler - PUT Object extract is an extended API
    // based off from AWS Snowball feature to auto extract compressed
    // stream will be extracted in the same directory it is stored in
    // and the folder structures will be built out accordingly.
    func (api objectAPIHandlers) PutObjectExtractHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := newContext(r, w, "PutObjectExtract")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
Back to top