Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 860 for incorrectly (0.19 sec)

  1. releasenotes/README.md

    securityNotes:
    - |
      __[CVE-2020-15104](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-15104)__:
      When validating TLS certificates, Envoy incorrectly allows a wildcard DNS Subject Alternative Name to apply to multiple subdomains. For example, with a SAN of `*.example.com`, Envoy incorrectly allows `nested.subdomain.example.com`, when it should only allow `subdomain.example.com`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 09 20:31:49 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  2. security/pkg/pki/util/san_test.go

    		},
    		"Extensions with incorrectly encoded SAN": {
    			exts: []pkix.Extension{
    				{Id: asn1.ObjectIdentifier{2, 5, 29, 17}, Value: append(copyBytes(sanExt.Value), 'x')},
    			},
    			expectedIDs:    nil,
    			expectedErrMsg: "failed to extract identities from SAN extension (error the SAN extension is incorrectly encoded)",
    		},
    		"Extensions with SAN": {
    			exts: []pkix.Extension{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 17:36:33 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/api/meta/errors_test.go

    			}
    			if !tc.matcherFunc(tc.input) {
    				t.Errorf("error doesn't get matched by matcherfunc")
    			}
    			if errors.Is(tc.input, errors.New("foo")) {
    				t.Error("error incorrectly matches other error")
    			}
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 11 22:50:51 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/library/urls.go

    	if err != nil {
    		return types.NewErr("URL parse error during conversion from string: %v", err)
    	}
    	// We must parse again with Parse since ParseRequestURI incorrectly parses URLs that contain a fragment
    	// part and will incorrectly append the fragment to either the path or the query, depending on which it was adjacent to.
    	u, err := url.Parse(s)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaReceiverValue.kt

        /**
         * Returns inferred [KaType] of the receiver.
         *
         * In case of smart cast on the receiver returns smart cast type.
         *
         * For builder inference in FIR implementation it currently works incorrectly, see KT-50916.
         */
        public abstract val type: KaType
    }
    
    
    /**
     * An explicit expression receiver. For example
     * ```
     *   "".length // explicit receiver `""`
     * ```
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/TopKSelectorTest.java

        assertThat(compareCalls[0]).isAtMost(10L * n * IntMath.log2(k, RoundingMode.CEILING));
      }
    
      public void testExceedMaxIteration() {
        /*
         * Bug #5692 occurred when TopKSelector called Arrays.sort incorrectly.
         */
        TopKSelector<Integer> top = TopKSelector.least(7);
        top.offerAll(Ints.asList(5, 7, 6, 2, 4, 3, 1, 0, 0, 0, 0, 0, 0, 0));
        assertThat(top.topK()).isEqualTo(Ints.asList(0, 0, 0, 0, 0, 0, 0));
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/InvalidConfigurationResolutionIntegrationTest.groovy

    import groovy.test.NotYetImplemented
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import spock.lang.Issue
    
    /**
     * This class tests that when configurations are used incorrectly - for instance, when a configuration where
     * {@link org.gradle.api.artifacts.Configuration#isCanBeResolved()} returns {@code false} is resolved - now (as of Gradle 8.0) throw exceptions
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/doc.go

    //
    // See the documentation of the fmt package for the complete set of
    // format operators and their operand types.
    //
    // # Examples
    //
    // The %d format operator requires an integer operand.
    // Here it is incorrectly applied to a string:
    //
    //	fmt.Printf("%d", "hello") // fmt.Printf format %d has arg "hello" of wrong type string
    //
    // A call to Printf must have as many operands as there are "verbs" in
    // the format string, not too few:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. src/runtime/debug/stack.go

    		// a G, so we must call f.Fd() eagerly. This creates a
    		// danger that that the file descriptor is no longer
    		// valid at the time of the write, because the caller
    		// (incorrectly) called f.Close() and the kernel
    		// reissued the fd in a later call to open(2), leading
    		// to crashes being written to the wrong file.
    		//
    		// So, we duplicate the fd to obtain a private one
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. pkg/kubelet/pod/pod_manager_test.go

    	for _, expected := range expectedPods {
    		found := false
    		for _, actual := range actualPods {
    			if actual.UID == expected.UID {
    				if !reflect.DeepEqual(&expected, &actual) {
    					t.Errorf("pod was recorded incorrectly. expect: %#v, got: %#v", expected, actual)
    				}
    				found = true
    				break
    			}
    		}
    		if !found {
    			t.Errorf("pod %q was not found in %#v", expected.UID, actualPods)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 12 16:57:27 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top