Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 105 for Trailing (0.3 sec)

  1. tensorflow/c/c_api.h

    // --------------------------------------------------------------------------
    // In-process TensorFlow server functionality, for use in distributed training.
    // A Server instance encapsulates a set of devices and a Session target that
    // can participate in distributed training. A server belongs to a cluster
    // (specified by a ClusterSpec), and corresponds to a particular task in a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

        }
    
        def "gives details about failing matches when it cannot select default configuration when no match is found and default configuration is not consumable"() {
            given:
            createDirs("a", "b")
            file('settings.gradle') << "include 'a', 'b'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    ...
    include::{snippetsPath}/configurationCache/problemsGroovy/tests/fail.out[]
    Configuration cache entry discarded with 1 problem.
    ----
    
    The configuration cache entry was discarded because of the found problem failing the build.
    
    Details can be found in the linked HTML report:
    
    image::configuration-cache/problems-report.png[]
    
    The report displays the set of problems twice.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  4. configure.py

          one from the check_success function.
        resolve_symlinks: (Bool) Translate symbolic links into the real filepath.
        n_ask_attempts: (Integer) Number of times to query for valid input before
          raising an error and quitting.
    
      Returns:
        [String] The value of var_name after querying for input.
    
      Raises:
        UserInputError: if a query has been attempted n_ask_attempts times without
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

                withInput "Build file 'build.gradle': file 'fis-file.txt'"
                withInput "Build file 'build.gradle': file 'fis-abs.txt'"
            }
        }
    
        @Ignore("wip: Currently failing on CI for unknown reason")
        def "report file is content addressable"() {
            given:
            settingsFile << """
                rootProject.name = 'car'
            """
    
            file("build.gradle") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

        assertEquals("b", consumingIterator.next());
        assertThat(list).isEmpty();
    
        assertFalse(consumingIterator.hasNext());
      }
    
      @GwtIncompatible // ?
      // TODO: Figure out why this is failing in GWT.
      public void testConsumingIterator_duelingIterators() {
        // Test data
        List<String> list = Lists.newArrayList("a", "b");
    
        // Test & Verify
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 13:01:51 UTC 2024
    - 55.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

                fused_batch_norm_op, [&](::mlir::Diagnostic &diag) {
                  diag << "Shapes of x and the first output should be compatible";
                });
          }
        }
    
        // For training, mean and variance is calculated from input values.
        if (is_training.getValue()) {
          auto input_type = mlir::dyn_cast_or_null<RankedTensorType>(
              fused_batch_norm_op.getX().getType());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

            assertThat(bean.getProp(), equalTo("<1.2>"));
    
            assertThat(call("{ it.prop 1}", bean), nullValue());
            assertThat(bean.getProp(), equalTo("<1>"));
    
            // failing, seems to be that set method override doesn't work for iterables - GRADLE-2097
            //assertThat(call("{ bean, list -> bean.things(list) }", bean, new LinkedList<Object>()), nullValue());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

            // We do not need to check instances of LowerCaseClass
            // to be a Class, because unless there was an import for
            // for this we do not lookup these cases. This was a decision
            // made on the mailing list. To ensure we will not visit this
            // method again we set a NO_CLASS for this name
            if (type instanceof LowerCaseClass) {
                classNodeResolver.cacheClass(name, NO_CLASS);
                return false;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  10. pkg/volume/testing/testing.go

    	// for the first attach call. The following call will return successfully.
    	UncertainAttachNode = "uncertain-attach-node"
    	// The detach operation will keep failing on the node.
    	FailDetachNode = "fail-detach-node"
    	// The node is marked as timeout. The attach operation will always fail and return timeout error
    	// but the operation is actually succeeded.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top