Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 118 for inaccessible (0.23 sec)

  1. cmd/common-main.go

    			continue
    		}
    		if file.Mode()&os.ModeSymlink == os.ModeSymlink {
    			file, err = Stat(filepath.Join(root.Name(), file.Name()))
    			if err != nil {
    				// not accessible ignore
    				continue
    			}
    			if !file.IsDir() {
    				continue
    			}
    		}
    
    		var (
    			certFile = filepath.Join(root.Name(), file.Name(), publicCertFile)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  2. src/go/types/named.go

    // This information may be loaded from a provided loader function, or computed
    // from an origin type (in the case of instances).
    //
    // After resolution, the type parameters, methods, and underlying type of n are
    // accessible; but if n is an instantiated type, its methods may still be
    // unexpanded.
    func (n *Named) resolve() *Named {
    	if n.state() >= resolved { // avoid locking below
    		return n
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. cmd/bucket-lifecycle.go

    	if lcEvent.Action.DeleteRestored() {
    		// delete locally restored copy of object or object version
    		// from the source, while leaving metadata behind. The data on
    		// transitioned tier lies untouched and still accessible
    		opts.Transition.ExpireRestored = true
    		_, err := objectAPI.DeleteObject(ctx, oi.Bucket, oi.Name, opts)
    		if err == nil {
    			// TODO consider including expiry of restored object to events we
    			// notify.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/types.go

    	// is the global endpoint for the cluster, which then loadbalances the requests to each individual API server. This
    	// configuration object lets you customize what IP/DNS name and port the local API server advertises it's accessible
    	// on. By default, kubeadm tries to auto-detect the IP of the default interface and use that, but in case that process
    	// fails you may set the desired value here.
    	LocalAPIEndpoint APIEndpoint
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/networking/v1/types.go

    // matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and from.
    type NetworkPolicyIngressRule struct {
    	// ports is a list of ports which should be made accessible on the pods selected for
    	// this rule. Each item in this list is combined using a logical OR. If this field is
    	// empty or missing, this rule matches all ports (traffic not restricted by port).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  6. src/os/file.go

    // On Windows, it uses GetTempPath, returning the first non-empty
    // value from %TMP%, %TEMP%, %USERPROFILE%, or the Windows directory.
    // On Plan 9, it returns /tmp.
    //
    // The directory is neither guaranteed to exist nor have accessible
    // permissions.
    func TempDir() string {
    	return tempDir()
    }
    
    // UserCacheDir returns the default root directory to use for user-specific
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

        } catch (InvocationTargetException e) {
          // If ApiProxy throws an exception, we're not in a proper AppEngine environment.
          return false;
        } catch (IllegalAccessException e) {
          // If the method isn't accessible, we're not on a supported version of AppEngine;
          return false;
        } catch (NoSuchMethodException e) {
          // If the method doesn't exist, we're not on a supported version of AppEngine;
          return false;
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 39K bytes
    - Viewed (0)
  8. tests/integration/ambient/baseline_test.go

    					resolution: v1alpha3.ServiceEntry_STATIC,
    					to:         apps.MeshExternal,
    				},
    				// TODO dns cases
    			}
    
    			// Configure a gateway with one app as the destination to be accessible through the ingress
    			t.ConfigIstio().Eval(apps.Namespace.Name(), map[string]string{
    				"Destination": apps.Captured[0].Config().Service,
    			}, `apiVersion: networking.istio.io/v1alpha3
    kind: Gateway
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// is the global endpoint for the cluster, which then loadbalances the requests to each individual API server. This
    	// configuration object lets you customize what IP/DNS name and port the local API server advertises it's accessible
    	// on. By default, kubeadm tries to auto-detect the IP of the default interface and use that, but in case that process
    	// fails you may set the desired value here.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  10. pilot/pkg/model/context.go

    	// called before any List/Get calls if the state has changed
    	Reconcile(ctx *PushContext) error
    	// SecretAllowed determines if a SDS credential is accessible to a given namespace.
    	// For example, for resourceName of `kubernetes-gateway://ns-name/secret-name` and namespace of `ingress-ns`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
Back to top