Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,613 for cleaned (0.13 sec)

  1. src/net/url/url.go

    	if err != nil {
    		return err
    	}
    	*u = *u1
    	return nil
    }
    
    // JoinPath returns a new [URL] with the provided path elements joined to
    // any existing path and the resulting path cleaned of any ./ or ../ elements.
    // Any sequences of multiple / characters will be reduced to a single /.
    func (u *URL) JoinPath(elem ...string) *URL {
    	elem = append([]string{u.EscapedPath()}, elem...)
    	var p string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  2. pkg/volume/util/atomic_writer.go

    func validatePayload(payload map[string]FileProjection) (map[string]FileProjection, error) {
    	cleanPayload := make(map[string]FileProjection)
    	for k, content := range payload {
    		if err := validatePath(k); err != nil {
    			return nil, err
    		}
    
    		cleanPayload[filepath.Clean(k)] = content
    	}
    
    	return cleanPayload, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    		return nil, fmt.Errorf("failed to convert perf.data file. Try github.com/google/perf_data_converter: %v", err)
    	}
    	return profile, nil
    }
    
    // adjustURL validates if a profile source is a URL and returns an
    // cleaned up URL and the timeout to use for retrieval over HTTP.
    // If the source cannot be recognized as a URL it returns an empty string.
    func adjustURL(source string, duration, timeout time.Duration) (string, time.Duration) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. pkg/volume/iscsi/iscsi.go

    	manager diskManager
    	volume.MetricsProvider
    }
    
    func (iscsi *iscsiDisk) GetPath() string {
    	name := iscsiPluginName
    	// safe to use PodVolumeDir now: volume teardown occurs before pod is cleaned up
    	return iscsi.plugin.host.GetPodVolumeDir(iscsi.podUID, utilstrings.EscapeQualifiedName(name), iscsi.VolName)
    }
    
    func (iscsi *iscsiDisk) iscsiGlobalMapPath(spec *volume.Spec) (string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  5. pkg/controller/deployment/deployment_controller.go

    	}
    
    	// rollback is not re-entrant in case the underlying replica sets are updated with a new
    	// revision so we should ensure that we won't proceed to update replica sets until we
    	// make sure that the deployment has cleaned up its rollback spec in subsequent enqueues.
    	if getRollbackTo(d) != nil {
    		return dc.rollback(ctx, d, rsList)
    	}
    
    	scalingEvent, err := dc.isScalingEvent(ctx, d, rsList)
    	if err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. src/go/internal/gcimporter/gcimporter_test.go

    	defer os.RemoveAll(tmpdir)
    
    	compile(t, "testdata", "p.go", filepath.Join(tmpdir, "testdata"), nil)
    
    	// Multiple imports of p must succeed without redeclaration errors.
    	// We use an import path that's not cleaned up so that the eventual
    	// file path for the package is different from the package path; this
    	// will expose the error if it is present.
    	//
    	// (Issue: Both the textual and the binary importer used the file path
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  7. architecture/networking/pilot.md

    However, all other types *cannot* be deleted explicitly, and instead are cleaned up when all references are removed. This means we can send partial updates for non-root types, without deleting unsent resources. This effectively allows doing delta updates over SotW. This optimization is critical for our endpoints generator, ensuring...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    	return nil
    }
    
    // SyncTerminatedPod cleans up a pod that has terminated (has no running containers).
    // The invocations in this call are expected to tear down all pod resources.
    // When this method exits the pod is expected to be ready for cleanup. This method
    // reduces the latency of pod cleanup but is not guaranteed to get called in all scenarios.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (1)
  9. src/cmd/go/internal/envcmd/env.go

    		{Name: "GOBIN", Value: cfg.GOBIN},
    		{Name: "GOCACHE"},
    		{Name: "GOENV", Value: envFile, Changed: envFileChanged},
    		{Name: "GOEXE", Value: cfg.ExeSuffix},
    
    		// List the raw value of GOEXPERIMENT, not the cleaned one.
    		// The set of default experiments may change from one release
    		// to the next, so a GOEXPERIMENT setting that is redundant
    		// with the current toolchain might actually be relevant with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  10. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/GradleRunner.java

     * Assertions can then be made on the outcome of the build, such as the state of files created by the build,
     * or what tasks were actually executed during the build.
     * <p>
     * A runner can be created via the {@link #create()} method.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 19.6K bytes
    - Viewed (0)
Back to top