Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 499 for BECOME (0.08 sec)

  1. src/cmd/gofmt/testdata/typeswitch.golden

    See also issue 4470.
    */
    package p
    
    func f() {
    	var x interface{}
    	switch x.(type) { // should remain the same
    	}
    	switch x.(type) { // should become: switch x.(type) {
    	}
    
    	switch x.(type) { // should remain the same
    	case int:
    	}
    	switch x.(type) { // should become: switch x.(type) {
    	case int:
    	}
    
    	switch x.(type) { // should remain the same
    	case []int:
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 15 17:17:30 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/ConfigurationRolesForMigration.java

        }
    
        /**
         * A legacy configuration that will become a resolvable dependency scope configuration in the next major version.
         */
        @Deprecated
        public static final ConfigurationRole LEGACY_TO_RESOLVABLE_DEPENDENCY_SCOPE = difference(ConfigurationRoles.LEGACY, ConfigurationRoles.RESOLVABLE_DEPENDENCY_SCOPE);
    
        /**
         * A legacy configuration that will become a consumable configuration in the next major version.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 12 16:55:27 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. src/cmd/gofmt/testdata/typeswitch.input

    See also issue 4470.
    */
    package p
    
    func f() {
    	var x interface{}
    	switch x.(type) { // should remain the same
    	}
    	switch (x.(type)) { // should become: switch x.(type) {
    	}
    
    	switch x.(type) { // should remain the same
    	case int:
    	}
    	switch (x.(type)) { // should become: switch x.(type) {
    	case int:
    	}
    
    	switch x.(type) { // should remain the same
    	case []int:
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 15 17:17:30 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/cache/desired_state_of_wold_selinux_metrics.go

    			Name:           "volume_manager_selinux_container_warnings_total",
    			StabilityLevel: compbasemetrics.ALPHA,
    			Help:           "Number of errors when kubelet cannot compute SELinux context for a container that are ignored. They will become real errors when SELinuxMountReadWriteOncePod feature is expanded to all volume access modes.",
    		},
    		[]string{"access_mode"},
    	)
    	seLinuxPodContextMismatchErrors = compbasemetrics.NewGaugeVec(
    		&compbasemetrics.GaugeOpts{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 12:16:56 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildRootProjectIntegrationTest.groovy

            dependency(new BuildTestFile(buildB.file('c3'), 'c3'), "org.test:buildB") // dependency to root
    
            buildB.settingsFile << """
                includeBuild('${buildA.toURI()}') // include another build to become a composite
            """
    
            when:
            fails(buildB, "c3:jar")
    
            then:
            failure.assertHasCause("Cannot resolve external dependency org.test:buildB because no repositories are defined.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 19 11:50:58 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  6. src/encoding/gob/type_test.go

    type Bar struct {
    	X string
    }
    
    // This structure has pointers and refers to itself, making it a good test case.
    type Foo struct {
    	A int
    	B int32 // will become int
    	C string
    	D []byte
    	E *float64    // will become float64
    	F ****float64 // will become float64
    	G *Bar
    	H *Bar // should not interpolate the definition of Bar again
    	I *Foo // will not explode
    }
    
    func TestStructType(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:26:13 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/feature_lifecycle.adoc

    All public features are subject to the backward compatibility policy.
    
    [[sec:deprecated]]
    == 4. Deprecated
    
    Some features may be replaced or become irrelevant due to the natural evolution of Gradle.
    Such features will eventually be removed from Gradle after being _deprecated_.
    A _deprecated_ feature may become stale until it is finally removed according to the backward compatibility policy.
    
    _Deprecated_ features are indicated to be so.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/main/java/org/gradle/language/internal/NativeComponentFactory.java

     * limitations under the License.
     */
    
    package org.gradle.language.internal;
    
    import org.gradle.api.component.SoftwareComponent;
    
    /**
     * This is intended to become public at some point.
     */
    public interface NativeComponentFactory {
        /**
         * Creates a new top-level component.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 995 bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testgodefs/testdata/anonunion.go

    //go:build ignore
    
    package main
    
    // This file tests that when cgo -godefs sees a struct with a field
    // that is an anonymous union, the first field in the union is
    // promoted to become a field of the struct.  See issue 6677 for
    // background.
    
    /*
    typedef struct {
    	union {
    		long l;
    		int c;
    	};
    } t;
    */
    import "C"
    
    // Input for cgo -godefs.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 515 bytes
    - Viewed (0)
  10. releasenotes/notes/35059.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
      - 34855
    releaseNotes:
      - |
        **Added** support for envoy to track active connections during drain and quit if active connections become zero 
                  instead of waiting for entire drain duration. This is disabled by default and can be enabled by setting
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 08 06:31:19 UTC 2021
    - 396 bytes
    - Viewed (0)
Back to top