Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 731 for expand1 (0.12 sec)

  1. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.cc

        data.reserve(target_size);
        for (int i = 1; i < target_size / size; ++i) {
          data.insert(data.end(), data.begin(), data.begin() + size);
        }
      }
      return false;
    }
    
    // Expands the range to be larger than or equal to 1.0e-6, if it is
    // very small (< 1.0e-6). This is to prevent very large quantized value by this
    // range.
    void ExpandVerySmallRange(const ArrayRef<double> mins,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 02:10:16 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/types/KtType.kt

        public val nullability: KaTypeNullability
    
        /**
         * The abbreviated type for this expanded [KaType], or `null` if this type has not been expanded from an abbreviated type or the
         * abbreviated type cannot be resolved.
         *
         * An abbreviated type is a type alias application that has been expanded to some other Kotlin type. For example, if we have a type
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-customTaskClass/groovy/build.gradle

            // Process the templates here
    // end::ad-hoc-task[]
            injected.fs.copy {
                into buildDirectory.dir('genOutput2')
                from objectFactory.fileTree().from('src/templates')
                expand([year: '2013'])
            }
    
    // tag::ad-hoc-task[]
        }
    }
    // end::ad-hoc-task[]
    
    // tag::ad-hoc-task-skip-when-empty[]
    tasks.register('processTemplatesAdHocSkipWhenEmpty') {
        // ...
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. build/lib/release.sh

          local client_bins=("${KUBE_CLIENT_BINARIES[@]}")
          if [[ "${platform%/*}" = 'windows' ]]; then
            client_bins=("${KUBE_CLIENT_BINARIES_WIN[@]}")
          fi
    
          # This fancy expression will expand to prepend a path
          # (${LOCAL_OUTPUT_BINPATH}/${platform}/) to every item in the
          # client_bins array.
          cp "${client_bins[@]/#/${LOCAL_OUTPUT_BINPATH}/${platform}/}" \
            "${release_stage}/client/bin/"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/language/nativeplatform/internal/IncludeType.java

        /**
         * A quoted include path eg {@code "hello.h"}
         */
        QUOTED,
        /**
         * An identifier that should be macro expanded. These appear in the body of a directive eg {@code #define HEADER ABC}.
         */
        MACRO,
        /**
         * A macro function invocation that should be expanded. These appear in the body of a directive and as arguments to another function eg {@code #define HEADER ABC(X, Y)}.
         */
        MACRO_FUNCTION,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    		for i < n && addrs[i] <= end+2*expand && addrs[i] < m.Limit {
    			// When we expand ranges by "expand" on either side, the ranges
    			// for addrs[i] and addrs[i-1] will merge.
    			end = addrs[i]
    			sum += flat[end]
    			i++
    		}
    		if m.Start-begin >= expand {
    			begin -= expand
    		} else {
    			begin = m.Start
    		}
    		if m.Limit-end >= expand {
    			end += expand
    		} else {
    			end = m.Limit
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ReuseArchiveIntegrationTest.groovy

            FileHasher hasher = new DefaultFileHasher(new DefaultStreamHasher())
            def hash = hasher.hash(file("hello.zip"))
            def cachedFile = file("build/tmp/.cache/expanded/zip_${hash}/hello.txt")
            def otherFile = file("build/tmp/.cache/expanded/zip_${hash}/other.txt")
    
            buildFile << """
                abstract class CopyAndList extends DefaultTask {
                    @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. pkg/ctrlz/assets/static/css/bootstrap-4.0.0.min.css

    lex-start}.navbar-expand-lg .navbar-nav{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .dropdown-menu-right{right:0;left:auto}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:-we...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 141.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/java-feature-variant/producer-separate-sourceset/tests/build.out

         +--- org.mongodb:bson:3.9.1
         \--- org.mongodb:mongodb-driver-core:3.9.1
              \--- org.mongodb:bson:3.9.1
    
    (*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation.
    
    A web-based, searchable dependency report is available by adding the --scan option.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 784 bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    //
    // Expands to the namespace name that the type-parameterized tests for
    // the given type-parameterized test case are defined in.  The exact
    // name of the namespace is subject to change without notice.
    # define GTEST_CASE_NAMESPACE_(TestCaseName) \
      gtest_case_##TestCaseName##_
    
    // INTERNAL IMPLEMENTATION - DO NOT USE IN USER CODE.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top