Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,052 for exportId (0.73 sec)

  1. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/java/JavaIDEModelPerformanceTest.groovy

                        it.name
                        it.arguments
                    }
                    withGradleProject(gradleProject)
                    classpath.collect {
                        [it.exported, it.file, it.gradleModuleVersion.group, it.gradleModuleVersion.name, it.gradleModuleVersion.version, it.javadoc, it.source]
                    }
                    javaSourceSettings?.jdk?.javaHome
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/ArtifactFilterManagerDelegate.java

     * under the License.
     */
    package org.apache.maven;
    
    import java.util.Set;
    
    /**
     * @deprecated use {@code META-INF/maven/extension.xml} to define artifacts exported by Maven core extensions.
     */
    @Deprecated
    public interface ArtifactFilterManagerDelegate {
    
        void addExcludes(Set<String> excludes);
    
        void addCoreExcludes(Set<String> excludes);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 15 14:24:56 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelClasspathContainerCrossVersionSpec.groovy

            EclipseClasspathContainer container = project.classpathContainers.find { it.path == 'whenMergedContainerPath' }
    
            then:
            container != null
            container.exported == false
        }
    
        def "Classpath container can be configured"() {
            buildFile <<
            """apply plugin: 'java'
               apply plugin: 'eclipse'
               eclipse {
                   classpath {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testcshared/testdata/main3.c

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include <stdint.h>
    #include <stdio.h>
    #include <dlfcn.h>
    
    // Tests "main.main" is exported on android/arm,
    // which golang.org/x/mobile/app depends on.
    int main(int argc, char** argv) {
      void* handle = dlopen(argv[1], RTLD_LAZY | RTLD_GLOBAL);
      if (!handle) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 785 bytes
    - Viewed (0)
  5. misc/wasm/wasm_exec.js

    						const n = this.mem.getInt32(sp + 24, true);
    						fs.writeSync(fd, new Uint8Array(this._inst.exports.mem.buffer, p, n));
    					},
    
    					// func resetMemoryDataView()
    					"runtime.resetMemoryDataView": (sp) => {
    						sp >>>= 0;
    						this.mem = new DataView(this._inst.exports.mem.buffer);
    					},
    
    					// func nanotime1() int64
    					"runtime.nanotime1": (sp) => {
    						sp >>>= 0;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 17:47:47 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  6. src/expvar/expvar.go

    }
    
    // All published variables.
    var vars Map
    
    // Publish declares a named exported variable. This should be called from a
    // package's init function when it creates its Vars. If the name is already
    // registered then this will log.Panic.
    func Publish(name string, v Var) {
    	if _, dup := vars.m.LoadOrStore(name, v); dup {
    		log.Panicln("Reuse of exported var name:", name)
    	}
    	vars.keysMu.Lock()
    	defer vars.keysMu.Unlock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 21:32:11 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/internal-instrumentation-processor/build.gradle.kts

        } else {
            // Needed for Java19 for com.google.testing.compile:compile-testing
            jvmArgs(
                "--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED",
                "--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED",
                "--add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED"
            )
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/codehost/svn.go

    			}
    			return fmt.Errorf("error opening file created by 'svn export': %v", err)
    		}
    
    		n, err := io.Copy(zf, f)
    		f.Close()
    		if err != nil {
    			return err
    		}
    		if n != e.Size {
    			return vcsErrorf("file size differs between 'svn list' and 'svn export': file %s listed as %v bytes, but exported as %v bytes", e.Name, e.Size, n)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 02:47:12 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. releasenotes/notes/40244.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    issue:
      - https://github.com/istio/istio/issues/39629
    releaseNotes:
      - |
        **Fixed** setting `exportTo` field and `networking.istio.io/exportTo` annotation lead to incorrect IST0101 message.
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 03 13:42:59 UTC 2022
    - 391 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/python/BUILD

        ],
    )
    
    # OSS: This is a header-only target. The implementation target `quantize_model_cc_impl` is
    # directly linked to `lib_pywrap_tensorflow_internal.so`, so in most use cases of python-
    # exported symbols depending directly on `quantize_model_cc_impl` should be unnecessary.
    # Using the header-only target will help avoid the ODR violation.
    cc_library(
        name = "quantize_model_cc",
        hdrs = ["quantize_model.h"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 18.8K bytes
    - Viewed (0)
Back to top