Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,613 for cleaned (0.21 sec)

  1. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

                    return signingKey;
                case 3:
                case 4:
                case 5:
                    /* This code is only called if extended security is not on. This will
                     * all be cleaned up an normalized in JCIFS 2.x.
                     */
                    throw new SmbException("NTLMv2 requires extended security (jcifs.smb1.smb1.client.useExtendedSecurity must be true if jcifs.smb1.smb1.lmCompatibility >= 3)");
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 22.5K bytes
    - Viewed (0)
  2. src/net/http/pattern.go

    		return nil, errors.New("host contains '{' (missing initial '/'?)")
    	}
    	// At this point, rest is the path.
    	off += i
    
    	// An unclean path with a method that is not CONNECT can never match,
    	// because paths are cleaned before matching.
    	if method != "" && method != "CONNECT" && rest != cleanPath(rest) {
    		return nil, errors.New("non-CONNECT pattern with unclean path can never match")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 16:36:30 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. pkg/volume/fc/fc.go

    	manager diskManager
    	// io handler interface
    	io ioHandler
    	volume.MetricsNil
    }
    
    func (fc *fcDisk) GetPath() string {
    	// safe to use PodVolumeDir now: volume teardown occurs before pod is cleaned up
    	return fc.plugin.host.GetPodVolumeDir(fc.podUID, utilstrings.EscapeQualifiedName(fcPluginName), fc.volName)
    }
    
    func (fc *fcDisk) fcGlobalMapPath(spec *volume.Spec) (string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	metav1.TypeMeta `json:",inline"`
    
    	// CleanupTmpDir specifies whether the "/etc/kubernetes/tmp" directory should be cleaned during the reset process.
    	// +optional
    	CleanupTmpDir bool `json:"cleanupTmpDir,omitempty"`
    
    	// CertificatesDir specifies the directory where the certificates are stored. If specified, it will be cleaned during the reset process.
    	// +optional
    	CertificatesDir string `json:"certificatesDir,omitempty"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  5. misc/go_android_exec/main.go

    	}
    
    	// Prepare a temporary directory that will be cleaned up at the end.
    	// Binary names can conflict.
    	// E.g. template.test from the {html,text}/template packages.
    	binName := filepath.Base(os.Args[1])
    	deviceGotmp := fmt.Sprintf(deviceRoot+"/%s-%d", binName, os.Getpid())
    	deviceGopath := deviceGotmp + "/gopath"
    	defer adb("exec-out", "rm", "-rf", deviceGotmp) // Clean up.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 17:46:57 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  6. pkg/credentialprovider/plugin/plugin.go

    	defaultCacheDuration time.Duration
    
    	// plugin is the exec implementation of the credential providing plugin.
    	plugin Plugin
    
    	// lastCachePurge is the last time cache is cleaned for expired entries.
    	lastCachePurge time.Time
    }
    
    // cacheEntry is the cache object that will be stored in cache.Store.
    type cacheEntry struct {
    	key         string
    	credentials credentialprovider.DockerConfig
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 05:07:28 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. pkg/controller/statefulset/stateful_pod_control.go

    		default:
    			if hasUnexpectedController(claim, set, pod) {
    				// Add an event so the user knows they're in a strange configuration. The claim will be cleaned up below.
    				msg := fmt.Sprintf("PersistentVolumeClaim %s has a conflicting OwnerReference that acts as a manging controller, the retention policy is ignored for this claim", claimName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  8. pkg/kubelet/pod_workers.go

    	// IsPodTerminationRequested returns true when pod termination has been requested
    	// until the termination completes and the pod is removed from config. This should
    	// not be used in cleanup loops because it will return false if the pod has already
    	// been cleaned up - use ShouldPodContainersBeTerminating instead. Also, this method
    	// may return true while containers are still being initialized by the pod worker.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  9. src/path/filepath/path.go

    // If the result of this process is an empty string, Clean
    // returns the string ".".
    //
    // On Windows, Clean does not modify the volume name other than to replace
    // occurrences of "/" with `\`.
    // For example, Clean("//host/share/../x") returns `\\host\share\x`.
    //
    // See also Rob Pike, “Lexical File Names in Plan 9 or
    // Getting Dot-Dot Right,”
    // https://9p.io/sys/doc/lexnames.html
    func Clean(path string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  10. test/chan/powser2.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test concurrency primitives: power series.
    
    // Like powser1.go but uses channels of interfaces.
    // Has not been cleaned up as much as powser1.go, to keep
    // it distinct and therefore a different test.
    
    // Power series package
    // A power series is a channel, along which flow rational
    // coefficients.  A denominator of zero signifies the end.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 13.3K bytes
    - Viewed (0)
Back to top