Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 361 for withZip (0.16 sec)

  1. src/go/internal/gcimporter/ureader.go

    		return strings.Compare(a.Path(), b.Path())
    	})
    	pkg.SetImports(imps)
    
    	pkg.MarkComplete()
    	return pkg
    }
    
    // A reader holds the state for reading a single unified IR element
    // within a package.
    type reader struct {
    	pkgbits.Decoder
    
    	p *pkgReader
    
    	dict *readerDict
    }
    
    // A readerDict holds the state for type parameters that parameterize
    // the current unified IR element.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. pkg/controller/job/backoff_utils.go

    // create the replacement pods. The number of consecutive pod failures for the
    // index is retrieved from the `job-index-failure-count` annotation of the
    // last failed pod within the index (represented by `lastFailedPod`).
    // The last failed pod is also used to determine the time of the last failure.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 07:46:41 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. .github/CODEOWNERS

    ##
    ## CODEOWNERS style rules:
    ## 1. Prefer team ownership over individual user ownership.
    ## 2. GBT-related team should be listed first.
    ## 3. Try to keep paths alphabetically sorted within visual groups.
    ## 4. List individual owners last.
    ##
    
    # bt-unassigned-maintainers must be the first owner
    # All directories that are not explicitly listed below are considered
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:44:59 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. src/html/template/doc.go

    defined in the docs for ErrorCode.
    
    HTML templates treat data values as plain text which should be encoded so they
    can be safely embedded in an HTML document. The escaping is contextual, so
    actions can appear within JavaScript, CSS, and URI contexts.
    
    The security model used by this package assumes that template authors are
    trusted, while Execute's data parameter is not. More details are
    provided below.
    
    Example
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:04:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. src/path/filepath/path.go

    //
    //   - is within the subtree rooted at the directory in which path is evaluated
    //   - is not an absolute path
    //   - is not empty
    //   - on Windows, is not a reserved name such as "NUL"
    //
    // If IsLocal(path) returns true, then
    // Join(base, path) will always produce a path contained within base and
    // Clean(path) will always produce an unrooted path with no ".." path elements.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. src/encoding/pem/pem.go

    //
    // The base64 decoder already skips newline characters, so we don't need to
    // filter them out here.
    func removeSpacesAndTabs(data []byte) []byte {
    	if !bytes.ContainsAny(data, " \t") {
    		// Fast path; most base64 data within PEM contains newlines, but
    		// no spaces nor tabs. Skip the extra alloc and work.
    		return data
    	}
    	result := make([]byte, len(data))
    	n := 0
    
    	for _, b := range data {
    		if b == ' ' || b == '\t' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. src/time/time.go

    	min = sec / secondsPerMinute
    	sec -= min * secondsPerMinute
    	return
    }
    
    // Hour returns the hour within the day specified by t, in the range [0, 23].
    func (t Time) Hour() int {
    	return int(t.abs()%secondsPerDay) / secondsPerHour
    }
    
    // Minute returns the minute offset within the hour specified by t, in the range [0, 59].
    func (t Time) Minute() int {
    	return int(t.abs()%secondsPerHour) / secondsPerMinute
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/values_types.proto

      //
      // More info: https://kubernetes.io/docs/concepts/containers/images#updating-images
      string pullPolicy = 5;
    
      // The directory path within the cluster node's filesystem where the CNI binaries are to be installed. Typically /var/lib/cni/bin.
      string cniBinDir = 6;
    
      // The directory path within the cluster node's filesystem where the CNI configuration files are to be installed. Typically /etc/cni/net.d.
      string cniConfDir = 7;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/batch/v1/types.go

    	PodFailurePolicyActionFailJob PodFailurePolicyAction = "FailJob"
    
    	// This is an action which might be taken on a pod failure - mark the
    	// Job's index as failed to avoid restarts within this index. This action
    	// can only be used when backoffLimitPerIndex is set.
    	// This value is beta-level.
    	PodFailurePolicyActionFailIndex PodFailurePolicyAction = "FailIndex"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/NoDaemonGradleExecuter.java

                String gradleHome = getDistribution().getGradleHomeDir().getAbsolutePath();
    
                // NOTE: Windows uses Path, but allows asking for PATH, and PATH
                //       is set within builder object for some things such
                //       as CommandLineIntegrationTest, try PATH first, and
                //       then revert to default of Path if null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 05:38:50 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top