Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,411 for addKind (0.14 sec)

  1. platforms/documentation/docs/src/snippets/java-feature-variant/requiring-features/tests/runtimeClasspath.out

        | org.gradle.jvm.version         |              | 11           |
    
    mysql:mysql-connector-java:8.0.14
    \--- project :producer
         \--- runtimeClasspath
    
    A web-based, searchable dependency report is available by adding the --scan option.
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 934 bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/UnsupportedConfigurationMutationTest.groovy

    import org.gradle.test.fixtures.maven.MavenFileRepository
    import spock.lang.Issue
    
    @FluidDependenciesResolveTest
    class UnsupportedConfigurationMutationTest extends AbstractIntegrationSpec {
    
        def "does not allow adding dependencies to a configuration that has been resolved"() {
            buildFile << """
                configurations { a }
                configurations.a.resolve()
                dependencies { a files("some.jar") }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 05 20:59:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loadmacho/ldmacho.go

    			if bld.External() && !bld.DuplicateOK() {
    				return errorf("%v: duplicate symbol definition", s)
    			}
    			bld.SetExternal(true)
    		}
    	}
    
    	// Sort outer lists by address, adding to textp.
    	// This keeps textp in increasing address order.
    	for i := 0; uint32(i) < c.seg.nsect; i++ {
    		sect := &c.seg.sect[i]
    		s := sect.sym
    		if s == 0 {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 12 18:45:57 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  4. releasenotes/notes/envoyfilter-patch-context.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issues:
    - 36284
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 30 01:19:51 UTC 2021
    - 222 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/java-feature-variant/producer-separate-sourceset/tests/build.out

    A web-based, searchable dependency report is available by adding the --scan option.
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 784 bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/project/DeclarativeDslProjectBuildFileIntegrationSpec.groovy

        @Language("java")
        private static final JAVA_PLUGIN_EXTENSION = """
            package com.example.restricted;
    
            import org.gradle.declarative.dsl.model.annotations.Adding;
            import org.gradle.declarative.dsl.model.annotations.Configuring;
            import org.gradle.declarative.dsl.model.annotations.Restricted;
            import org.gradle.api.Action;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyConstraintHandler.java

        /**
         * Creates a dependency constraint without adding it to a configuration.
         *
         * @param dependencyConstraintNotation The dependency constraint notation.
         */
        DependencyConstraint create(Object dependencyConstraintNotation);
    
        /**
         * Creates a dependency constraint without adding it to a configuration, and configures the dependency constraint using
         * the given closure.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_buildvcs.txt

    # Adding the -test flag should be strictly additive — it should not suppress the error.
    ! go list -buildvcs=true -test .
    stderr '^go: missing Git command\. See https://golang\.org/s/gogetcmd\nerror obtaining VCS status: .*\n\tUse -buildvcs=false to disable VCS stamping.'
    
    # Adding the suggested flag should suppress the error.
    go list -test -buildvcs=false .
    ! stderr .
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:32 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  9. docs/integrations/veeam/README.md

    ### Add MinIO as an object store for Veeam
    
    Follow the steps from the Veeam documentation for adding MinIO as an object store - <https://helpcenter.veeam.com/docs/backup/vsphere/adding_s3c_object_storage.html?ver=100>
    
    For Veeam Backup with Immutability, choose the amount of days you want to make backups immutable for
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  10. test/fixedbugs/issue15013.go

    // CL 21202 introduced a compiler crash in the handling of a varargs
    // function in the same recursive group as a function that calls it.
    // Nothing in the standard library caught the problem, so adding a test.
    
    package p
    
    func F1(p *int, a ...*int) (int, *int) {
    	if p == nil {
    		return F2(), a[0]
    	}
    	return 0, a[0]
    }
    
    func F2() int {
    	var i0, i1 int
    	a, _ := F1(&i0, &i1)
    	return a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 559 bytes
    - Viewed (0)
Back to top