Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 673 for impacted (0.14 sec)

  1. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

       *
       * If you're upgrading to OkHttp 4.6 and would like to retain the previous behavior, install this
       * as a **network interceptor**. It will strip the `Location` header of impacted responses to
       * prevent the redirect.
       *
       * ```
       * OkHttpClient client = client.newBuilder()
       *   .addNetworkInterceptor(new LegacyRedirectInterceptor())
       *   .build();
       * ```
       */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    This was <<#unique_attribute_sets,previously deprecated>>.
    
    The <<variant_model.adoc#outgoing_variants_report,`outgoingVariants` report>> will warn about this for impacted configurations.
    
    ==== Toolchain-based tasks for JVM projects
    
    Starting with Gradle 8.0, all core Java tasks that have toolchain support are now using toolchains unconditionally.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  3. releasenotes/notes/gogo-protobuf.yaml

        to using the [golang/protobuf](https://github.com/golang/protobuf) library for API types.
        
        This change does not have any impact on typical Istio users, but rather impacts users importing Istio as a Go library.
        
        For these users, upgrading the Istio libraries will likely cause compiliation issues. These issues are typically simple to address,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 25 00:08:22 UTC 2022
    - 775 bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.15.md

    - Introduced the flag `--ipvs-strict-arp` to configure stricter ARP sysctls, defaulting to false to preserve existing behaviors. This was enabled by default in 1.13.0, which impacted a few CNI plugins. ([#75295](https://github.com/kubernetes/kubernetes/pull/75295), [@lbernail](https://github.com/lbernail))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
  5. test/fixedbugs/issue5957.dir/c.go

    package p
    
    import (
    	"./a" // ERROR "imported and not used: \x22test/a\x22 as surprise|imported and not used: surprise|\x22test/a\x22 imported as surprise and not used"
    	"./b" // ERROR "imported and not used: \x22test/b\x22 as surprise2|imported and not used: surprise2|\x22test/b\x22 imported as surprise2 and not used"
    	b "./b" // ERROR "imported and not used: \x22test/b\x22$|imported and not used: surprise2|\x22test/b\x22 imported and not used"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 21:10:19 UTC 2022
    - 762 bytes
    - Viewed (0)
  6. test/import1.go

    import bufio "os"	// ERROR "redeclared|redefinition|incompatible" "imported and not used|imported as bufio and not used"
    
    import (
    	"fmt"	// ERROR "previous|not used"
    	fmt "math"	// ERROR "redeclared|redefinition|incompatible" "imported and not used: \x22math\x22 as fmt|imported as fmt and not used"
    	. "math"	// GC_ERROR "imported and not used: \x22math\x22$|imported and not used"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 21:10:19 UTC 2022
    - 703 bytes
    - Viewed (0)
  7. test/import4.dir/import4.go

    // Verify that various kinds of "imported and not used"
    // errors are caught by the compiler.
    // Does not compile.
    
    package main
    
    // standard
    import "fmt"	// ERROR "imported and not used.*fmt|\x22fmt\x22 imported and not used"
    
    // renamed
    import X "math"	// ERROR "imported and not used.*math|\x22math\x22 imported as X and not used"
    
    // import dot
    import . "bufio"	// ERROR "imported and not used.*bufio|imported and not used"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 21:10:19 UTC 2022
    - 877 bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.23.md

    This issue has been rated low and assigned CVE-2021-25749
    
    **Am I vulnerable?**
    
    All Kubernetes clusters with following versions, running Windows workloads with `runAsNonRoot` are impacted
    
    **Affected Versions**:
    
    - kubelet v1.20 - v1.21
    - kubelet v1.22.0 - v1.22.13
    - kubelet v1.23.0 - v1.23.10
    - kubelet v1.24.0 - v1.24.4
    
    **How do I mitigate this vulnerability?**
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  9. test/fixedbugs/issue10700.dir/test.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import "./other"
    
    type Imported interface {
    	Do()
    }
    
    type HasAMethod struct {
    	x int
    }
    
    func (me *HasAMethod) Do() {
    	println(me.x)
    }
    
    func InMyCode(x *Imported, y *HasAMethod, z *other.Exported) {
    	x.Do() // ERROR "x\.Do undefined \(type \*Imported is pointer to interface, not interface\)|type that is pointer to interface"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 10 18:34:40 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  10. test/fixedbugs/issue20298.go

    	"fmt"         // ERROR "imported and not used"
    	"io"          // ERROR "imported and not used"
    	"io/ioutil"   // ERROR "imported and not used"
    	"log"         // ERROR "imported and not used"
    	"math"        // ERROR "imported and not used"
    	"math/big"    // ERROR "imported and not used" "too many errors"
    	"math/bits"
    	"net"
    	"net/http"
    	"os"
    	"path"
    	"path/filepath"
    	"regexp"
    	"strings"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 21:14:56 UTC 2017
    - 984 bytes
    - Viewed (0)
Back to top