Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 314 for mixer (0.24 sec)

  1. guava-tests/test/com/google/common/io/LineBufferTest.java

            "\nempty first line\nno newline at end", "\n", "empty first line\n", "no newline at end");
        bufferHelper("three\rlines\rno newline at end", "three\r", "lines\r", "no newline at end");
        bufferHelper("mixed\nline\rendings\r\n", "mixed\n", "line\r", "endings\r\n");
      }
    
      private static final int[] CHUNK_SIZES = {1, 2, 3, Integer.MAX_VALUE};
    
      private static void bufferHelper(String input, String... expect) throws IOException {
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/state/ModelObject.java

    package org.gradle.internal.state;
    
    import org.gradle.api.Describable;
    import org.gradle.api.Task;
    
    import javax.annotation.Nullable;
    
    /**
     * An object that represents some part of a model. This interface is mixed-in to all generated classes and should
     * not be implemented directly.
     */
    public interface ModelObject {
        /**
         * Returns the display name of this object that indicates its identity, if this is known.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. src/mime/multipart/example_test.go

    import (
    	"fmt"
    	"io"
    	"log"
    	"mime"
    	"mime/multipart"
    	"net/mail"
    	"strings"
    )
    
    func ExampleNewReader() {
    	msg := &mail.Message{
    		Header: map[string][]string{
    			"Content-Type": {"multipart/mixed; boundary=foo"},
    		},
    		Body: strings.NewReader(
    			"--foo\r\nFoo: one\r\n\r\nA section\r\n" +
    				"--foo\r\nFoo: two\r\n\r\nAnd another\r\n" +
    				"--foo--\r\n"),
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  4. integration-tests/gradle/gradlew

    # For Cygwin or MSYS, switch paths to Windows format before running java
    if "$cygwin" || "$msys" ; then
        APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
        CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )
    
        JAVACMD=$( cygpath --unix "$JAVACMD" )
    
        # Now convert the arguments - kludge to limit ourselves to /bin/sh
        for arg do
            if
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/ConfigurableConnection.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.tooling.internal.protocol;
    
    /**
     * Mixed into a provider connection, to allow the connection to be configured.
     *
     * <p>DO NOT CHANGE THIS INTERFACE - it is part of the cross-version protocol.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. pkg/registry/core/service/strategy_test.go

    		compareSvc *api.Service
    	}{
    		/* svc.Status.Conditions */
    		{
    			name:       "mixed protocol enabled, field not used in old, not used in new",
    			svc:        makeServiceWithConditions(nil),
    			oldSvc:     makeServiceWithConditions(nil),
    			compareSvc: makeServiceWithConditions(nil),
    		},
    		{
    			name:       "mixed protocol enabled, field used in old and in new",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/text/unicode/bidi/bidi.go

    	// that either there are some right-to-left characters or the option
    	// DefaultDirection(RightToLeft) was passed.
    	RightToLeft
    
    	// Mixed indicates text contains both left-to-right and right-to-left
    	// characters.
    	Mixed
    
    	// Neutral means that text contains no left-to-right and right-to-left
    	// characters and that no default direction has been set.
    	Neutral
    )
    
    type options struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 10.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/DynamicGroovyPluginMixin.groovy

    import org.gradle.test.fixtures.file.TestFile
    
    /**
     * A set of helpers to generate a Groovy plugin with provided code in buildSrc and apply it to the project under test.
     * The trait is intended to be mixed into something that extends {@link org.gradle.integtests.fixtures.AbstractIntegrationSpec}.
     */
    trait DynamicGroovyPluginMixin {
        void withPluginCode(String imports, String codeUnderTest, boolean enableIndy) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/initialization/LegacyTypesSupport.java

     */
    @ServiceScope(Scope.Global.class)
    public interface LegacyTypesSupport {
    
        /**
         * Returns a set of classes that require {@link groovy.lang.GroovyObject} to be mixed in.
         */
        Set<String> getClassesToMixInGroovyObject();
    
        /**
         * Returns a set of types that have been removed, but which are baked into the bytecode
         * generated by the Groovy compiler
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/test/InternalTestExecutionConnection.java

    import org.gradle.tooling.internal.protocol.BuildResult;
    import org.gradle.tooling.internal.protocol.InternalCancellationToken;
    import org.gradle.tooling.internal.protocol.InternalProtocolInterface;
    
    /**
     * Mixed into a provider connection to allow tests to be executed.
     *
     * DO NOT CHANGE THIS INTERFACE. It is part of the cross-version protocol.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top