Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 103 for dain (0.31 sec)

  1. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTaskIntegrationTest.groovy

            def builtMainClassesPath = file('build/classes/java/main').getRelativePathFromBase()
            def builtMainResourcesPath = file('build/resources/main').getRelativePathFromBase()
            def sourceMainJavaPath = file('src/main/java').getRelativePathFromBase()
            def sourceMainResourcePath = file('src/main/resources').getRelativePathFromBase()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 50K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tensor_array_ops_decomposition.mlir

    // RUN: tf-opt %s -split-input-file -verify-diagnostics -tf-tensor-array-ops-decomposition | FileCheck %s
    
    // Test read and write on a tensor list.
    
    // CHECK-LABEL: func @main
    func.func @main() -> tensor<3xf32> {
      %size = "tf.Const"() {value = dense<5> : tensor<i32>} : () -> tensor<i32>
      // CHECK: %[[BUFFER:.*]] = "tf.BroadcastTo"
      // CHECK-SAME: -> tensor<5x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 49K bytes
    - Viewed (0)
  3. src/cmd/go/go_test.go

    	tg := testgo(t)
    	defer tg.cleanup()
    	tg.parallel()
    	tg.tempFile("main.go", `package main
    		var extern string
    		func main() {
    			println(extern)
    		}`)
    	tg.run("run", "-ldflags", `-X "main.extern=hello world"`, tg.path("main.go"))
    	tg.grepStderr("^hello world", `ldflags -X "main.extern=hello world"' failed`)
    }
    
    func TestLdFlagsLongArgumentsIssue42295(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    		}
    	}
    }
    
    // Wait up to a minute for requests to drain, then tear down storage
    func (r *crdHandler) tearDown(oldInfo *crdInfo) {
    	requestsDrained := make(chan struct{})
    	go func() {
    		defer close(requestsDrained)
    		// Allow time for in-flight requests with a handle to the old info to register themselves
    		time.Sleep(time.Second)
    		// Wait for in-flight requests to drain
    		oldInfo.waitGroup.Wait()
    	}()
    
    	select {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/buildlist.go

    // IsDirect returns whether the given module provides a package directly
    // imported by a package or test in the main module.
    func (rs *Requirements) IsDirect(path string) bool {
    	return rs.direct[path]
    }
    
    // A ModuleGraph represents the complete graph of module dependencies
    // of a main module.
    //
    // If the main module supports module graph pruning, the graph does not include
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/load.go

    			if _, ok, err := dirInModule(pkg, mainModulePrefix, modRoot, true); err != nil {
    				return "", err
    			} else if !ok {
    				// This main module could contain the directory but doesn't. Other main
    				// modules might contain the directory, so wait till we finish the loop
    				// to see if another main module contains directory. But if not,
    				// return an error.
    				if len(mainModulePrefix) > len(pkgNotFoundLongestPrefix) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/init.go

    }
    
    // HasModRoot reports whether a main module is present.
    // HasModRoot may return false even if Enabled returns true: for example, 'get'
    // does not require a main module.
    func HasModRoot() bool {
    	Init()
    	return modRoots != nil
    }
    
    // MustHaveModRoot checks that a main module or main modules are present,
    // and calls base.Fatalf if there are no main modules.
    func MustHaveModRoot() {
    	Init()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    .build.gradle
    ----
    include::{snippetsPath}/native-binaries/custom-layout/groovy/build.gradle[tag=cpp-sources]
    ----
    
    For a library named 'main', header files in `src/main/headers` are considered the "public" or "exported" headers. Header files that should not be exported should be placed inside the `src/main/cpp` directory (though be aware that such header files should always be referenced in a manner relative to the file including them).
    
    [[sec:c_sources]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    With the `java-library` plugin applied (or any other plugin that applies the `java` plugin), calling `usingSourceSet` with the `main` source set will throw an exception.
    This is because the `java` plugin already configures a main feature.
    Only if the `java` plugin is not applied will the `main` source set be permitted when calling `usingSourceSet`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                    }
                }
    
                dependencies {
                    implementation 'org.apache.commons:commons-lang3:3.10'
                }
            """
            file("src/main/java").createDir()
            file("src/main/java/Foo.java").createFile().text = """class Foo {}"""
            enableStableConfigurationCache()
            // should not be expected
            executer.expectDocumentedDeprecationWarning(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
Back to top