Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for idea (0.27 sec)

  1. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    Both IntelliJ IDEA and Android Studio — which is derived from IntelliJ IDEA — will detect when you make changes to your build logic and offer two suggestions:
    
     1. Import the whole build again
    +
    image::intellij-build-import-popup.png[IntelliJ IDEA, width=300]
    +
    image::android-studio-build-sync-popup.png[IntelliJ IDEA]
     2. Reload script dependencies when editing a build script
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. testing/architecture-test/src/changes/archunit-store/provider-task-properties.txt

    Method <org.gradle.plugins.ide.idea.GenerateIdeaModule.getOutputFile()> does not have raw return type assignable to org.gradle.api.provider.Property in (GenerateIdeaModule.java:0)
    Method <org.gradle.plugins.ide.idea.GenerateIdeaModule.getXmlTransformer()> does not have raw return type assignable to org.gradle.api.provider.Provider in (GenerateIdeaModule.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.plugins.ide.idea.GenerateIdeaProject.create()> has arguments/return type org.gradle.plugins.ide.internal.generator.generator.PersistableConfigurationObject that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (GenerateIdeaProject.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

    import org.jetbrains.kotlin.fir.utils.exceptions.withFirEntry
    import org.jetbrains.kotlin.fir.utils.exceptions.withFirSymbolEntry
    import org.jetbrains.kotlin.idea.references.KtDefaultAnnotationArgumentReference
    import org.jetbrains.kotlin.idea.references.KtReference
    import org.jetbrains.kotlin.lexer.KtTokens
    import org.jetbrains.kotlin.name.Name
    import org.jetbrains.kotlin.psi.*
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  5. gradle/verification-metadata.xml

             </artifact>
          </component>
          <component group="gradle.plugin.org.jetbrains.gradle.plugin.idea-ext" name="gradle-idea-ext" version="1.0.1">
             <artifact name="gradle-idea-ext-1.0.1.jar">
                <sha256 value="001c6c04c330b0e16bf9836afdf8b27c89e5e33caf88b3d8272d12afe1a24e08" origin="Verified" reason="Artifact is not signed"/>
             </artifact>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    === Changes in the IDE integration
    
    [[kotlin_dsl_plugins_catalogs_workaround]]
    ==== Workaround for false positive errors shown in Kotlin DSL `plugins {}` block using version catalog is not needed anymore
    
    Version catalog accessors for plugin aliases in the `plugins {}` block aren't shown as errors in IntelliJ IDEA and Android Studio Kotlin script editor anymore.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  7. 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)
  8. src/runtime/mgc.go

    }
    
    // Timing
    
    // itoaDiv formats val/(10**dec) into buf.
    func itoaDiv(buf []byte, val uint64, dec int) []byte {
    	i := len(buf) - 1
    	idec := i - dec
    	for val >= 10 || i >= idec {
    		buf[i] = byte(val%10 + '0')
    		i--
    		if i == idec {
    			buf[i] = '.'
    			i--
    		}
    		val /= 10
    	}
    	buf[i] = byte(val + '0')
    	return buf[i:]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  9. pkg/proxy/iptables/proxier.go

    					"-A", string(internalTrafficChain),
    					args,
    					"-j", string(kubeMarkMasqChain))
    			} 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: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/proxier.go

    			proxier.natRules.Write(
    				args, "dst,dst",
    				"-j", string(kubeMarkMasqChain))
    		} 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: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
Back to top