Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 314 for mixer (0.07 sec)

  1. 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: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 24 09:00:26 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  2. 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 18:38:38 UTC 2024
    - Last Modified: Wed May 29 11:20:16 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishEarIntegTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.api.publish.ivy
    
    class IvyPublishEarIntegTest extends AbstractIvyPublishIntegTest {
        void "can publish EAR only for mixed java and WAR and EAR project"() {
            given:
            file("settings.gradle") << "rootProject.name = 'publishEar' "
    
            and:
            buildFile << """
                apply plugin: 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. src/go/printer/testdata/complit.x

    	// Single-line declarations
    	V5	= T{F1: "hello", /* contains filtered or unexported fields */}
    	V6	= T{F1: "hello", /* contains filtered or unexported fields */}
    	V7	= T{/* contains filtered or unexported fields */}
    
    	// Mixed-mode declarations
    	V8	= T{
    		F1:	"hello",
    		F3:	"world",
    		// contains filtered or unexported fields
    	}
    	V9	= T{
    		F1: "hello",
    		// contains filtered or unexported fields
    	}
    	V10	= T{
    		F1:	"hello",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 01 19:53:32 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/state/OwnerAware.java

     */
    
    package org.gradle.internal.state;
    
    import org.gradle.internal.DisplayName;
    
    import javax.annotation.Nullable;
    
    /**
     * Represents an object that may be owned by some model object. This is mixed-in to generated classes and may
     * also be implemented directly.
     */
    public interface OwnerAware {
        /**
         * Notifies this object that it now has an owner associated with it.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. pilot/cmd/pilot-agent/options/security_test.go

    			},
    			expected: false,
    		},
    		{
    			name:     "existing cert paths",
    			paths:    []string{cert.Name(), cert.Name(), cert.Name()},
    			expected: true,
    		},
    		{
    			name:     "mixed non-existing and existing cert paths",
    			paths:    []string{cert.Name(), "/this-is-a-nonexisting-path-1", "/this-is-a-nonexisting-path-2"},
    			expected: false,
    		},
    	}
    	for _, tt := range tests {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 31 18:31:36 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/state/Managed.java

     * limitations under the License.
     */
    
    package org.gradle.internal.state;
    
    import javax.annotation.Nullable;
    
    /**
     * Implemented by types whose state is fully managed by Gradle. Mixed into generated classes whose state is fully managed.
     */
    public interface Managed {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. test/interface/receiver.go

    // run
    
    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test Implicit methods for embedded types and
    // mixed pointer and non-pointer receivers.
    
    package main
    
    type T int
    
    var nv, np int
    
    func (t T) V() {
    	if t != 42 {
    		panic(t)
    	}
    	nv++
    }
    
    func (t *T) P() {
    	if *t != 42 {
    		println(t, *t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 06:33:41 UTC 2012
    - 1.3K bytes
    - Viewed (0)
  9. src/go/parser/testdata/tparams.go2

    	t[a,]
    	t[a, b]
    	t[a, b,]
    }
    type _ struct {
    	t [n, /* ERROR "unexpected comma; expecting ]" */ ]byte
    }
    type _ interface {
    	t[a]
    	t[a,]
    	m[ /* ERROR "method must have no type parameters" */ _ _, /* ERROR mixed */ _]()
    	t[a, b]
    	t[a, b,]
    }
    
    func _[] /* ERROR "empty type parameter list" */ ()
    func _[a, b ] /* ERROR "missing type constraint" */ ()
    func _[a t, b t, c] /* ERROR "missing type constraint" */ ()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/heap_test.go

    				t.Errorf("pop returns wrong element: want %d, got %d", want, x)
    			}
    		}
    		if !h.empty() {
    			t.Errorf("heap is not empty after all pops")
    		}
    	}
    
    	// Also check that mixed pushes and pops work correctly.
    	for _, s := range tests {
    		h := heap{}
    		for i := 0; i < len(s)/2; i++ {
    			// two pushes, one pop
    			h.push(s[2*i])
    			if !verify(&h, 0) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 04 19:13:42 UTC 2020
    - 1.9K bytes
    - Viewed (0)
Back to top