Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 192 for Interaction (0.19 sec)

  1. platforms/software/resources/src/main/java/org/gradle/internal/verifier/HttpRedirectVerifierFactory.java

    /**
     * Used to create instances of {@link HttpRedirectVerifier}.
     */
    public class HttpRedirectVerifierFactory {
    
        /**
         * Verifies that the base URL and all subsequent redirects followed during an interaction with a server are done so securely unless
         * the user has explicitly opted out from this protection.
         *
         * @param baseHost The host specified by the user.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. src/html/template/url.go

    	"strings"
    )
    
    // urlFilter returns its input unless it contains an unsafe scheme in which
    // case it defangs the entire URL.
    //
    // Schemes that cause unintended side effects that are irreversible without user
    // interaction are considered unsafe. For example, clicking on a "javascript:"
    // link can immediately trigger JavaScript code execution.
    //
    // This filter conservatively assumes that all schemes other than the following
    // are unsafe:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  3. maven-compat/src/test/java/org/apache/maven/project/EmptyLifecycleExecutor.java

    import org.apache.maven.model.Plugin;
    import org.apache.maven.model.PluginExecution;
    import org.apache.maven.plugin.MojoExecution;
    
    /**
     * A stub implementation that assumes an empty lifecycle to bypass interaction with the plugin manager and to avoid
     * plugin artifact resolution from repositories.
     *
     */
    @Deprecated
    public class EmptyLifecycleExecutor implements LifecycleExecutor {
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/arch/ppc64.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file encapsulates some of the odd characteristics of the
    // 64-bit PowerPC (PPC64) instruction set, to minimize its interaction
    // with the core of the assembler.
    
    package arch
    
    import (
    	"cmd/internal/obj"
    	"cmd/internal/obj/ppc64"
    )
    
    func jumpPPC64(word string) bool {
    	switch word {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/work_why_download_graph.txt

    # Test go mod download, why, and graph work in workspace mode.
    # TODO(bcmills): clarify the interaction with #44435
    
    go mod download rsc.io/quote
    exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.2.info
    exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.2.mod
    exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.2.zip
    ! exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.5.0.info
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 23:07:08 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/configstore/download.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package configstore abstracts interaction with the telemetry config server.
    // Telemetry config (golang.org/x/telemetry/config) is distributed as a go
    // module containing go.mod and config.json. Programs that upload collected
    // counters download the latest config using `go mod download`. This provides
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. pkg/test/framework/components/cluster/cluster.go

    	Name() string
    
    	// StableName gives a deterministic name for the cluster. Use this for test/subtest names to
    	// allow test grid to compare runs, even when the underlying cluster names are dynamic.
    	// Use Name for validation/interaction with the actual cluster.
    	StableName() string
    
    	// NetworkName the cluster is on
    	NetworkName() string
    
    	// MinKubeVersion returns true if the cluster is at least the version specified,
    	// false otherwise
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/project/EmptyLifecycleExecutor.java

    import org.apache.maven.model.Plugin;
    import org.apache.maven.model.PluginExecution;
    import org.apache.maven.plugin.MojoExecution;
    
    /**
     * A stub implementation that assumes an empty lifecycle to bypass interaction with the plugin manager and to avoid
     * plugin artifact resolution from repositories.
     *
     */
    public class EmptyLifecycleExecutor implements LifecycleExecutor {
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/execution/SkipOnlyIfTaskExecuterTest.groovy

            task.getProject() >> project
            project.getBuildScriptSource() >> scriptSource
            task.getOnlyIf() >> spec
        }
    
        void noMoreInteractions() {
            interaction {
                0 * task._
                0 * spec._
                0 * state._
                0 * executionContext._
                0 * scriptSource._
                0 * delegate._
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 24 11:36:30 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/AutoTestedSamplesToolingApiTest.groovy

      }
    }
    """
                tryCompile(javaSource)
            }
        }
    
        /**
         * The implementation should never assume we're running against jdk6.
         * Hence the impl is quite awkward and does all interaction with java6 compiler api reflectively.
         *
         * @param source
         */
        void tryCompile(String source) {
            source = normalize(source)
            def sourceFile = temp.testDirectory.file("Sample.java")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top