Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 53 for pirates (0.1 sec)

  1. pkg/registry/rbac/validation/policy_compact_test.go

    				{Verbs: []string{"educate"}, APIGroups: []string{""}, Resources: []string{"dolphins"}},
    
    				// nil verbs are preserved in non-merge cases.
    				// these are the pirates who don't do anything.
    				{Verbs: nil, APIGroups: []string{""}, Resources: []string{"pirates"}},
    
    				// Test merging into a nil Verbs string set
    				{Verbs: nil, APIGroups: []string{""}, Resources: []string{"pods"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 02 16:51:16 UTC 2020
    - 9.5K bytes
    - Viewed (0)
  2. doc/next/1-intro.md

    <!--
    NOTE: In this document and others in this directory, the convention is to
    set fixed-width phrases with non-fixed-width spaces, as in
    `hello` `world`.
    -->
    
    <style>
      main ul li { margin: 0.5em 0; }
    </style>
    
    ## DRAFT RELEASE NOTES — Introduction to Go 1.23 {#introduction}
    
    **Go 1.23 is not yet released. These are work-in-progress release notes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:25:26 UTC 2024
    - 406 bytes
    - Viewed (0)
  3. doc/initial/1-intro.md

    <!--
    NOTE: In this document and others in this directory, the convention is to
    set fixed-width phrases with non-fixed-width spaces, as in
    `hello` `world`.
    -->
    
    <style>
      main ul li { margin: 0.5em 0; }
    </style>
    
    ## DRAFT RELEASE NOTES — Introduction to Go 1.N {#introduction}
    
    **Go 1.N is not yet released. These are work-in-progress release notes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:25:26 UTC 2024
    - 406 bytes
    - Viewed (0)
  4. common/scripts/run.sh

        --mount "type=volume,source=gocache,destination=/gocache" \
        --mount "type=volume,source=cache,destination=/home/.cache" \
        --mount "type=volume,source=crates,destination=/home/.cargo/registry" \
        --mount "type=volume,source=git-crates,destination=/home/.cargo/git" \
        ${CONDITIONAL_HOST_MOUNTS} \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 11 02:34:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. test/fixedbugs/issue40367.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    func case1() {
    	rates := []int32{1,2,3,4,5,6}
    	var sink [6]int
    	j := len(sink)
    	for star, _ := range rates {
    		if star+1 < 1 {
    			panic("")
    		}
    		j--
    		sink[j] = j
    	}
    }
    
    func case2() {
    	i := 0
    	var sink [3]int
    	j := len(sink)
    top:
    	j--
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 30 17:23:11 UTC 2020
    - 526 bytes
    - Viewed (0)
  6. src/cmd/gofmt/doc.go

    It uses tabs for indentation and blanks for alignment.
    Alignment assumes that an editor is using a fixed-width font.
    
    Without an explicit path, it processes the standard input.  Given a file,
    it operates on that file; given a directory, it operates on all .go files in
    that directory, recursively.  (Files starting with a period are ignored.)
    By default, gofmt prints the reformatted sources to standard output.
    
    Usage:
    
    	gofmt [flags] [path ...]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/README.md

    size and high performance (among the core value proposition of
    TensorFlow Lite models).
    - The Export pass writes out TensorFlow Lite FlatBuffer format. This pass
    operates on MLIR TensorFlow Lite dialect and is simple/direct translation.
    
    See
    https://github.com/tensorflow/tensorflow/blob/master/tensorflow/compiler/mlir/lite/tf_tfl_passes.cc
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 29 11:30:32 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/api/IsolatedAction.java

     * as any other object serialized into the Configuration Cache.</p>
     *
     * @param <T> The type of object the action operates on.
     * @since 8.8
     */
    @HasImplicitReceiver
    @Incubating
    public interface IsolatedAction<T> extends Serializable {
        /**
         * Performs this action against the given object.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:15:52 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/optimize.cc

    };
    
    }  // namespace
    
    void CreateTFStandardPipeline(OpPassManager &pm,
                                  const StandardPipelineOptions &options) {
      OpPassManager &func_pm = pm.nest<func::FuncOp>();
    
      // First operates on the executor dialect:
      // - remove dead islands.
      // - fuse islands as much as possible.
      // - materialize the eventual "pass-through" ops by inlining their content.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. manifests/addons/dashboards/lib/queries.libsonnet

          cpuUsage:
            self.query(
              'Container ({{pod}})',
              |||
                sum by (pod) (
                  irate(
                    container_cpu_usage_seconds_total{%(containerLabels)s}
                  [$__rate_interval])
                )
              |||
            ),
    
          memUsage:
            self.query(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top