Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 50 for countervar (0.2 sec)

  1. src/go/types/generate_test.go

    const (
    	srcDir = "/src/cmd/compile/internal/types2/"
    	dstDir = "/src/go/types/"
    )
    
    // TestGenerate verifies that generated files in go/types match their types2
    // counterpart. If -write is set, this test actually writes the expected
    // content to go/types; otherwise, it just compares with the existing content.
    func TestGenerate(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/cgroup_manager_linux.go

    	// It should take a libcontainerconfigs.Cgroup.Path field (rather than Name and Parent)
    	// and split it appropriately, using essentially the logic below.
    	// This was done for cgroupfs in opencontainers/runc#497 but a counterpart
    	// for systemd was never introduced.
    	dir, base := path.Split(in.Name.ToSystemd())
    	if dir == "/" {
    		dir = "-.slice"
    	} else {
    		dir = path.Base(dir)
    	}
    	config.Parent = dir
    	config.Name = base
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  3. docs/en/docs/alternatives.md

    The way you use it is very simple. For example, to do a `GET` request, you would write:
    
    ```Python
    response = requests.get("http://example.com/some/url")
    ```
    
    The FastAPI counterpart API *path operation* could look like:
    
    ```Python hl_lines="1"
    @app.get("/some/url")
    def read_url():
        return {"message": "Hello World"}
    ```
    
    See the similarities in `requests.get(...)` and `@app.get(...)`.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

      StringAttr padding;
      IntegerAttr stride_height;
      IntegerAttr stride_width;
    };
    
    // Templated class for declaring a converter from some TensorFlow convolution
    // op into its counterpart in TensorFlow Lite.
    //
    // The `ConcreteType` deriving from this template must provide the following
    // method for constructing TensorFlow Lite op:
    //
    //   TFL::[op] createTFLOp(ConvertTFConvOpMatchState *state,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    
    [[migmvn:custom_plugins]]
    == Dealing with uncommon and custom plugins
    
    You may come across Maven plugins that have no counterpart in Gradle, particularly if you or someone in your organisation has written a custom plugin.
    Such cases rely on you understanding how Gradle (and potentially Maven) works, because you will usually have to write your own plugin.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    link:{javadocPath}/org/gradle/StartParameter.html#setBuildFile-java.io.File-[setBuildFile(File)]
    and
    link:{javadocPath}/org/gradle/StartParameter.html#setSettingsFile-java.io.File-[setSettingsFile(File)]
    as well as the counterpart getters
    link:{javadocPath}/org/gradle/StartParameter.html#getBuildFile--[getBuildFile()]
    and
    link:{javadocPath}/org/gradle/StartParameter.html#getSettingsFile--[getSettingsFile()]
    have been deprecated.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    [StartParameter] methods link:{javadocPath}/org/gradle/StartParameter.html#setBuildFile-java.io.File-[setBuildFile(File)] and link:{javadocPath}/org/gradle/StartParameter.html#setSettingsFile-java.io.File-[setSettingsFile(File)] as well as the counterpart getters link:{javadocPath}/org/gradle/StartParameter.html#getBuildFile--[getBuildFile()] and link:{javadocPath}/org/gradle/StartParameter.html#getSettingsFile--[getSettingsFile()] have been deprecated.
    
    Please use standard locations...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.18.md

        * The audience claim before this fix has "spn:" prefix. After this fix, "spn:" prefix is omitted.
    * change CounterVec to Counter about  PLEGDiscardEvent ([#86167](https://github.com/kubernetes/kubernetes/pull/86167), [@yiyang5055](https://github.com/yiyang5055))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 16 17:18:28 UTC 2021
    - 373.2K bytes
    - Viewed (0)
  9. ChangeLog.md

    - [`KT-61460`](https://youtrack.jetbrains.com/issue/KT-61460) SLC: unnecessary upper bound wildcards (w/ type alias)
    - [`KT-61377`](https://youtrack.jetbrains.com/issue/KT-61377) K2: SLC: wrong retention counterpart for AnnotationRetention.BINARY
    
    ### IDE. Gradle Integration
    
    - [`KT-65617`](https://youtrack.jetbrains.com/issue/KT-65617) K/N project import fails if ~/.konan dir is empty
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let summary = [{
    Computes the sum of elements across dimensions of a SparseTensor.
      }];
    
      let description = [{
    This Op takes a SparseTensor and is the sparse counterpart to
    `tf.reduce_sum()`.  In particular, this Op also returns a dense `Tensor`
    instead of a sparse one.
    
    Reduces `sp_input` along the dimensions given in `reduction_axes`.  Unless
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top