Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 87 for main2 (0.04 sec)

  1. pilot/pkg/bootstrap/webhook.go

    	} else {
    		istiolog.Info(m)
    	}
    	return len(p), nil
    }
    
    // initSSecureWebhookServer handles initialization for the HTTPS webhook server.
    // If https address is off the injection handlers will be registered on the main http endpoint, with
    // TLS handled by a proxy/gateway in front of Istiod.
    func (s *Server) initSecureWebhookServer(args *PilotArgs) {
    	// create the https server for hosting the k8s injectionWebhook handlers.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 17:37:53 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredFileInputsIntegrationTest.groovy

        private List<String> pluginClasses = ["SneakyPluginA", "SneakyPluginB"]
    
        private void applyBuildLogic(BuildInputRead inputRead) {
            pluginClasses.forEach {
                groovyPluginReadingValue(file("buildSrc/src/main/groovy/${it}.groovy"), inputRead, it)
            }
            buildFile << pluginClasses.collect { "apply plugin: $it" }.join("\n")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIncludedBuildLogicIntegrationTest.groovy

                            id = "test.plugin"
                            implementationClass = "test.PluginImpl"
                        }
                    }
                }
            """
            pluginSourceFile = rootDir.file("src/main/java/test/PluginImpl.java")
            pluginSourceFile << """
                package test;
    
                import ${Project.name};
                import ${Plugin.name};
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/SystemPropertyInstrumentationInStaticGroovyIntegrationTest.groovy

            // Therefore, it is impossible to call System.getProperties() with static import there, and testing static
            // import is important because Groovy generates different code in this case.
            file("buildSrc/src/main/groovy/SomePlugin.groovy") << """
                import ${CompileStatic.name}
                import ${Plugin.name}
                import ${Project.name}
                import static ${System.name}.clearProperty
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. platforms/software/build-init/build.gradle.kts

        implementation(project(":plugins-application")) {
            because("Needs access to StartScriptGenerator.")
        }
        implementation(project(":plugins-jvm-test-suite"))
        implementation(project(":wrapper-main"))
        implementation(project(":wrapper-shared"))
    
        implementation(libs.groovy)
        implementation(libs.groovyTemplates)
        implementation(libs.guava)
        implementation(libs.gson)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/build.gradle.kts

        api(project(":process-services"))
        api(project(":snapshots"))
        api(project(":test-suites-base"))
        api(project(":toolchains-jvm"))
        api(project(":toolchains-jvm-shared"))
        api(project(":worker-main"))
        api(project(":workers"))
        api(project(":build-process-services"))
    
        api(libs.asm)
        api(libs.fastutil)
        api(libs.groovy)
        api(libs.guava)
        api(libs.jsr305)
        api(libs.inject)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/functional/src/main/java/org/gradle/internal/collect/PersistentList.java

    import javax.annotation.Nullable;
    import java.util.Collections;
    import java.util.Iterator;
    import java.util.Objects;
    import java.util.function.Consumer;
    
    /**
     * A simple persistent List implementation.
     * <p>
     * The main use-case is to create new lists with added elements creating the minimal amount of garbage.
     * Uses Cons/Nil as building blocks.
     */
    public abstract class PersistentList<T> implements Iterable<T> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 09:24:00 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/api/v1/compile_tf_graph.cc

        tensorflow::DumpMlirOpToFile("legalize_with_old_bridge", mlir_module.get());
      }
      constexpr char kEntryFuncName[] = "main";
      auto main_fn = mlir_module->lookupSymbol<mlir::func::FuncOp>(kEntryFuncName);
      if (!main_fn) {
        return errors::Internal(
            "TPU compile op requires module with a entry function main");
      }
    
      // Export functions to the library.
      auto flib_def = std::make_unique<FunctionLibraryDefinition>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. maven-core/pom.xml

          <scope>test</scope>
        </dependency>
      </dependencies>
    
      <build>
        <resources>
          <resource>
            <filtering>true</filtering>
            <directory>src/main/resources</directory>
          </resource>
        </resources>
        <pluginManagement>
          <plugins>
            <plugin>
              <groupId>org.apache.rat</groupId>
              <artifactId>apache-rat-plugin</artifactId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/instrumentation-agent-services/src/integTest/groovy/org/gradle/internal/instrumentation/agent/AgentApplicationTest.groovy

    import static org.gradle.test.fixtures.ConcurrentTestUtil.poll
    
    // This test doesn't live in :instrumentation-agent to avoid the latter being implicitly added to
    // the test runtime classpath as part of the main source set's output.
    // It is important to have the agent appended to the classpath of all integration tests.
    class AgentApplicationTest extends AbstractIntegrationSpec {
        def "agent is enabled by default"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top