Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,150 for Modification (0.18 sec)

  1. pkg/proxy/metaproxier/meta_proxier.go

    func (proxier *metaProxier) OnServiceAdd(service *v1.Service) {
    	proxier.ipv4Proxier.OnServiceAdd(service)
    	proxier.ipv6Proxier.OnServiceAdd(service)
    }
    
    // OnServiceUpdate is called whenever modification of an existing
    // service object is observed.
    func (proxier *metaProxier) OnServiceUpdate(oldService, service *v1.Service) {
    	proxier.ipv4Proxier.OnServiceUpdate(oldService, service)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 21 14:28:37 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/api/standalone/StandaloneAnalysisAPISessionBuilder.kt

    import org.jetbrains.kotlin.analysis.api.platform.declarations.KotlinDeclarationProviderMerger
    import org.jetbrains.kotlin.analysis.api.platform.modification.KotlinGlobalModificationService
    import org.jetbrains.kotlin.analysis.api.platform.modification.KotlinModificationTrackerFactory
    import org.jetbrains.kotlin.analysis.api.platform.packages.KotlinPackageProviderFactory
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. subprojects/core-api/src/test/groovy/org/gradle/api/internal/provider/views/MapPropertyMapViewTest.groovy

    class MapPropertyMapViewTest extends Specification {
        MapProperty<String, String> mapProperty
    
        def setup() {
            mapProperty = TestUtil.propertyFactory().mapProperty(String, String)
        }
    
        def "map modification operations should be visible on backed provider"() {
            given:
            mapProperty.put("first", "value1")
            Map<String, String> map = new MapPropertyMapView<>(mapProperty)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:28 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinCodeFragmentContextModificationListener.kt

     * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
     */
    
    package org.jetbrains.kotlin.analysis.api.platform.modification
    
    import org.jetbrains.kotlin.analysis.project.structure.KtModule
    
    public fun interface KotlinCodeFragmentContextModificationListener {
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 796 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/cunit/README.md

    This means that it is not possible to differentiate between a prebuilt library binary compatible with VS2010 vs VS2013.
    
    As such, this sample will only work without modification on Windows with Visual Studio 2010. Uncomment the relevant line in the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 486 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/README.md

    This means that it is not possible to differentiate between a prebuilt library binary compatible with VS2010 vs VS2013.
    
    As such, this sample will only work without modification on Windows with Visual Studio 2010. Uncomment the relevant line in the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 492 bytes
    - Viewed (0)
  7. ci/official/utilities/rename_and_verify_wheels.sh

    if [[ "$(ls *.whl | wc -l | tr -d ' ')" != "1" ]]; then
      echo "More than one wheel file is present: moving the oldest to"
      echo "$TFCI_OUTPUT_DIR/extra_wheels."
      # List all .whl files by their modification time (ls -t) and move anything
      # other than the most recently-modified one (the newest one).
      mkdir -p $TFCI_OUTPUT_DIR/extra_wheels
      ls -t *.whl | tail -n +2 | xargs mv -t $TFCI_OUTPUT_DIR/extra_wheels
    fi
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 21:16:27 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. test/fixedbugs/issue33275_run.go

    // license that can be found in the LICENSE file.
    
    // Make sure we don't get an index out of bounds error
    // while trying to print a map that is concurrently modified.
    // The runtime might complain (throw) if it detects the modification,
    // so we have to run the test as a subprocess.
    
    package main
    
    import (
    	"os/exec"
    	"strings"
    )
    
    func main() {
    	out, _ := exec.Command("go", "run", "fixedbugs/issue33275.go").CombinedOutput()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 717 bytes
    - Viewed (0)
  9. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinMessageBusProvider.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.platform
    
    import com.intellij.openapi.project.Project
    import com.intellij.util.messages.MessageBus
    import org.jetbrains.kotlin.analysis.api.platform.modification.KotlinModificationTopics
    
    /**
     * [KotlinMessageBusProvider] allows Analysis API implementations to provide a custom [MessageBus]. When subscribing to or publishing to
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinGlobalModificationServiceBase.kt

     * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
     */
    
    package org.jetbrains.kotlin.analysis.api.platform.modification
    
    import com.intellij.openapi.application.ApplicationManager
    import com.intellij.openapi.project.Project
    import org.jetbrains.annotations.TestOnly
    import org.jetbrains.kotlin.analysis.api.platform.analysisMessageBus
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top