Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 123 for Warningf (0.17 sec)

  1. pilot/pkg/networking/core/route/route.go

    		// This means we have more than one stateful config for the same route because of weighed destinations.
    		// We should just pick the first and give a warning.
    		if perSvcStatefulConfig != nil && statefulConfig != nil {
    			log.Warnf("More than one stateful config for the same route %s. Picking the first one.", routeName)
    			break
    		}
    		statefulConfig = perSvcStatefulConfig
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/zz_generated.conversion.go

    	return autoConvert_apiextensions_ExternalDocumentation_To_v1beta1_ExternalDocumentation(in, out, s)
    }
    
    func autoConvert_v1beta1_JSON_To_apiextensions_JSON(in *JSON, out *apiextensions.JSON, s conversion.Scope) error {
    	// WARNING: in.Raw requires manual conversion: does not exist in peer-type
    	return nil
    }
    
    func autoConvert_apiextensions_JSON_To_v1beta1_JSON(in *apiextensions.JSON, out *JSON, s conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 71.5K bytes
    - Viewed (0)
  3. android/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.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

                    // not be included in the lookup. The case where the
                    // packagePrefix is really a class is handled elsewhere.
                    // WARNING: This code does not expect a class that has a static
                    //          inner class in DEFAULT_IMPORTS
                    ConstructedClassWithPackage tmp = new ConstructedClassWithPackage(packagePrefix, name);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top