Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for Bar3 (0.06 sec)

  1. platforms/software/platform-base/src/integTest/groovy/org/gradle/api/plugins/BasePluginIntegrationTest.groovy

                task jar3(type: Jar) {}
    
                configurations {
                    consumable("con") {
                        outgoing.artifact(tasks.jar1)
                    }
                    resolvable("res") {
                        outgoing.artifact(tasks.jar2)
                    }
                    dependencyScope("dep") {
                        outgoing.artifact(tasks.jar3)
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_mark_initialized_variables.mlir

        %5 = "tf.VarHandleOp"() {_class = ["loc:@dense/bias"], allowed_devices = [], container = "", device = "/job:worker/replica:0/task:1/device:CPU:0", shared_name = "var3"} : () -> tensor<!tf_type.resource<tensor<50xf32>>>
        func.return %4 : tensor<100x50xf32>
      }
      // CHECK: "tf.VarHandleOp"
      // CHECK-SAME: shared_name = "var1"
      // CHECK-SAME: _is_initialized = true
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/fake_session.cc

          t.scalar<tensorflow::ResourceHandle>()().set_device(kDeviceName);
    
          outputs->push_back(t);
        } else if (output_name == "var3") {
          Tensor t = Tensor(tensorflow::DT_RESOURCE, tensorflow::TensorShape({1}));
          t.scalar<tensorflow::ResourceHandle>()().set_name("var3");
          t.scalar<tensorflow::ResourceHandle>()().set_device(kDeviceName);
    
          outputs->push_back(t);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:47:51 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. maven-jline/src/main/java/org/apache/maven/jline/MessageUtils.java

            doSystemUninstall();
            if (shutdownHook != null) {
                try {
                    Runtime.getRuntime().removeShutdownHook(shutdownHook);
                } catch (IllegalStateException var3) {
                    // ignore
                }
            }
        }
    
        private static void doSystemUninstall() {
            try {
                AnsiConsole.systemUninstall();
            } finally {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 13:48:49 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ArtifactSelectionIntegrationTest.groovy

                            artifact file('a2.jar')
                            attributes.attribute(buildType, 'profile')
                            attributes.attribute(flavor, 'tasty')
                        }
                        var3 {
                            artifact file('a3.jar')
                            attributes.attribute(buildType, 'profile')
                            attributes.attribute(flavor, 'bland')
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/integtests/ApplicationIntegrationSpec.groovy

            }
            if (!"some value2".equals(System.getProperty("var2"))) {
                throw new RuntimeException("Expected system property not specified");
            }
            if (!"value3".equals(System.getProperty("var3"))) {
                throw new RuntimeException("Expected system property not specified");
            }
        }
    }
    '''
    
            when:
            run 'installDist'
    
            def builder = new ScriptExecuter()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 22:15:44 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top