Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,056 for platform_ (0.16 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/sourceset-variant/groovy/src/main/mac/platform-mac.c

    #include "platform.h"
    
    const char* platform_name = "MacOSX";
    
    int max_path_length() { return 1024; }
    
    unsigned long long max_memory() { return GB(96); }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 188 bytes
    - Viewed (0)
  2. docs/en/docs/img/sponsors/platform-sh.png

    platform-sh.png...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 10 20:58:15 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/sourceset-variant/groovy/src/main/linux/platform-linux.c

    #include "platform.h"
    
    const char* platform_name = "Linux";
    
    int max_path_length() { return -1; }
    
    unsigned long long max_memory() { return TB(128); }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 186 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/sourceset-variant/groovy/src/main/windows/platform-windows.c

    #include "platform.h"
    
    const char* platform_name = "Windows";
    
    int max_path_length() { return 260; }
    
    // 640K ought to be enough for anybody.
    unsigned long long max_memory() { return KB(640); }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 229 bytes
    - Viewed (0)
  5. docs/en/docs/img/sponsors/platform-sh-banner.png

    platform-sh-banner.png...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 10 20:58:15 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AbstractAlignmentSpec.groovy

                               belongsTo("\${id.group}:platform:\${id.version}")
                               belongsTo("\${id.group}:platform2:\${id.version}")
                            }
                        }
                    }
                }
            """
        }
    
        protected void 'a rule which declares that Groovy belongs to the Groovy and the Spring platforms'(boolean groovyVirtual=false, boolean springVirtual = false) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9K bytes
    - Viewed (0)
  7. build-logic/jvm/src/main/kotlin/gradlebuild.platform.gradle.kts

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    plugins {
        id("java-platform")
        id("gradlebuild.dependency-modules")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 694 bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

            and:
            "align the 'org' group to 2 different virtual platforms"()
    
            when:
            expectAlignment {
                module('core') tries('1.0') alignsTo('1.1') byVirtualPlatform('org', 'platform') byVirtualPlatform('org', 'platform2')
                module('xml') tries('1.0') alignsTo('1.1') byVirtualPlatform('org', 'platform') byVirtualPlatform('org', 'platform2')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  9. hack/lib/golang.sh

          parallel=false
        fi
      fi
    
      if [[ "${parallel}" == "true" ]]; then
        kube::log::status "Building go targets for {${platforms[*]}} in parallel (output will appear in a burst when complete):" "${targets[@]}"
        local platform
        for platform in "${platforms[@]}"; do (
            kube::golang::set_platform_envs "${platform}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/xla_platform_info.cc

      }
    
      if (platform_info.platform_id() == nullptr) {
        return errors::InvalidArgument("platform_id is null.");
      }
      auto platform =
          se::PlatformManager::PlatformWithId(platform_info.platform_id());
      if (!platform.ok()) {
        return platform.status();
      }
    
      absl::StatusOr<xla::Compiler*> compiler_for_platform =
          xla::Compiler::GetForPlatform(platform.value());
      if (!compiler_for_platform.ok()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 17:23:27 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top