Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 509 for embeddeds (0.27 sec)

  1. maven-embedder/src/test/java/org/apache/maven/cli/event/ExecutionEventLoggerTest.java

            when(project.getArtifactId()).thenReturn("maven-embedder");
            when(project.getPackaging()).thenReturn("jar");
            when(project.getName()).thenReturn("Apache Maven Embedder");
            when(project.getVersion()).thenReturn("3.5.4-SNAPSHOT");
            when(project.getFile()).thenReturn(new File(basedir, "maven-embedder/pom.xml"));
            when(event.getProject()).thenReturn(project);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-plugins/README.md

    Having tests here breaks Gradle's ability to instrument plugins defined in this subproject and their dependencies when embedded runner is used.
    Instrumenting the plugins is important to properly test configuration caching and bytecode upgrades, without it the behavior of the embedded runner doesn't match the normal Gradle execution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:41:55 UTC 2023
    - 770 bytes
    - Viewed (0)
  3. src/cmd/doc/doc_test.go

    			`ExportedEmbeddedType.*Comment on line with exported embedded field`,
    			`\*ExportedEmbeddedType.*Comment on line with exported embedded \*field`,
    			`\*qualified.ExportedEmbeddedType.*Comment on line with exported embedded \*selector.field`,
    			`unexportedType.*Comment on line with unexported embedded field`,
    			`\*unexportedType.*Comment on line with unexported embedded \*field`,
    			`io.Reader.*Comment on line with embedded Reader`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:16:55 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/dsl/KotlinDslPluginTest.kt

                        // then:
                        require("Plugin Using Embedded Kotlin " in result.output)
                    }
                }
    
                """
            )
    
            assertThat(
                outputOf("test", "-i"),
                containsString("Plugin Using Embedded Kotlin ")
            )
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  5. src/go/types/object.go

    // For embedded fields, the name is the unqualified type name
    // under which the field is accessible.
    func NewField(pos token.Pos, pkg *Package, name string, typ Type, embedded bool) *Var {
    	return &Var{object: object{nil, pos, pkg, name, typ, 0, colorFor(typ), nopos}, embedded: embedded, isField: true}
    }
    
    // Anonymous reports whether the variable is an embedded field.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonPriorityIntegrationTest.groovy

    import org.gradle.test.preconditions.IntegTestPreconditions
    
    /**
     * For forking a daemon process in embedded mode:
     * The command line length is already close to the limit of what Windows can handle.
     * The few extra arguments that the priority change requires seem to push it over the edge.
     * Therefore, we do not run these tests embedded on Windows.
     **/
    @Requires(IntegTestPreconditions.NotEmbeddedExecutorOrNotWindows)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/net/InetAddresses.java

          return false;
        }
    
        return true;
      }
    
      /**
       * Returns the IPv4 address embedded in an IPv4 compatible address.
       *
       * @param ip {@link Inet6Address} to be examined for an embedded IPv4 address
       * @return {@link Inet4Address} of the embedded IPv4 address
       * @throws IllegalArgumentException if the argument is not a valid IPv4 compatible address
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  8. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/testing/TestType.kt

    import org.gradle.api.tasks.testing.Test
    
    
    enum class TestType(val prefix: String, val executers: List<String>) {
        INTEGRATION("integ", listOf("embedded", "forking", "noDaemon", "parallel", "configCache", "isolatedProjects")),
        CROSSVERSION("crossVersion", listOf("embedded", "forking"))
    }
    
    
    fun Test.includeSpockAnnotation(fqcn: String) {
        systemProperties.compute("include.spock.annotation") { _, oldValue ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/net/InetAddresses.java

          return false;
        }
    
        return true;
      }
    
      /**
       * Returns the IPv4 address embedded in an IPv4 compatible address.
       *
       * @param ip {@link Inet6Address} to be examined for an embedded IPv4 address
       * @return {@link Inet4Address} of the embedded IPv4 address
       * @throws IllegalArgumentException if the argument is not a valid IPv4 compatible address
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/certs/renewal/manager.go

    		fileName string
    	}{
    		{
    			longName: "certificate embedded in the kubeconfig file for the admin to use and for kubeadm itself",
    			fileName: kubeadmconstants.AdminKubeConfigFileName,
    		},
    		{
    			longName: "certificate embedded in the kubeconfig file for the super-admin",
    			fileName: kubeadmconstants.SuperAdminKubeConfigFileName,
    		},
    		{
    			longName: "certificate embedded in the kubeconfig file for the controller manager to use",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top