Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 68 for idea (0.33 sec)

  1. pkg/proxy/nftables/proxier.go

    						protocol, "dport", svcInfo.Port(),
    						"jump", markMasqChain,
    					),
    				})
    			} else if proxier.localDetector.IsImplemented() {
    				// This masquerades off-cluster traffic to a service VIP. The
    				// idea is that you can establish a static route for your
    				// Service range, routing to any node, and that node will
    				// bridge into the Service for you. Since that might bounce
    				// off-node, we masquerade here.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

          if (worklist.empty()) {
            LLVM_DEBUG(llvm::dbgs() << "[root node]\n");
            if (auto dea = mlir::dyn_cast<DenseIntElementsAttr>(ret)) {
              if (dea.getNumElements() != 1) {
                LLVM_DEBUG(llvm::dbgs() << "Unexpected number of elements\n");
                return {};
              }
              int64_t val = (*dea.getValues<APInt>().begin()).getSExtValue();
              dims[i] = ic->MakeDim(val);
            }
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-tooling-builders/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.implementation-kotlin")
    }
    
    description = "Declarative DSL Tooling Builders for IDEs"
    
    dependencies {
        api(projects.serviceProvider)
        api(project(":core"))
        api(project(":core-api"))
    
        api(libs.kotlinStdlib)
    
        implementation(projects.stdlibJavaExtensions)
        implementation(project(":declarative-dsl-evaluator"))
        implementation(project(":declarative-dsl-provider"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 572 bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl-tooling-builders/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.implementation-kotlin")
    }
    
    description = "Kotlin DSL Tooling Builders for IDEs"
    
    dependencies {
        api(project(":core-api"))
        api(project(":core"))
        api(libs.kotlinStdlib)
    
        implementation(projects.stdlibJavaExtensions)
        implementation(projects.time)
        implementation(project(":kotlin-dsl"))
        implementation(project(":base-services"))
        implementation(project(":resources"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/build.gradle.kts

    sourceSets {
        main {
            // Incremental Groovy joint-compilation doesn't work with the Error Prone annotation processor
            errorprone.enabled = false
        }
    }
    
    dependencies {
        api(libs.groovy)
        api(libs.guava)
        api(libs.inject)
        api(libs.jsr305)
        api(libs.plist)
        api(project(":base-ide-plugins"))
        api(project(":base-services"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. gradle.properties

    # Kotlin settings
    kotlin.incremental.useClasspathSnapshot=true
    kotlin.stdlib.default.dependency=false
    kotlin.js.ir.output.granularity=whole-program
    # Temporarily force IDEs to produce build scans
    systemProp.org.gradle.internal.ide.scan=true
    # If you're experimenting with changes and don't want to update the verification file right away, please change the mode to "lenient" (not "off")
    org.gradle.dependency.verification=strict
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 16:35:19 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    This will be added in a future release.
    
    [[sec:tools_and_ides]]
    == Tools & IDEs
    
    The <<third_party_integration.adoc#embedding,Gradle Tooling API>> used by IDEs and other tools to integrate with Gradle _always_ uses the Gradle Daemon to execute builds.
    If you execute Gradle builds from within your IDE, you already use the Gradle Daemon.
    There is no need to enable it for your environment.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. docs/en/docs/release-notes.md

    Special thanks to [@nzig](https://github.com/nzig) for the core implementation and to [@adriangb](https://github.com/adriangb) for the inspiration and idea with [Xpresso](https://github.com/adriangb/xpresso)! 🚀
    
    ### Features
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  9. CREDITS

    state the exclusion of warranty; and each file should have at least
    the "copyright" line and a pointer to where the full notice is found.
    
        <one line to give the program's name and a brief idea of what it does.>
        Copyright (C) <year>  <name of author>
    
        This program is free software: you can redistribute it and/or modify
        it under the terms of the GNU Affero General Public License as published by
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  10. settings.gradle.kts

        subproject("docs-asciidoctor-extensions-base")
        subproject("docs-asciidoctor-extensions")
        subproject("samples")
    }
    
    // IDE Module
    module("ide") {
        subproject("base-ide-plugins")
        subproject("ide")
        subproject("ide-native")
        subproject("ide-plugins")
        subproject("problems")
        subproject("problems-api")
        subproject("tooling-api")
        subproject("tooling-api-builders")
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top