Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 393 for message2 (0.28 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskBridgingIntegrationTest.groovy

                    tasks.foo {
                        message += " message!"
                    }
                }
    
                task foo(type: EchoTask)
                assert foo.message == 'default'
                foo.message = 'custom'
            """
    
            when:
            succeeds "foo"
    
            then:
            output.contains "foo: custom message!"
        }
    
        @NotYetImplemented
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/infer.go

    					//           a failure cause which allows for a better error message.
    					//           Eventually, unify should return an error with cause.
    					var cause string
    					constraint := tpar.iface()
    					if m, _ := check.missingMethod(tx, constraint, true, func(x, y Type) bool { return u.unify(x, y, exact) }, &cause); m != nil {
    						// TODO(gri) better error message (see TODO above)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/resolver/KotlinScriptDependenciesResolverTest.kt

                events.add(LogEvent(event, prettyPrinted))
            }
        }
    
        override fun invoke(severity: ReportSeverity, message: String, position: Position?) {
            println("[EDITOR_$severity] '$message' ${position?.line ?: ""}")
            reports.add(IdeReport(severity, message, position))
        }
    
        fun clear() {
            events.clear()
            reports.clear()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:12:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. src/crypto/tls/handshake_client_tls13.go

    	}
    
    	c.isHandshakeComplete.Store(true)
    
    	return nil
    }
    
    // checkServerHelloOrHRR does validity checks that apply to both ServerHello and
    // HelloRetryRequest messages. It sets hs.suite.
    func (hs *clientHandshakeStateTLS13) checkServerHelloOrHRR() error {
    	c := hs.c
    
    	if hs.serverHello.supportedVersion == 0 {
    		c.sendAlert(alertMissingExtension)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apps/v1/generated.proto

      // The reason for the condition's last transition.
      // +optional
      optional string reason = 4;
    
      // A human readable message indicating details about the transition.
      // +optional
      optional string message = 5;
    }
    
    // DaemonSetList is a collection of daemon sets.
    message DaemonSetList {
      // Standard list metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_server.go

    		c.sendAlert(alertInternalError)
    		return err
    	}
    
    	// If we received a client cert in response to our certificate request message,
    	// the client will send us a certificateVerifyMsg immediately after the
    	// clientKeyExchangeMsg. This message is a digest of all preceding
    	// handshake-layer messages that is signed using the private key corresponding
    	// to the client's certificate. This allows us to verify that the client is in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/slf4j/OutputEventListenerBackedLoggerContext.java

            }
    
            @Override
            public void lifecycle(String message) {
            }
    
            @Override
            public void lifecycle(String message, Object... objects) {
            }
    
            @Override
            public void lifecycle(String message, Throwable throwable) {
            }
    
            @Override
            public void debug(String msg, Throwable t) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. src/net/textproto/reader.go

    	code, continued, message, err := r.readCodeLine(expectCode)
    	if err == nil && continued {
    		err = ProtocolError("unexpected multi-line response: " + message)
    	}
    	return
    }
    
    // ReadResponse reads a multi-line response of the form:
    //
    //	code-message line 1
    //	code-message line 2
    //	...
    //	code message line n
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  9. pkg/log/options.go

    		sort.Strings(keys)
    		s := strings.Join(keys, ", ")
    
    		stringVar(&o.outputLevels, "log_output_level", o.outputLevels,
    			fmt.Sprintf("Comma-separated minimum per-scope logging level of messages to output, in the form of "+
    				"<scope>:<level>,<scope>:<level>,... where scope can be one of [%s] and level can be one of %s",
    				s, levelListString))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/event/BroadcastDispatch.java

                this.methodName = methodName;
                this.action = action;
            }
    
            @Override
            public void dispatch(MethodInvocation message) {
                if (message.getMethodName().equals(methodName)) {
                    action.execute(message.getArguments()[0]);
                }
            }
        }
    
        private static class EmptyDispatch<T> extends BroadcastDispatch<T> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:00:00 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top