Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,441 for breaking (0.25 sec)

  1. cmd/kubeadm/app/apis/output/v1alpha3/doc.go

    //
    // Changes since v1alpha2:
    //   - Added support for outputting certificate expiration information for "kubeadm certs check-expiration"
    //     with the CertificateExpirationInfo structure.
    //   - Introduce a (breaking) change to the UpgradePlan structure used by "kubeadm upgrade plan".
    //     UpgradePlan now contains a list of AvailableUpgrade structures.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 07:05:29 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/work_regression_hang.txt

    # kept workspace pruning instead of adopting the pruning in their go.mod
    # files, and the loader kept adding dependencies on the queue until they
    # were either pruned or unpruned, never breaking a module dependency cycle.
    #
    # This is the module graph in the test:
    #
    #                               /-------------------------\
    #                              |                          |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 08 17:48:45 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/autoscaler_contract/lister_contract_test.go

    limitations under the License.
    */
    
    // This file helps to detect whether we changed the interface of Listers.
    // This is important for downstream projects who import the Listers to not
    // breaking their codes.
    
    package contract
    
    import (
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    )
    
    var _ framework.NodeInfoLister = &nodeInfoListerContract{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 20 02:30:08 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/autoscaler_contract/framework_contract_test.go

    limitations under the License.
    */
    
    // This file helps to detect whether we changed the interface of Framework.
    // This is important for projects under `github.com/kubernetes*` orgs
    // who import the Framework to not breaking their codes, e.g. cluster-autoscaler.
    
    package contract
    
    import (
    	"context"
    	"testing"
    
    	"github.com/stretchr/testify/assert"
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/klog/v2/ktesting"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 23 02:17:34 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractSuperClassChangesRule.groovy

                return null
            }
    
            Optional<CtClass> oldClass = member.oldClass
            Optional<CtClass> newClass = member.newClass
            if (!oldClass.isPresent() || !newClass.isPresent()) {
                // breaking change would be reported
                return null
            }
    
            return checkSuperClassChanges(member, oldClass.get(), newClass.get())
        }
    
        protected abstract boolean changed(JApiCompatibility member)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 06 19:15:15 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  6. testing/integ-test/src/crossVersionTest/groovy/org/gradle/integtests/AbstractTaskSubclassingBinaryCompatibilityCrossVersionSpec.groovy

            if (targetVersion < GradleVersion.version("1.1")) {
                // Breaking changes were made to Test between 1.0 and 1.1
                taskClasses.remove(Test)
            }
            if (targetVersion < GradleVersion.version("2.0")) {
                // Breaking changes were made to JavaCompile prior to 2.0
                taskClasses.remove(JavaCompile)
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileAvoidanceWithBuildCacheServiceIntegrationTest.groovy

            then:
            executedAndNotSkipped ':b:jar'
            skipped ':a:compileJava'
        }
    
        def "classes from cache are not used when dependent class is changed in ABI breaking way"() {
            given:
            project_a_depends_on_project_b()
    
            when:
            withBuildCache().run 'assemble'
    
            then:
            executedAndNotSkipped ':b:jar'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. pkg/security/authentication.go

    	if !features.XDSAuth {
    		return nil, nil
    	}
    
    	// authenticate - currently just checks that request has a certificate signed with the our key.
    	// Protected by flag to avoid breaking upgrades - should be enabled in multi-cluster/meshexpansion where
    	// XDS is exposed.
    	peerInfo, ok := peer.FromContext(ctx)
    	if !ok {
    		return nil, errors.New("invalid context")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 10:09:10 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. src/os/dir.go

    	if infos == nil {
    		// Readdir has historically always returned a non-nil empty slice, never nil,
    		// even on error (except misuse with nil receiver above).
    		// Keep it that way to avoid breaking overly sensitive callers.
    		infos = []FileInfo{}
    	}
    	return infos, err
    }
    
    // Readdirnames reads the contents of the directory associated with file
    // and returns a slice of up to n names of files in the directory,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. src/encoding/encoding.go

    // Standard types that implement these interfaces include time.Time and net.IP.
    // The interfaces come in pairs that produce and consume encoded data.
    //
    // Adding encoding/decoding methods to existing types may constitute a breaking change,
    // as they can be used for serialization in communicating with programs
    // written with different library versions.
    // The policy for packages maintained by the Go project is to only allow
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:43:37 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top