Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 443 for parity (0.25 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/tasks/TaskDependencyInternal.java

         *
         * This method inherited from the internal interface should only be used by external code, such as plugins or build scripts,
         * as it may trigger warnings on usages that are considered "invalid" in the third-party code. If the usages
         * are still valid in the Gradle codebase, they should be changed to {@link TaskDependencyInternal#getDependenciesForInternalUse(Task)}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. src/internal/trace/internal/testgen/go122/trace.go

    		},
    	})
    }
    
    func (t *Trace) createEvent(ev event.Type, data []byte, args ...uint64) raw.Event {
    	spec := t.specs[ev]
    	if ev != go122.EvStack {
    		if arity := len(spec.Args); len(args) != arity {
    			panic(fmt.Sprintf("expected %d args for %s, got %d", arity, spec.Name, len(args)))
    		}
    	}
    	return raw.Event{
    		Version: version.Go122,
    		Ev:      ev,
    		Args:    args,
    		Data:    data,
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/gotoolchain_version.txt

    [!net:proxy.golang.org] skip
    
    	# In the Go project's official release GOPROXY defaults to proxy.golang.org,
    	# but it may be changed in GOROOT/go.env (such as in third-party
    	# distributions).
    	#
    	# Make sure it is in use here, because the server for releases not served
    	# through the proxy (https://golang.org/toolchain?go-get=1) currently only
    	# serves the latest patch release for each of the supported stable releases.
    
    [go-builder] env GOPROXY=
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 17 18:25:37 UTC 2023
    - 706 bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/classpath/InstrumentedGroovyCallsTracker.java

     *
     * In between, a third party may query this structure with {@link InstrumentedGroovyCallsTracker#findCallerForCurrentCallIfNotIntercepted} to check if the current innermost call
     * matches a method or property and has not been intercepted yet. <p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 15:57:59 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/templates/java-android-application/gradle.properties

    # Android operating system, and which are packaged with your app's APK
    # https://developer.android.com/topic/libraries/support-library/androidx-rn
    android.useAndroidX=true
    # Automatically convert third-party libraries to use AndroidX
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. hack/verify-licenses.sh

    # Install go-licenses
    echo '[INFO] Installing go-licenses...'
    go install github.com/google/go-licenses@latest
    
    # Fetching CNCF Approved List Of Licenses
    # Refer: https://github.com/cncf/foundation/blob/main/allowed-third-party-license-policy.md
    curl -s 'https://spdx.org/licenses/licenses.json' -o "${ARTIFACTS}"/licenses.json
    
    echo '[INFO] Fetching current list of CNCF approved licenses...'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:44 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.pom

      </parent>
    
      <artifactId>hamcrest-core</artifactId>
      <packaging>jar</packaging>
      <name>Hamcrest Core</name>
      <description>
        This is the core API of hamcrest matcher framework to be used by third-party framework providers. This includes the a foundation set of matcher implementations for common operations.
      </description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 748 bytes
    - Viewed (0)
  8. apache-maven/src/main/appended-resources/META-INF/NOTICE.vm

    BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ## KIND, either express or implied. See the License for the ## specific language governing permissions and limitations ## under the License. ## This software bundles the following NOTICE files from third party library providers: META-INF/NOTICE in archive lib/guice-5.1.0.jar Google Guice - Core Library Copyright 2006-2022 Google, Inc. This product includes software developed at The Apache Software Foundation (http://www.apache.org/). META-INF/NOTICE in archive...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Sep 10 19:27:25 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/configuration/internal/DefaultListenerBuildOperationDecoratorTest.groovy

            e.is(failure)
    
            and:
            1 * action.execute(arg) >> { throw failure }
    
            and:
            verifyExpectedOp('foo', id, failure)
        }
    
        def 'decorates closures of same single arity'() {
            given:
            def called = false
            def arg = new Object()
            def closure = { passedArg ->
                assert passedArg == arg
                called = true
            }
            def id
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 14:54:57 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/EclipseClasspathContainer.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.tooling.model.eclipse;
    
    /**
     * Eclipse classpath entry used by third-party plugins to contribute to the project's classpath.
     *
     * @since 3.0
     */
    public interface EclipseClasspathContainer extends EclipseClasspathEntry {
    
        /**
         * Returns the path of this container.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top