Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 439 for untracked (0.19 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/tasks/AbstractNativeCompileTask.java

            return objectFileDir;
        }
    
        /**
         * Returns the header directories to be used for compilation.
         */
        @Internal("The paths for include directories are tracked via the includePaths property, the contents are tracked via discovered inputs")
        public ConfigurableFileCollection getIncludes() {
            return includes;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSpiAuthenticationIntegrationTest.groovy

                        "({languageVersion=99, vendor=matching('exotic'), implementation=vendor-specific}) from '$archiveUri', " +
                        "due to: Unpacked JDK archive does not contain a Java home: " + temporaryFolder.testDirectory.file("user-home", ".tmp", "jdks", "toolchain"))
        }
    
        def "can download with basic authentication"() {
            settingsFile <<
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 06:41:25 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/derived_shape_attr.mlir

        %2:2 = tf_executor.island wraps "tf.PlaceholderWithDefault"(%1#0) {type = i32} : (tensor<i32>) -> tensor<*xi32> loc("unranked")
        %3:2 = tf_executor.island wraps "tf.PlaceholderWithDefault"(%1#0) {type = i32} : (tensor<i32>) -> tensor<i32> loc("static")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/MyMem.h

      /** Reallocate with memory tracking. */
      #define CU_REALLOC(x, y)        CU_realloc((x), (y), __LINE__, __FILE__)
      /** Generate report on tracked memory. */
      #define CU_CREATE_MEMORY_REPORT(x) CU_dump_memory_usage((x))
      /** Generate report on tracked memory (old macro). */
      #define CU_DUMP_MEMORY_USAGE(x) CU_dump_memory_usage((x))
    #else   /* MEMTRACE */
      /** Standard calloc() if MEMTRACE not defined. */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/vcstest/svn/hello.txt

    </msg>
    </logentry>
    </log>
    -- conf/authz --
    -- conf/passwd --
    -- conf/svnserve.conf --
    -- db/current --
    0
    -- db/format --
    6
    layout sharded 1000
    -- db/fs-type --
    fsfs
    -- db/fsfs.conf --
    -- db/min-unpacked-rev --
    0
    -- db/revprops/0/0 --
    K 8
    svn:date
    V 27
    2017-09-22T01:11:53.895835Z
    END
    -- db/revs/0/0 --
    PLAIN
    END
    ENDREP
    id: 0.0.r0/17
    type: dir
    count: 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

        // Last write is indirectly tracked by any read predecessor we added.
        is_last_write_indirectly_tracked =
            !access_info.reads_since_last_write.empty();
      }
      if (!is_last_write_indirectly_tracked) {
        // Add last write as predecessor since it was not indirectly tracked.
        new_control_predecessors.insert(access_info.last_writes.begin(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/unranked_function_output.mlir

    // RUN: tf-opt --tfl-legalize-tf-while %s -o - | flatbuffer_translate -mlir-to-tflite-flatbuffer - -o -  | flatbuffer_translate --tflite-flatbuffer-to-mlir - -o - | FileCheck %s
    
    // This test is to test for unranked function output from input, the output type should be compatible with input type.
    
    // CHECK: func @main(%arg0: tensor<1xf32>) -> tensor<*xf32> attributes {tf.entry_function = {inputs = "arg0", outputs = "tfl.while"}} {
    // CHECK:   %0 = "tfl.while"(%arg0) ({
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 11 07:12:22 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/ProviderSpec.groovy

            def value = provider.calculateValue(ValueSupplier.ValueConsumer.IgnoreUnsafeRead)
            def executionTimeValue = provider.calculateExecutionTimeValue()
            then:
            0 * _ // no side effects when values are not unpacked
    
            when:
            def unpackedValue = value.get()
            then:
            unpackedValue == someValue()
            1 * sideEffect.execute(someValue())
            0 * _
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 06:53:07 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  9. pkg/test/util/yml/cache.go

    // files as needed, as the resources change.
    type Cache struct {
    	mu sync.Mutex
    
    	discriminator int64
    	resources     map[CacheKey]*resourceState
    	dir           string
    }
    
    // CacheKey is a key representing a tracked Yaml based resource.
    type CacheKey struct {
    	group     string
    	kind      string
    	namespace string
    	name      string
    }
    
    type resourceState struct {
    	part Part
    	file string
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 03 18:09:59 UTC 2021
    - 4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/convert_type_test.cc

      // Partially known shapes.
      EXPECT_EQ("tensor<?x27x?xbf16>",
                ConvertToMlirString({-1, 27, -1}, /*unknown_rank=*/false,
                                    DataType::DT_BFLOAT16));
    
      // Unranked shapes.
      EXPECT_EQ("tensor<*xf32>",
                ConvertToMlirString({}, /*unknown_rank=*/true, DataType::DT_FLOAT));
    }
    
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top