Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 92 for fileSystem (0.21 sec)

  1. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/services/FallbackFileCanonicalizer.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.nativeintegration.filesystem.services;
    
    import org.gradle.internal.file.FileCanonicalizer;
    import org.gradle.internal.file.FileException;
    
    import java.io.File;
    import java.io.IOException;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:56 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. pkg/volume/util/hostutil/hostutil_windows.go

    */
    
    package hostutil
    
    import (
    	"fmt"
    	"io/fs"
    	"os"
    	"path/filepath"
    	"strings"
    	"syscall"
    
    	"golang.org/x/sys/windows"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/util/filesystem"
    	"k8s.io/mount-utils"
    	utilpath "k8s.io/utils/path"
    )
    
    // HostUtil implements HostUtils for Windows platforms.
    type HostUtil struct{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 13:38:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/native/src/test/groovy/org/gradle/internal/nativeintegration/filesystem/services/NativePlatformBackedFileMetadataAccessorTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.nativeintegration.filesystem.services
    
    import net.rubygrapefruit.platform.Native
    import net.rubygrapefruit.platform.file.Files
    import org.gradle.internal.file.AbstractFileMetadataAccessorTest
    import org.gradle.internal.file.FileMetadata
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:56 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. cni/pkg/config/config.go

    	RepairConfig  RepairConfig
    }
    
    // InstallConfig struct defines the Istio CNI installation options
    type InstallConfig struct {
    	// Location of the CNI config files in the host's filesystem
    	CNINetDir string
    	// Location of the CNI config files in the container's filesystem (mount location of the CNINetDir)
    	MountedCNINetDir string
    	// Name of the CNI config file
    	CNIConfName string
    	// Whether to install CNI plugin as a chained or standalone
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. operator/cmd/mesh/profile-list.go

    package mesh
    
    import (
    	"sort"
    
    	"github.com/spf13/cobra"
    
    	"istio.io/istio/operator/pkg/helm"
    )
    
    type profileListArgs struct {
    	// manifestsPath is a path to a charts and profiles directory in the local filesystem with a release tgz.
    	manifestsPath string
    }
    
    func addProfileListFlags(cmd *cobra.Command, args *profileListArgs) {
    	cmd.PersistentFlags().StringVarP(&args.manifestsPath, "charts", "", "", ChartsDeprecatedStr)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/services/UnsupportedFilePermissions.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.nativeintegration.filesystem.services;
    
    import org.gradle.internal.file.FileModeAccessor;
    import org.gradle.internal.file.FileModeMutator;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import java.io.File;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:56 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/services/NativePlatformBackedFileMetadataAccessor.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.nativeintegration.filesystem.services;
    
    import net.rubygrapefruit.platform.NativeException;
    import net.rubygrapefruit.platform.file.FileInfo;
    import net.rubygrapefruit.platform.file.Files;
    import org.gradle.api.UncheckedIOException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:55 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. src/testing/testing_windows.go

    package testing
    
    import (
    	"errors"
    	"internal/syscall/windows"
    	"math/bits"
    	"syscall"
    	"time"
    )
    
    // isWindowsRetryable reports whether err is a Windows error code
    // that may be fixed by retrying a failed filesystem operation.
    func isWindowsRetryable(err error) bool {
    	for {
    		unwrapped := errors.Unwrap(err)
    		if unwrapped == nil {
    			break
    		}
    		err = unwrapped
    	}
    	if err == syscall.ERROR_ACCESS_DENIED {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. samples/addons/loki.yaml

    data:
      config.yaml: |
        
        auth_enabled: false
        common:
          compactor_address: 'http://loki:3100'
          path_prefix: /var/loki
          replication_factor: 1
          storage:
            filesystem:
              chunks_directory: /var/loki/chunks
              rules_directory: /var/loki/rules
        frontend:
          scheduler_address: ""
          tail_proxy_url: http://loki-querier.istio-system.svc.cluster.local:3100
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. pkg/kubeapiserver/authorizer/reload.go

    	webhookmetrics "k8s.io/apiserver/plugin/pkg/authorizer/webhook/metrics"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/auth/authorizer/abac"
    	"k8s.io/kubernetes/pkg/kubeapiserver/authorizer/modes"
    	"k8s.io/kubernetes/pkg/util/filesystem"
    	"k8s.io/kubernetes/plugin/pkg/auth/authorizer/node"
    	"k8s.io/kubernetes/plugin/pkg/auth/authorizer/rbac"
    )
    
    type reloadableAuthorizerResolver struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top