Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 61 for Warningf (0.31 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    func (v *specStandardValidatorV3) validate(schema *apiextensions.JSONSchemaProps, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    
    	if schema == nil {
    		return allErrs
    	}
    
    	//
    	// WARNING: if anything new is allowed below, NewStructural must be adapted to support it.
    	//
    
    	if v.requireValidPropertyType && len(schema.Type) > 0 && !openapiV3Types.Has(schema.Type) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    Keep an eye on the number of arguments to distinguish between them.
    
    [[sec:project_copy_method]]
    === Copying files in your own tasks
    
    WARNING: Using the `Project.copy` method at execution time, as described here, is not compatible with the <<configuration_cache.adoc#config_cache:requirements:use_project_during_execution,configuration cache>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/load.go

    	//
    	// Note that if a requested package does not exist *at all*, it will fail
    	// during module resolution and the error will not be suppressed.
    	SilenceNoGoErrors bool
    
    	// SilenceUnmatchedWarnings suppresses the warnings normally emitted for
    	// patterns that did not match any packages.
    	SilenceUnmatchedWarnings bool
    
    	// Resolve the query against this module.
    	MainModule module.Version
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  9. src/cmd/go/go_test.go

    	// $GO_GCFLAGS a compiler debug flag known to cmd/dist, make.bash, etc.
    	// It is not a standard go command flag; use os.Getenv, not cfg.Getenv.
    	if os.Getenv("GO_GCFLAGS") != "" {
    		fmt.Fprintf(os.Stderr, "testing: warning: no tests to run\n") // magic string for cmd/go
    		fmt.Printf("cmd/go test is not compatible with $GO_GCFLAGS being set\n")
    		fmt.Printf("SKIP\n")
    		return
    	}
    
    	flag.Parse()
    
    	if *proxyAddr != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  10. pkg/controller/volume/persistentvolume/pv_controller.go

    			// and send Normal event only
    			ctrl.eventRecorder.Event(volume, v1.EventTypeNormal, events.VolumeDelete, err.Error())
    		} else {
    			// The plugin failed, mark the volume as Failed and send Warning
    			// event
    			if _, err := ctrl.updateVolumePhaseWithEvent(ctx, volume, v1.VolumeFailed, v1.EventTypeWarning, events.VolumeFailedDelete, err.Error()); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
Back to top