Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 144 for remSign (0.12 sec)

  1. guava/src/com/google/common/net/PercentEscaper.java

    import javax.annotation.CheckForNull;
    
    /**
     * A {@code UnicodeEscaper} that escapes some set of Java characters using a UTF-8 based percent
     * encoding scheme. The set of safe characters (those which remain unescaped) can be specified on
     * construction.
     *
     * <p>This class is primarily used for creating URI escapers in {@link UrlEscapers} but can be used
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  2. releasenotes/notes/revision-tag-default-validation.yaml

    upgradeNotes:
      - title: Default revision must be switched when performing a revision-based upgrade.
        content: |
          When installing a new Istio control plane revision the previous resource validator will remain unchanged to prevent
          unintended effects on the existing, stable revision. Once prepared to migrate over to the new control plane revision,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 11 16:58:48 UTC 2021
    - 956 bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/issue9026/issue9026.go

    	// Test that the generated type names are deterministic.
    	// (Previously this would fail about 10% of the time.)
    	//
    	// Brittle: the assertion may fail spuriously when the algorithm
    	// changes, but should remain stable otherwise.
    	got := fmt.Sprintf("%T %T", in, opts)
    	want := "issue9026._Ctype_struct___0 *issue9026._Ctype_struct___1"
    	if got != want {
    		t.Errorf("Non-deterministic type names: got %s, want %s", got, want)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/component/SoftwareComponentContainerInternal.java

     */
    public interface SoftwareComponentContainerInternal extends SoftwareComponentContainer {
        /**
         * Get the main component of a project.
         * <p>
         * This method will remain internal until we pinpoint what a "main" component truly is,
         * and if it is conceptually necessary.
         */
        Property<SoftwareComponent> getMainComponent();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 10 15:02:08 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. hack/update-golangci-lint-config.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script checks that golangci-strict.yaml and golangci.yaml remain in
    # sync. Lines that are intentionally different must have a comment which
    # mentions golangci.yaml or golangci-lint.yaml.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 22 18:39:23 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. src/net/tcpconn_keepalive_solaris_test.go

    			// and TCP_KEEPCNT are set, otherwise it will remain the default value.
    			tcpKeepAliveAbortThreshold = cfg.Interval * time.Duration(cfg.Count)
    		}
    	} else {
    		cfg.Interval = cfg.Interval * time.Duration(cfg.Count)
    		// Either Interval or Count is set to a negative value, TCP_KEEPALIVE_ABORT_THRESHOLD
    		// will remain the default value, so use the old Interval for the subsequent test.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. platforms/jvm/language-jvm/src/main/java/org/gradle/language/jvm/tasks/ProcessResources.java

    import org.gradle.work.DisableCachingByDefault;
    
    import javax.inject.Inject;
    
    /**
     * Copies resources from their source to their target directory, potentially processing them.
     * Makes sure no stale resources remain in the target directory.
     */
    @DisableCachingByDefault(because = "Not worth caching")
    public abstract class ProcessResources extends Copy {
    
        @Override
        protected void copy() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/execution/BuildResumptionData.java

    import java.util.List;
    
    /**
     * This class holds the information required to enable resuming a Maven build with {@code --resume}.
     */
    public class BuildResumptionData {
        /**
         * The list of projects that remain to be built.
         */
        private final List<String> remainingProjects;
    
        public BuildResumptionData(final List<String> remainingProjects) {
            this.remainingProjects = remainingProjects;
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/vcweb/insecure.go

    	if req.Host == "" && req.URL.Host == "" {
    		http.Error(w, "no Host provided in request", http.StatusBadRequest)
    		return
    	}
    
    	// Note that if the handler is wrapped with http.StripPrefix, the prefix
    	// will remain stripped in the redirected URL, preventing redirect loops
    	// if the scheme is already "http".
    
    	u := *req.URL
    	u.Scheme = "http"
    	u.User = nil
    	u.Host = req.Host
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:22:22 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  10. doc/next/5-toolchain.md

    Similarly, the linker disallows references to such symbols from assembly
    code.
    For backward compatibility, existing usages of `//go:linkname` found in
    a large open-source code corpus remain supported.
    Any new references to standard library internal symbols will be disallowed.
    
    A linker command line flag `-checklinkname=0` can be used to disable
    this check, for debugging and experimenting purposes.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top