Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 98 for message2 (0.48 sec)

  1. src/crypto/tls/common.go

    	unmarshal([]byte) bool
    }
    
    type handshakeMessageWithOriginalBytes interface {
    	handshakeMessage
    
    	// originalBytes should return the original bytes that were passed to
    	// unmarshal to create the message. If the message was not produced by
    	// unmarshal, it should return nil.
    	originalBytes() []byte
    }
    
    // lruSessionCache is a ClientSessionCache implementation that uses an LRU
    // caching strategy.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    											map[string]interface{}{
    												"rule":    "self.startsWith('k8s')",
    												"message": "strings must have k8s prefix",
    											},
    											map[string]interface{}{
    												"rule":    "len(self) % 2 == 1",
    												"message": "strings must have odd length",
    											},
    										},
    									},
    								},
    							},
    						},
    					}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_client_test.go

    // when certain messages are seen.
    type opensslOutputSink struct {
    	handshakeComplete chan struct{}
    	readKeyUpdate     chan struct{}
    	all               []byte
    	line              []byte
    }
    
    func newOpensslOutputSink() *opensslOutputSink {
    	return &opensslOutputSink{make(chan struct{}), make(chan struct{}), nil, nil}
    }
    
    // opensslEndOfHandshake is a message that the “openssl s_server” tool will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/parser.go

    	p.errorAt(pos, "syntax error: unexpected "+tok+msg)
    }
    
    // tokstring returns the English word for selected punctuation tokens
    // for more readable error messages. Use tokstring (not tok.String())
    // for user-facing (error) messages; use tok.String() for debugging
    // output.
    func tokstring(tok token) string {
    	switch tok {
    	case _Comma:
    		return "comma"
    	case _Semi:
    		return "semicolon or newline"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                                if (logger.isDebugEnabled()) {
                                    // Message below is checked for in the MNG-2199 core IT.
                                    logger.warn("Failed to build parent project for " + project.getId(), e);
                                } else {
                                    // Message below is checked for in the MNG-2199 core IT.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/runtime/framework.go

    }
    
    // RunFilterPlugins runs the set of configured Filter plugins for pod on
    // the given node. If any of these plugins doesn't return "Success", the
    // given node is not suitable for running pod.
    // Meanwhile, the failure message and status are set for the given node.
    func (f *frameworkImpl) RunFilterPlugins(
    	ctx context.Context,
    	state *framework.CycleState,
    	pod *v1.Pod,
    	nodeInfo *framework.NodeInfo,
    ) *framework.Status {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.StatefulSet.json

                  "status": "statusValue",
                  "lastProbeTime": "2003-01-01T01:01:01Z",
                  "lastTransitionTime": "2004-01-01T01:01:01Z",
                  "reason": "reasonValue",
                  "message": "messageValue"
                }
              ],
              "allocatedResources": {
                "allocatedResourcesKey": "0"
              },
              "allocatedResourceStatuses": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 58.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/expr.go

      func f(x *operand, e *syntax.Expr, ...)
    
    where e is the expression to be checked, and x is the result of the check.
    The check performed by f may fail in which case x.mode == invalid, and
    related error messages will have been issued by f.
    
    If a hint argument is present, it is the composite literal element type
    of an outer composite literal; it is used to type-check composite literal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modget/get.go

    	// Only errors fetching sums are hard errors.
    	for _, mm := range deprecations {
    		if mm.message != "" {
    			fmt.Fprintf(os.Stderr, "go: module %s is deprecated: %s\n", mm.m.Path, mm.message)
    		}
    	}
    	var retractPath string
    	for _, mm := range retractions {
    		if mm.message != "" {
    			fmt.Fprintf(os.Stderr, "go: warning: %v\n", mm.message)
    			if retractPath == "" {
    				retractPath = mm.m.Path
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                import org.gradle.api.services.BuildServiceParameters
                abstract class MyService implements BuildService<BuildServiceParameters.None> {
                    String hello(String message) {
                        "Hello, \$message"
                    }
                }
    
                def myService = gradle.sharedServices.registerIfAbsent("test", MyService) {}
    
                project.task('hello') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
Back to top