Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,621 for variable2 (0.15 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Variable.java

    /**
     * A variable library entry.
     */
    public class Variable extends AbstractLibrary {
        public Variable(Node node, FileReferenceFactory fileReferenceFactory) {
            super(node, fileReferenceFactory);
            setSourcePath(fileReferenceFactory.fromVariablePath((String) node.attribute("sourcepath")));
        }
    
        public Variable(FileReference library) {
            super(library);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. build-logic/jvm/src/main/kotlin/gradlebuild/propagated-env-variables.kt

        "BUILD_ID",
        // Used by some tests to be ignored in specific build
        "BUILD_TYPE_ID",
        "JPROFILER_HOME",
    
        "LANG",
        "LANGUAGE",
        // It is possible to have many LC_xxx variables for different aspects of the locale. However, LC_ALL overrides all of them, and it is what CI uses.
        "LC_ALL",
        "LC_CTYPE",
    
        "JDK_10",
        "JDK_10_0",
        "JDK_10_0_x64",
        "JDK_10_x64",
        "JDK_11",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 18 01:52:16 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1alpha1/variable.go

    // VariableApplyConfiguration represents an declarative configuration of the Variable type for use
    // with apply.
    type VariableApplyConfiguration struct {
    	Name       *string `json:"name,omitempty"`
    	Expression *string `json:"expression,omitempty"`
    }
    
    // VariableApplyConfiguration constructs an declarative configuration of the Variable type for use with
    // apply.
    func Variable() *VariableApplyConfiguration {
    	return &VariableApplyConfiguration{}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 00:13:28 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/variable.mlir

      func.return %0 : tensor<3x2xi32>
    }
    
    // CHECK:      {
    // CHECK-NEXT:     version: 3,
    // CHECK-NEXT:     operator_codes: [ ],
    // CHECK-NEXT:     subgraphs: [ {
    // CHECK-NEXT:       tensors: [ {
    // CHECK-NEXT:         shape: [ 3, 2 ],
    // CHECK-NEXT:         type: INT32,
    // CHECK-NEXT:         name: "variable",
    // CHECK-NEXT:         quantization: {
    // CHECK-EMPTY:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 06 17:29:59 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. tensorflow/cc/saved_model/testdata/generate_saved_models.py

      """Three vars (one in a sub-module) and compute method."""
    
      def __init__(self):
        self.x = variables.Variable(1.0, name="variable_x")
        self.y = variables.Variable(2.0, name="variable_y")
        self.child = module.Module()
        self.child.z = variables.Variable(3.0, name="child_variable")
        self.child.c = ops.convert_to_tensor(5.0)
    
      @def_function.function(input_signature=[
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 18:06:18 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  6. manifests/addons/dashboards/lib/variables.libsonnet

    local g = import './g.libsonnet';
    local var = g.dashboard.variable;
    
    {
      datasource:
        var.datasource.new('datasource', 'prometheus'),
    
      cluster:
        var.query.new('cluster')
        + var.query.withDatasourceFromVariable(self.datasource)
        + var.query.queryTypes.withLabelValues(
          'cluster',
          'process_cpu_seconds_total',
        )
        + var.query.withRefresh('time')
        + var.query.selectionOptions.withMulti()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/aot/tests/make_test_graphs.py

    def tfvariable(_):
      x = variables.Variable([1000.0], name='x', shape=[1])
      old_x = x.value()
      with ops.control_dependencies([old_x]):
        new_x = x.assign_add([42.0])
      array_ops_stack.stack([old_x, new_x], name='result')
    
    
    def tfvariable_sequential_updates(_):
      x = variables.Variable(1.0, name='x')
      y = variables.Variable(1.0, name='y')
      updates = control_flow_ops.no_op()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 15 15:25:23 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/readonly_references_to_resources.cc

    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    // A pass that converts readonly reference variables to the corresponding
    // resource variables.
    //
    // It converts (VariableV2 -> Identity) to (VarHandle -> ReadVariable).
    //
    // For the background, this pass is a part of hoisting VariableV2 ops by
    // re-using the pipeline for hoisting (VarHandle -> ReadVariable) cases, which
    //  can be done by the following passes:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/readonly_references_to_resources.mlir

      func.return
    }
    
    // -----
    
    // Test case: No named location found on VariableV2 op.
    
    func.func @f() {
      // expected-error @+1 {{'tf.VariableV2' op expects variable name in '_class' attribute, but got ["unrelated_class"]}}
      %val0 = "tf.VariableV2"() {_class = ["unrelated_class"], container = "", device = "", shape = #tf_type.shape<96>, shared_name = ""} : () -> tensor<96x!tf_type.f32ref>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  10. tensorflow/cc/saved_model/testdata/chunked_saved_model/non_chunked_model/variables/variables.index

    Adam Cogdell <******@****.***> 1684357973 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 17 21:17:08 UTC 2023
    - 144 bytes
    - Viewed (0)
Back to top