Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 130 for Warningf (0.27 sec)

  1. guava/src/com/google/common/base/CharMatcher.java

     *
     * <p>Throughout the documentation of this class, the phrase "matching character" is used to mean
     * "any {@code char} value {@code c} for which {@code this.matches(c)} returns {@code true}".
     *
     * <p><b>Warning:</b> This class deals only with {@code char} values, that is, <a
     * href="http://www.unicode.org/glossary/#BMP_character">BMP characters</a>. It does not understand
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener.go

    	// Extract the current filter chain matches, for every new filter chain match being added, check if there is a matching
    	// one in previous filter chains, if so, skip adding this filter chain with a warning.
    
    	merged := make([]*filterChainOpts, 0, len(current.chains)+len(incoming))
    	// Start with the current listener's filter chains.
    	merged = append(merged, current.chains...)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/output/sidecar_template.golden.yaml

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 86.9K bytes
    - Viewed (0)
  4. src/crypto/tls/tls_test.go

    		}
    
    		return nil
    	}
    
    	errChan := make(chan error, 1)
    	go func() { errChan <- server() }()
    
    	clientConfig := testConfig.Clone()
    	clientConfig.MaxVersion = VersionTLS12 // there are no warning alerts in TLS 1.3
    	conn, err := Dial("tcp", ln.Addr().String(), clientConfig)
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer conn.Close()
    	if err := conn.Handshake(); err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  5. src/crypto/tls/conn.go

    			return c.in.setErrorLocked(c.sendAlert(alertUnexpectedMessage))
    		}
    		c.hand.Write(data)
    	}
    
    	return nil
    }
    
    // retryReadRecord recurs into readRecordOrCCS to drop a non-advancing record, like
    // a warning alert, empty application_data, or a change_cipher_spec in TLS 1.3.
    func (c *Conn) retryReadRecord(expectChangeCipherSpec bool) error {
    	c.retryCount++
    	if c.retryCount > maxUselessRecords {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. src/crypto/tls/common.go

    	// [Config.DecryptTicket]) and use it as the ticket, or store the state and
    	// return a handle for it.
    	//
    	// If WrapSession returns an error, the connection is terminated.
    	//
    	// Warning: the return value will be exposed on the wire and to clients in
    	// plaintext. The application is in charge of encrypting and authenticating
    	// it (and rotating keys) or returning high-entropy identifiers. Failing to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    We recommend new projects looking to build C++ applications and libraries use the newer <<building_cpp_projects.adoc#building_cpp_projects,replacement plugins>>.
    
    WARNING: The native plugins described in this chapter are not compatible with the <<configuration_cache.adoc#config_cache:plugins:core,configuration cache>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  8. docs/changelogs/changelog_3x.md

        your build configuration, `.jar` file, or `.apk`. We use
        `@ParametersAreNonnullByDefault` and all parameters and return types are
        never null unless explicitly annotated `@Nullable`.
    
     *  **Warning: this release is source-incompatible for Kotlin users.**
        Nullability was previously ambiguous and lenient but now the compiler will
        enforce strict null checks.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  9. src/go/build/build.go

    	}
    	if home := os.Getenv(env); home != "" {
    		def := filepath.Join(home, "go")
    		if filepath.Clean(def) == filepath.Clean(runtime.GOROOT()) {
    			// Don't set the default GOPATH to GOROOT,
    			// as that will trigger warnings from the go tool.
    			return ""
    		}
    		return def
    	}
    	return ""
    }
    
    // defaultToolTags should be an internal detail,
    // but widely used packages access it using linkname.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  10. cmd/iam.go

    		unknownPoliciesSet := specifiedPoliciesSet.Difference(knownPoliciesSet)
    		if len(unknownPoliciesSet) > 0 {
    			authz := newGlobalAuthZPluginFn()
    			if authz == nil {
    				// Print a warning that some policies mapped to a role are not defined.
    				errMsg := fmt.Errorf(
    					"The policies \"%s\" mapped to role ARN %s are not defined - this role may not work as expected.",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top