Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,284 for tcRange (0.16 sec)

  1. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    // change sets that provoke the failure.
    //
    // The target must cooperate with bisect by accepting a change pattern
    // and then enabling and reporting the changes that match that pattern.
    // The change pattern is passed to the target by substituting it anywhere
    // the string PATTERN appears in the environment values or the command
    // arguments. For each change that matches the pattern, the target must
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_bsd.go

    		n = 0
    	}
    	return n, nil
    }
    
    //sys	kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Pointer, nevent int, timeout *Timespec) (n int, err error)
    
    func Kevent(kq int, changes, events []Kevent_t, timeout *Timespec) (n int, err error) {
    	var change, event unsafe.Pointer
    	if len(changes) > 0 {
    		change = unsafe.Pointer(&changes[0])
    	}
    	if len(events) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 15K bytes
    - Viewed (0)
  3. pkg/proxy/endpointschangetracker.go

    		return result
    	}
    
    	changes := ect.checkoutChanges()
    	for nn, change := range changes {
    		if ect.processEndpointsMapChange != nil {
    			ect.processEndpointsMapChange(change.previous, change.current)
    		}
    		result.UpdatedServices.Insert(nn)
    
    		em.unmerge(change.previous)
    		em.merge(change.current)
    		detectStaleConntrackEntries(change.previous, change.current, &result.DeletedUDPEndpoints, &result.NewlyActiveUDPServices)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskConstantChangesIncrementalJavaCompilationIntegrationTest.groovy

        }
    
        def "non-abi change to constant origin class does not cause recompilation but constant change does"() {
            source api: ["class A {}", "class B { final static int x = 1; int method() { return 1; } }"], impl: ["class X { int method() { return B.x; } }", "class Y {}"]
            impl.snapshot { run language.compileTaskName }
    
            when:
            // non-abi-change
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  5. pkg/controller/podautoscaler/replica_calculator.go

    	}
    
    	if math.Abs(1.0-newUsageRatio) <= c.tolerance || (usageRatio < 1.0 && newUsageRatio > 1.0) || (usageRatio > 1.0 && newUsageRatio < 1.0) {
    		// return the current replicas if the change would be too small,
    		// or if the new usage ratio would cause a change in scale direction
    		return currentReplicas, utilization, rawUtilization, timestamp, nil
    	}
    
    	newReplicas := int32(math.Ceil(newUsageRatio * float64(len(metrics))))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/input-tracking/src/test/groovy/org/gradle/internal/configuration/inputs/AccessTrackingPropertiesTest.groovy

            "load(InputStream)" | call(p -> p.load(new ByteArrayInputStream(new byte[0])))
        }
    
        def "method put(#key, #newValue) reports argument as input and change"() {
            when:
            def result = getMapUnderTestToWrite().put(key, newValue)
    
            then:
            result == oldValue
            1 * onAccess.accept(key, oldValue)
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractSourceIncrementalCompilationIntegrationTest.groovy

            source "class A { String change; }"
            run "compileIntegTest${language.capitalizedName}", language.compileTaskName, "-i"
    
            then: //only B and A are recompiled
            outputs.recompiledClasses("A", "B")
    
            when: //when X class is changed
            outputs.snapshot()
            file("src/integTest/${languageName}/X.${languageName}").text = "class X { String change;}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/compile/BuildScriptCompileAvoidanceIntegrationTest.kt

            configureProject().assertBuildScriptCompilationAvoided().assertOutputContains("bar")
        }
    
        @Test
        fun `avoids buildscript recompilation on non ABI change in buildSrc`() {
            val className = givenJavaClassInBuildSrcContains(
                """
                public void foo() {
                    System.out.println("foo");
                }
                """
            )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Sep 24 17:45:42 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/BaseJavaClassChangeIncrementalCompilationIntegrationTest.groovy

        void recompiledWithFailure(String expectedFailure, String... recompiledClasses) {
            fails language.compileTaskName
            failure.assertHasErrorOutput(expectedFailure)
        }
    
        def "change to #retention retention annotation class recompiles #desc"() {
            def annotationClass = file("src/main/${language.name}/SomeAnnotation.${language.name}") << """
                import java.lang.annotation.*;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/internal/fingerprint/impl/AbsolutePathFileCollectionFingerprinterTest.groovy

                switch (change.type) {
                    case ChangeTypeInternal.ADDED:
                        listener.added(change.path)
                        break
                    case ChangeTypeInternal.MODIFIED:
                        listener.changed(change.path)
                        break
                    case ChangeTypeInternal.REMOVED:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 20 16:00:23 UTC 2022
    - 9.9K bytes
    - Viewed (0)
Back to top