Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 951 for behaviors (0.16 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationLogger.java

            return builder;
        }
    
        /**
         * Output: ${behaviour}. This behavior is deprecated.
         */
        @CheckReturnValue
        public static DeprecationMessageBuilder.DeprecateBehaviour deprecateBehaviour(String behaviour) {
            return new DeprecationMessageBuilder.DeprecateBehaviour(behaviour);
        }
    
        /**
         * Output: ${behaviour}. This behavior is deprecated. ${advice}
         */
        @CheckReturnValue
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/BeforeResolveIntegrationTest.groovy

            outputContains('[dep1-1.0.jar, dep2-1.0.jar]')
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 02:27:32 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationMessageBuilder.java

        public static class DeprecateBehaviour extends DeprecationMessageBuilder<DeprecateBehaviour> {
    
            private final String behaviour;
    
            public DeprecateBehaviour(String behaviour) {
                this.behaviour = behaviour;
            }
    
            /**
             * Output: This behavior is scheduled to be removed in Gradle 9.0.
             */
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. doc/godebug.md

    [runtime/metrics](/pkg/runtime/metrics/) counter
    named `/godebug/non-default-behavior/<name>:events`
    that counts the number of times a particular program's
    behavior has changed based on a non-default value
    for that setting.
    For example, when `GODEBUG=http2client=0` is set,
    `/godebug/non-default-behavior/http2client:events`
    counts the number of HTTP transports that the program
    has configured without HTTP/2 support.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/deprecation/DeprecationMessagesTest.groovy

        }
    
        def "logs deprecated behavior message"() {
            when:
            DeprecationLogger.deprecateBehaviour("Some behavior.").willBeRemovedInGradle9().undocumented().nagUser()
    
            then:
            expectMessage "Some behavior. This behavior has been deprecated. This behavior is scheduled to be removed in Gradle ${NEXT_GRADLE_VERSION}."
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  6. src/os/signal/doc.go

    with a stack dump by pressing ^\.
    
    # Default behavior of signals in Go programs
    
    By default, a synchronous signal is converted into a run-time panic. A
    SIGHUP, SIGINT, or SIGTERM signal causes the program to exit. A
    SIGQUIT, SIGILL, SIGTRAP, SIGABRT, SIGSTKFLT, SIGEMT, or SIGSYS signal
    causes the program to exit with a stack dump. A SIGTSTP, SIGTTIN, or
    SIGTTOU signal gets the system default behavior (these signals are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. pkg/apis/autoscaling/v2beta1/conversion.go

    		var behavior autoscaling.HorizontalPodAutoscalerBehavior
    		if err := json.Unmarshal([]byte(behaviorEnc), &behavior); err == nil && behavior != (autoscaling.HorizontalPodAutoscalerBehavior{}) {
    			// only move well-formed data from annotations to fields
    			out.Spec.Behavior = &behavior
    		}
    	}
    
    	// drop round-tripping annotations after converting to internal
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 03 16:28:10 UTC 2021
    - 13.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationRoleUsageIntegrationTest.groovy

            """
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 01:42:49 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  9. src/net/ip_test.go

    		// Go-specific wildcard for host name
    		{":http", "", "http"}, // Go 1 behavior
    		{":80", "", "80"},     // Go 1 behavior
    
    		// Go-specific wildcard for service name or transport port number
    		{"golang.org:", "golang.org", ""}, // Go 1 behavior
    		{"127.0.0.1:", "127.0.0.1", ""},   // Go 1 behavior
    		{"[::1]:", "::1", ""},             // Go 1 behavior
    
    		// Opaque service name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 01:17:29 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/testdata/arm64error.s

    	STLXP	(R6, R11), (RSP), R6                             // ERROR "constrained unpredictable behavior"
    	STXP	(R6, R11), (R2), R2                              // ERROR "constrained unpredictable behavior"
    	STLXR	R3, (RSP), R3                                    // ERROR "constrained unpredictable behavior"
    	STXR	R3, (R4), R4                                     // ERROR "constrained unpredictable behavior"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 37.8K bytes
    - Viewed (0)
Back to top