Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 48 for broken3 (0.24 sec)

  1. guava/src/com/google/common/collect/Sets.java

              return false;
            }
            i++;
          }
          return true;
        }
    
        @Override
        public boolean equals(@CheckForNull Object object) {
          // Warning: this is broken if size() == 0, so it is critical that we
          // substitute an empty ImmutableSet to the user in place of this
          if (object instanceof CartesianSet) {
            CartesianSet<?> that = (CartesianSet<?>) object;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  2. hack/local-up-cluster.sh

      # jump through hoops to avoid removing docker/containerd
      # when installing nftables and kmod, as those docker/containerd
      # packages depend on iptables
      dpkg -r --force-depends iptables && \
      apt -y --fix-broken install && \
      apt -y install nftables kmod && \
      apt -y install iptables
    }
    
    function tolerate_cgroups_v2 {
      # https://github.com/moby/moby/blob/be220af9fb36e9baa9a75bbc41f784260aa6f96e/hack/dind#L28-L38
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            given:
            def libUpdated = mavenRepo.module('org', 'lib', '1.1')
            // depend on newer version of lib (libUpdated) that is not published, the internal state is broken and deserialization expects 1.1 to exist
            def between = mavenRepo.module('org', 'between', '1.0').dependsOn(libUpdated).publish()
            mavenRepo.module('org', 'lib', '1.0').dependsOn(between).publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  4. cmd/bucket-handlers.go

    		writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    
    	etag := getDecryptedETag(formValues, objInfo, false)
    
    	// We must not use the http.Header().Set method here because some (broken)
    	// clients expect the ETag header key to be literally "ETag" - not "Etag" (case-sensitive).
    	// Therefore, we have to set the ETag directly as map entry.
    	w.Header()[xhttp.ETag] = []string{`"` + etag + `"`}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  5. src/net/http/fs_test.go

    	// doesn't know what content it is going to send--the ResponseWriter is modifying
    	// the bytes sent.
    	//
    	// Range requests are always going to be broken in this scenario,
    	// but verify that we can serve non-range requests correctly.
    	filename := "index.html"
    	contents := []byte("contents will be sent with Content-Encoding: gzip")
    	fsys := fstest.MapFS{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    === Example: Creating a precompiled header file
    
    [source.multi-language-sample,c]
    .src/hello/headers/pch.h
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  7. src/net/http/httputil/reverseproxy_test.go

    		close(reqInFlight) // cause the client to cancel its request
    
    		select {
    		case <-time.After(10 * time.Second):
    			// Note: this should only happen in broken implementations, and the
    			// closenotify case should be instantaneous.
    			t.Error("Handler never saw CloseNotify")
    			return
    		case <-w.(http.CloseNotifier).CloseNotify():
    		}
    
    		w.WriteHeader(http.StatusOK)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  8. src/crypto/tls/common.go

    	"sync"
    	"time"
    	_ "unsafe" // for linkname
    )
    
    const (
    	VersionTLS10 = 0x0301
    	VersionTLS11 = 0x0302
    	VersionTLS12 = 0x0303
    	VersionTLS13 = 0x0304
    
    	// Deprecated: SSLv3 is cryptographically broken, and is no longer
    	// supported by this package. See golang.org/issue/32716.
    	VersionSSL30 = 0x0300
    )
    
    // VersionName returns the name for the provided TLS version number
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    +
    Both changes could cause script compilation errors. See the https://github.com/gradle/kotlin-dsl-samples/releases/tag/v1.0.2#breaking-changes[Gradle Kotlin DSL release notes] for more information and how to fix builds broken by the changes described above.
    
    Miscellaneous::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  10. tests/integration/ambient/baseline_test.go

    			!dst.Config().HasSidecar() {
    			// Check original source, unless there is a waypoint in the path. For waypoint, we don't (yet?) propagate original src.
    			// Self call is also (temporarily) broken
    			// Sidecars lose the original src
    			opt.Check = check.And(opt.Check, OriginalSourceCheck(t, src))
    		}
    
    		// Non-HBONE clients will attempt to bypass the waypoint
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
Back to top