Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 572 for updateIPs (3.75 sec)

  1. platforms/core-configuration/configuration-cache-base/src/test/kotlin/org/gradle/internal/cc/base/services/ConfigurationCacheEnvironmentChangeTrackerTest.kt

            tracker.loadFrom(emptyEnvironmentState())
        }
    
        private
        fun emptyEnvironmentState() = ConfigurationCacheEnvironmentChangeTracker.CachedEnvironmentState(cleared = false, updates = listOf(), removals = listOf())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. pkg/scheduler/util/assumecache/assume_cache.go

    //
    // Assume() only updates the latest object pointer.
    // Restore() sets the latest object pointer back to the informer object.
    // Get/List() always returns the latest object pointer.
    type AssumeCache struct {
    	// The logger that was chosen when setting up the cache.
    	// Will be used for all operations.
    	logger klog.Logger
    
    	// Synchronizes updates to store
    	rwMutex sync.RWMutex
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. pkg/controller/endpoint/endpoints_controller_test.go

    		batchPeriod      time.Duration
    		podsCount        int
    		updates          []podUpdate
    		finalDelay       time.Duration
    		wantRequestCount int
    	}{
    		{
    			name:        "three updates with no batching",
    			batchPeriod: 0 * time.Second,
    			podsCount:   10,
    			updates: []podUpdate{
    				{
    					// endpoints.Run needs ~100 ms to start processing updates.
    					delay:   200 * time.Millisecond,
    					podName: "pod0",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  4. src/go/types/generate_test.go

    					n.Sel.Name = "Name"
    					return false
    				}
    			}
    		}
    		return true
    	})
    }
    
    // fixInferSig updates the Checker.infer signature to use a positioner instead of a token.Position
    // as first argument, renames the argument from "pos" to "posn", and updates a few internal uses of
    // "pos" to "posn" and "posn.Pos()" respectively.
    func fixInferSig(f *ast.File) {
    	ast.Inspect(f, func(n ast.Node) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/nio/ModificationTimeFileAccessTimeJournalTest.groovy

        @Rule TestNameTestDirectoryProvider tmpDir = new TestNameTestDirectoryProvider(getClass())
        @Subject ModificationTimeFileAccessTimeJournal journal = new ModificationTimeFileAccessTimeJournal()
    
        def "updates modification time"() {
            given:
            def file = tmpDir.createFile("file")
    
            when:
            journal.setLastAccessTime(file, FIXED_TIMESTAMP)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:57 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-configuration/src/main/java/org/gradle/internal/buildconfiguration/DaemonJvmPropertiesConfigurator.java

            if (project.getParent() == null) {
                project.getTasks().register(TASK_NAME, UpdateDaemonJvm.class, task -> {
                    task.setGroup("Build Setup");
                    task.setDescription("Generates or updates the Gradle Daemon JVM criteria.");
                    task.getPropertiesFile().convention(project.getLayout().getProjectDirectory().file(DaemonJvmPropertiesDefaults.DAEMON_JVM_PROPERTIES_FILE));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    [[changes_6.5]]
    == Upgrading from 6.4 and earlier
    
    === Potential breaking changes
    
    ==== Updates to bundled Gradle dependencies
    
    - Kotlin has been updated to https://github.com/JetBrains/kotlin/releases/tag/v1.3.72[Kotlin 1.3.72].
    - Groovy has been updated to https://groovy-lang.org/changelogs/changelog-2.5.11.html[Groovy 2.5.11].
    
    ==== Updates to default tool integration versions
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  8. releasenotes/notes/delta-xds-default.yaml

          Note that while this release changes the *protocol* to be incremental, Istio does not yet send perfect minimal incremental updates.
          However, there are already optimizations in place for a variety of critical code paths, and this change enables us to continue optimizations.
          
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 17:43:13 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/resource_access.go

    	// back quota evaluations that touch the same quota doc.  This only works because we can compare etcd resourceVersions
    	// for the same resource as integers.  Before this change: 22 updates with 12 conflicts.  after this change: 15 updates with 0 conflicts
    	updatedQuotas *lru.Cache
    }
    
    // newQuotaAccessor creates an object that conforms to the QuotaAccessor interface to be used to retrieve quota objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 13:54:56 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/TaskReportTaskIntegrationTest.groovy

            when:
            succeeds tasks
    
            then:
            output.contains("""
    Build Setup tasks
    -----------------
    init - Initializes a new Gradle build.
    updateDaemonJvm - Generates or updates the Gradle Daemon JVM criteria.
    wrapper - Generates Gradle wrapper files.
    
    Help tasks
    ----------
    buildEnvironment - Displays all buildscript dependencies declared in root project '$projectName'.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top