Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 6,254 for Packaged (1.24 sec)

  1. src/cmd/compile/internal/test/inl_test.go

    	if testing.Short() && testenv.Builder() == "" {
    		t.Skip("skipping in short mode")
    	}
    	testenv.MustHaveGoRun(t)
    	t.Parallel()
    
    	// want is the list of function names (by package) that should
    	// be inlinable. If they have no callers in their packages, they
    	// might not actually be inlined anywhere.
    	want := map[string][]string{
    		"runtime": {
    			"add",
    			"acquirem",
    			"add1",
    			"addb",
    			"adjustpanics",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. hack/update-codegen.sh

    #
    # identifies where to find the external types; if there is no such
    # comment then the external types are sought in the package where the
    # `k8s:conversion` tag is found.
    #
    # Conversions, in both directions, are generated for every type name
    # that is defined in both an internal types package and the external
    # types package.
    #
    # TODO: it might be better in the long term to make peer-types explicit in the
    # IDL.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskIncrementalJavaCompilationIntegrationTest.groovy

            """
            source api: ["package a; public class A {}"]
            file("api/src/main/${language.name}/module-info.${language.name}").text = """
                module api {
                    exports a;
                }
            """
            source impl: [
                "package b; import a.A; import c.C; public class B extends A {}",
                "package c; public class C {}",
                "package c.d; public class D {}"
            ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/BaseIncrementalCompilationAfterFailureIntegrationTest.groovy

            source("class Unrelated {}")
            def b = source("package b; class B { public native void foo(); }")
            succeeds "compileJava"
    
            when:
            outputs.snapshot {
                source("package a; class A { public native void foo(); }")
                b.text = "package b; class B { public native void foo(); String m1() { return 0; } }"
                source("package c; class C { public native void foo(); }")
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:30 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskClassChangesIncrementalCompilationIntegrationTest.groovy

            source(
                api: ["package foo; public class A {}", "package bar; public class B {}"],
                impl: ["package baz; import foo.A; class C extends A {}", "package baz; import bar.B; class D extends B {}"]
            )
    
            impl.snapshot { succeeds "impl:${language.compileTaskName}" }
    
            when:
            packageFile.text = """@Deprecated @annotations.Anno package foo;"""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-component-api/1.0-alpha-16/plexus-component-api-1.0-alpha-16.jar

    1.5.0_06 org/codehaus/plexus/component/composition/CompositionException.class package org.codehaus.plexus.component.composition; public synchronized class CompositionException extends Exception { private static final long serialVersionUID = -5587124702588800322; public void CompositionException(String); public void CompositionException(String, Throwable); } org/codehaus/plexus/component/discovery/ComponentDiscoveryEv.class package org.codehaus.plexus.component.discovery; public synchronized class ComponentDiscoveryEv...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 32.4K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-component-api/1.0-alpha-16/plexus-component-api-1.0-alpha-16.jar

    1.5.0_06 org/codehaus/plexus/component/composition/CompositionException.class package org.codehaus.plexus.component.composition; public synchronized class CompositionException extends Exception { private static final long serialVersionUID = -5587124702588800322; public void CompositionException(String); public void CompositionException(String, Throwable); } org/codehaus/plexus/component/discovery/ComponentDiscoveryEv.class package org.codehaus.plexus.component.discovery; public synchronized class ComponentDiscoveryEv...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 32.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/application_plugin.adoc

    Applying the Application plugin also implicitly applies the <<distribution_plugin.adoc#distribution_plugin,Distribution plugin>>. A `main` distribution is created that packages up the application, including code dependencies and generated start scripts.
    
    
    [[sec:application_usage]]
    == Building JVM applications
    
    To use the application plugin, include the following in your build script:
    
    .Using the application plugin
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    // to obtain the original object.
    // The name does not include the package itself.
    type Path string
    
    // Encoding
    //
    // An object path is a textual and (with training) human-readable encoding
    // of a sequence of destructuring operators, starting from a types.Package.
    // The sequences represent a path through the package/object/type graph.
    // We classify these operators by their type:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/symbolizer/symbolizer.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // Package symbolizer provides a routine to populate a profile with
    // symbol, file and line number information. It relies on the
    // addr2liner and demangle packages to do the actual work.
    package symbolizer
    
    import (
    	"fmt"
    	"io"
    	"net/http"
    	"net/url"
    	"path/filepath"
    	"strings"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top