Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for main2 (0.3 sec)

  1. cni/cmd/istio-cni/main.go

    // parses prevResult according to the cniVersion
    package main
    
    import (
    	"fmt"
    	"os"
    
    	"github.com/containernetworking/cni/pkg/skel"
    	"github.com/containernetworking/cni/pkg/version"
    
    	"istio.io/istio/cni/pkg/plugin"
    	"istio.io/istio/pkg/log"
    	istioversion "istio.io/istio/pkg/version"
    )
    
    func main() {
    	if err := runPlugin(); err != nil {
    		os.Exit(1)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. src/internal/syscall/unix/nofollow_posix.go

    //   - android: see linux
    //   - darwin: https://github.com/apple/darwin-xnu/blob/main/bsd/man/man2/open.2
    //   - hurd: who knows if it works at all (https://www.gnu.org/software/hurd/open_issues/open_symlink.html)
    //   - illumos: https://illumos.org/man/2/open
    //   - ios: see darwin
    //   - linux: https://man7.org/linux/man-pages/man2/openat.2.html
    //   - openbsd: https://man.openbsd.org/open.2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:26 UTC 2024
    - 933 bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheCompositeBuildsIntegrationTest.groovy

                    application {
                       mainClass = 'Main'
                    }
                    dependencies {
                        implementation 'org.test:lib:1.0'
                    }
                """
                file('src/main/java/Main.java') << """
                    class Main { public static void main(String[] args) {
                        Lib.main();
                    } }
                """
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/build_repeated_godebug_issue62346.txt

    ! go build file.go
    ! stderr 'panic:'
    ! stderr 'runtime error'
    stderr 'file.go:2:1: repeated //go:debug for panicnil'
    
    -- file.go --
    //go:debug panicnil=1
    //go:debug panicnil=1
    
    package main
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 236 bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDirectoryPluginIntegrationTest.groovy

            buildFile.text = """
                buildscript {
                    dependencies {
                        classpath(files("./first/build/classes/java/main"))
                        classpath(files("./second/build/classes/java/main"))
                    }
                }
                apply plugin: FirstPlugin
                apply plugin: SecondPlugin
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/build.gradle.kts

        implementation(libs.ant)
    
        runtimeOnly(project(":gradle-cli-main"))
        runtimeOnly(project(":declarative-dsl-provider"))
        runtimeOnly(project(":problems"))
    
        runtimeOnly(libs.commonsIo)
        runtimeOnly(libs.commonsLang)
        runtimeOnly(libs.slf4jApi)
    
        // The wrapper expects the launcher Jar to have classpath entries that contain the main class and its runtime classpath
        manifestClasspath(project(":gradle-cli-main"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/utils/test_metadata_config.cc

    namespace {
    
    constexpr char kEntryFuncName[] = "main";
    
    absl::Status SetupArguments(mlir::ModuleOp module,
                                std::vector<TensorShape>& arg_shapes,
                                tpu::TPUCompileMetadataProto& metadata_proto) {
      auto main_fn = module.lookupSymbol<mlir::func::FuncOp>(kEntryFuncName);
      if (!main_fn) {
        return absl::InternalError("Could not find main function in MLIR Module.");
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 23:59:33 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGroovyIntegrationTest.groovy

                ${mavenCentralRepository()}
    
                dependencies {
                    implementation(localGroovy())
                    testImplementation("junit:junit:4.13")
                }
            """
            file("src/main/groovy/Thing.groovy") << """
                class Thing {}
            """
            file("src/test/groovy/ThingTest.groovy") << """
                import org.junit.*
                class ThingTest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildProfileIntegrationTest.groovy

            given:
            def configurationCache = newConfigurationCacheFixture()
    
            file("build.gradle") << """
                plugins {
                   id("java")
                }
            """
            file("src/main/java/included/Example.java") << ""
    
            when:
            configurationCacheRun(":help", "--profile")
    
            then:
            configurationCache.assertStateStored()
            def report = findReport()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDevelocityPluginIntegrationTest.groovy

        @Issue("https://github.com/gradle/gradle/issues/19047")
        def "problem is reported for Kotlin lambda expression with develocity plugin"() {
            given:
            createDir('dv-conventions') {
                file('src/main/kotlin/my/DvConventionsPlugin.kt') << """
                    package my
    
                    import org.gradle.api.*
                    import org.gradle.kotlin.dsl.*
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top