Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for afterend (0.31 sec)

  1. src/cmd/compile/internal/noder/noder.go

    }
    
    // A function named init is a special case.
    // It is called by the initialization before main is run.
    // To make it unique within a package and also uncallable,
    // the name, normally "pkg.init", is altered to "pkg.init.0".
    var renameinitgen int
    
    func Renameinit() *types.Sym {
    	s := typecheck.LookupNum("init.", renameinitgen)
    	renameinitgen++
    	return s
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 20:40:57 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  2. docs/LICENSE

    Section 1 -- Definitions.
    
      a. Adapted Material means material subject to Copyright and Similar
         Rights that is derived from or based upon the Licensed Material
         and in which the Licensed Material is translated, altered,
         arranged, transformed, or otherwise modified in a manner requiring
         permission under the Copyright and Similar Rights held by the
         Licensor. For purposes of this Public License, where the Licensed
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 10 16:50:06 UTC 2021
    - 18.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/proxy/upgradeaware.go

    // an upgrade on the server. Any response will be handled by the intercepting
    // proxy.
    type UpgradeRequestRoundTripper interface {
    	http.RoundTripper
    	// WrapRequest takes a valid HTTP request and returns a suitably altered version
    	// of request with any HTTP level values required to complete the request half of
    	// an upgrade on the server. It does not get a chance to see the response and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  4. tests/integration/README.md

    command-line:
    
    ```console
    $ go test ./... -p 1 --istio.test.kube.config ~/.kube/config
    ```
    
    If not specified, `~/.kube/config` will be used by default.
    
    **Be aware that any existing content will be altered and/or removed from the cluster**.
    
    Note that the HUB and TAG environment variables **must** be set when running tests in the Kubernetes environment.
    
    ## Diagnosing Failures
    
    ### Working Directory
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/cases/map.go

    // dst so far won't need changing as we see more source bytes.
    type mapFunc func(*context) bool
    
    // A spanFunc takes a context set to the current rune and returns whether this
    // rune would be altered when written to the output. It may advance the context
    // to the next rune. It returns whether a checkpoint is possible.
    type spanFunc func(*context) bool
    
    // maxIgnorable defines the maximum number of ignorables to consider for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	"ordinals":                     ...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/apps/v1/generated.proto

      // volume claims created from volumeClaimTemplates. By default, all persistent
      // volume claims are created as needed and retained until manually deleted. This
      // policy allows the lifecycle to be altered, for example by deleting persistent
      // volume claims when their stateful set is deleted, or when their pod is scaled
      // down. This requires the StatefulSetAutoDeletePVC feature gate to be enabled,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apps/v1/generated.proto

      // volume claims created from volumeClaimTemplates. By default, all persistent
      // volume claims are created as needed and retained until manually deleted. This
      // policy allows the lifecycle to be altered, for example by deleting persistent
      // volume claims when their stateful set is deleted, or when their pod is scaled
      // down. This requires the StatefulSetAutoDeletePVC feature gate to be enabled,
      // which is beta.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Ordering.java

     *   <li>Use the natural ordering, {@link Ordering#natural}
     * </ul>
     *
     * <h4>Chaining</h4>
     *
     * <p>Then you can use the <i>chaining</i> methods to get an altered version of that {@code
     * Ordering}, including:
     *
     * <ul>
     *   <li>{@link #reverse}
     *   <li>{@link #compound(Comparator)}
     *   <li>{@link #onResultOf(Function)}
     *   <li>{@link #nullsFirst} / {@link #nullsLast}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Ordering.java

     *   <li>Use the natural ordering, {@link Ordering#natural}
     * </ul>
     *
     * <h4>Chaining</h4>
     *
     * <p>Then you can use the <i>chaining</i> methods to get an altered version of that {@code
     * Ordering}, including:
     *
     * <ul>
     *   <li>{@link #reverse}
     *   <li>{@link #compound(Comparator)}
     *   <li>{@link #onResultOf(Function)}
     *   <li>{@link #nullsFirst} / {@link #nullsLast}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
Back to top