Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,736 for doens (0.15 sec)

  1. cmd/kubeadm/app/phases/certs/renewal/readwriter_test.go

    	if err != nil {
    		t.Fatalf("couldn't read certificate: %v", err)
    	}
    
    	// Check if the certificate read from disk is equal to the original one
    	if !cert.Equal(readCert) {
    		t.Errorf("read cert does not match with expected cert")
    	}
    
    	// Create a new cert
    	newCert, newkey, err := pkiutil.NewCertAndKey(testCACert, testCAKey, testCertCfg)
    	if err != nil {
    		t.Fatalf("couldn't generate certificate: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:17:24 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/DependencyLockingStrictModeIntegrationTest.groovy

    class DependencyLockingStrictModeIntegrationTest extends AbstractValidatingLockingIntegrationTest {
    
        @Override
        LockMode lockMode() {
            LockMode.STRICT
        }
    
        def 'fails without lock file present and does not create one'() {
            mavenRepo.module('org', 'foo', '1.0').publish()
    
            buildFile << """
    dependencyLocking {
        lockAllConfigurations()
        lockMode = LockMode.${lockMode()}
    }
    
    repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/RangeSet.java

      boolean contains(C value);
    
      /**
       * Returns the unique range from this range set that {@linkplain Range#contains contains} {@code
       * value}, or {@code null} if this range set does not contain {@code value}.
       */
      @CheckForNull
      Range<C> rangeContaining(C value);
    
      /**
       * Returns {@code true} if there exists a non-empty range enclosed by both a member range in this
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/NoOpDependencyLockingProviderTest.groovy

        @Subject
        def provider = NoOpDependencyLockingProvider.instance
    
        def 'does not find locked dependencies'() {
            when:
            def result = provider.loadLockState('conf', Describables.of("foo"))
    
            then:
            !result.mustValidateLockState()
        }
    
        def 'does nothing on persist'() {
            given:
            def result = Mock(Set)
    
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. src/path/filepath/path_plan9.go

    // license that can be found in the LICENSE file.
    
    package filepath
    
    import (
    	"strings"
    )
    
    // HasPrefix exists for historical compatibility and should not be used.
    //
    // Deprecated: HasPrefix does not respect path boundaries and
    // does not ignore case when required.
    func HasPrefix(p, prefix string) bool {
    	return strings.HasPrefix(p, prefix)
    }
    
    func splitList(path string) []string {
    	if path == "" {
    		return []string{}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 926 bytes
    - Viewed (0)
  6. cmd/xl-storage-format-utils_test.go

    			if got := hashDeterministicString(m); got == want {
    				t.Errorf("hashDeterministicString() = %v, does not want %v", got, want)
    			}
    			want = hashDeterministicString(m)
    			delete(m, "12312312")
    			m["another"] = ""
    
    			if got := hashDeterministicString(m); got == want {
    				t.Errorf("hashDeterministicString() = %v, does not want %v", got, want)
    			}
    
    			want = hashDeterministicString(m)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. src/path/filepath/path_unix.go

    //go:build unix || (js && wasm) || wasip1
    
    package filepath
    
    import (
    	"strings"
    )
    
    // HasPrefix exists for historical compatibility and should not be used.
    //
    // Deprecated: HasPrefix does not respect path boundaries and
    // does not ignore case when required.
    func HasPrefix(p, prefix string) bool {
    	return strings.HasPrefix(p, prefix)
    }
    
    func splitList(path string) []string {
    	if path == "" {
    		return []string{}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 970 bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/DependencyGraphBuilderTest.groovy

            and:
            DefaultMultiCauseException e = thrown()
            e.cause instanceof ModuleVersionNotFoundException
            e.cause.message.contains("project :root")
        }
    
        def "does not fail when conflict resolution evicts a version that does not exist"() {
            given:
            def selected = revision('a', '1.2')
            def evicted = revision('a', '1.1')
            def b = revision('b')
            traversesMissing root, evicted
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  9. src/sync/atomic/value.go

    	return
    }
    
    var firstStoreInProgress byte
    
    // Store sets the value of the [Value] v to val.
    // All calls to Store for a given Value must use values of the same concrete type.
    // Store of an inconsistent type panics, as does Store(nil).
    func (v *Value) Store(val any) {
    	if val == nil {
    		panic("sync/atomic: store of nil value into Value")
    	}
    	vp := (*efaceWords)(unsafe.Pointer(v))
    	vlp := (*efaceWords)(unsafe.Pointer(&val))
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:48:55 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/WellBehavedPluginTest.groovy

            "IdeaPluginGoodBehaviourTest"
        ])
        void "can apply plugin unqualified"() {
            given:
            applyPluginUnqualified()
    
            expect:
            succeeds mainTask
        }
    
        def "plugin does not force creation of build dir during configuration"() {
            given:
            applyPlugin()
    
            when:
            run "tasks"
    
            then:
            !file("build").exists()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:39:44 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top