Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 8,991 for gsed (0.35 sec)

  1. releasenotes/notes/refactor-install-script.yaml

    # kind describes the type of change that this represents.
    # Valid Values are:
    # - bug-fix -- Used to specify that this change represents a bug fix.
    # - security-fix -- Used to specify that this change represents a security fix.
    # - feature -- Used to specify a new feature that has been added.
    # - test -- Used to describe additional testing added. This file is optional for
    #   tests, but included for completeness.
    kind: bug-fix
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 01 20:02:28 UTC 2020
    - 707 bytes
    - Viewed (0)
  2. test/fixedbugs/bug423.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // gc used to overflow a counter when a variable was
    // mentioned 256 times, and generate stack corruption.
    
    package main
    
    func main() {
    	F(1)
    }
    
    func F(arg int) {
    	var X interface{}
    	_ = X // used once
    	X = 0
    	X = 0
    	X = 0
    	X = 0
    	X = 0
    	X = 0
    	X = 0
    	X = 0
    	X = 0
    	X = 0
    	X = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 21 06:50:10 UTC 2012
    - 2.3K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/plugins/PluginContainer.java

         * @return The plugin which has been used against the project.
         */
        Plugin apply(String id);
    
        /**
         * Applies a plugin to the project. This usually means that the plugin uses the project API to add and modify the
         * state of the project. This method can be called an arbitrary number of times for a particular plugin type. The
         * plugin will be actually used only the first time this method is called.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 20:41:54 UTC 2018
    - 4.7K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/task/java/JavaCompileTaskOperationResult.java

     *
     * @since 5.1
     */
    public interface JavaCompileTaskOperationResult extends TaskOperationResult {
    
        /**
         * Returns results of used annotation processors, if available.
         *
         * <p>Details are only available if an instrumented compiler was used.
         *
         * @return details about used annotation processors; {@code null} if unknown.
         */
        @Nullable
        List<AnnotationProcessorResult> getAnnotationProcessorResults();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/templates/root-project/pom.xml

                                    println "BEFORE GC"
                                    println "heap: \${format(heap.used)} (initial \${format(heap.init)}, committed \${format(heap.committed)}, max \${format(heap.max)}"
                                    println "nonHeap: \${format(nonHeap.used)} (initial \${format(nonHeap.init)}, committed \${format(nonHeap.committed)}, max \${format(nonHeap.max)}"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. releasenotes/notes/fix-gateway-not-respect-image-pull-policy.yaml

    # kind describes the type of change that this represents.
    # Valid Values are:
    # - bug-fix -- Used to specify that this change represents a bug fix.
    # - security-fix -- Used to specify that this change represents a vulnerability fix.
    # - feature -- Used to specify a new feature that has been added.
    # - test -- Used to describe additional testing added. This file is optional for
    #   tests, but included for completeness.
    kind: bug-fix
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 17 15:33:57 UTC 2022
    - 1K bytes
    - Viewed (0)
  7. releasenotes/notes/49802.yaml

    # kind describes the type of change that this represents.
    # Valid Values are:
    # - bug-fix -- Used to specify that this change represents a bug fix.
    # - security-fix -- Used to specify that this change represents a vulnerability fix.
    # - feature -- Used to specify a new feature that has been added.
    # - test -- Used to describe additional testing added. This file is optional for
    #   tests, but included for completeness.
    kind: feature
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 18:49:10 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. pilot/docker/Dockerfile.proxyv2

    # BASE_DISTRIBUTION is used to switch between the old base distribution and distroless base images
    ARG BASE_DISTRIBUTION=debug
    
    # Version is the base image version from the TLD Makefile
    ARG BASE_VERSION=latest
    ARG ISTIO_BASE_REGISTRY=gcr.io/istio-release
    
    # The following section is used as base image if BASE_DISTRIBUTION=debug
    FROM ${ISTIO_BASE_REGISTRY}/base:${BASE_VERSION} as debug
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/ResourceAwareResolveResult.java

    public interface ResourceAwareResolveResult {
        List<String> getAttempted();
    
        /**
         * Adds a location that was used to build this result. This is used for diagnostic messages and logging.
         */
        void attempted(String locationDescription);
    
        /**
         * Adds a location that was used to build this result. This is used for diagnostic messages and logging.
         */
        void attempted(ExternalResourceName location);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/ntlmssp/NtlmFlags.java

     */
    
    package jcifs.smb1.ntlmssp;
    
    /**
     * Flags used during negotiation of NTLMSSP authentication.
     */
    public interface NtlmFlags {
    
        /**
        * Indicates whether Unicode strings are supported or used.
        */
        public static final int NTLMSSP_NEGOTIATE_UNICODE = 0x00000001;
    
        /**
        * Indicates whether OEM strings are supported or used.
        */
        public static final int NTLMSSP_NEGOTIATE_OEM = 0x00000002;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 5.3K bytes
    - Viewed (0)
Back to top