Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 247 for Touch (0.03 sec)

  1. src/test/java/org/codelibs/fess/helper/UserAgentHelperTest.java

            assertEquals(UserAgentType.IE, userAgentHelper.getUserAgentType());
        }
    
        public void test_getUserAgentType_IE11() {
            getMockRequest().addHeader("user-agent", "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; Touch; rv:11.0) like Gecko)");
            assertEquals(UserAgentType.IE, userAgentHelper.getUserAgentType());
        }
    
        public void test_getUserAgentType_Chrome() {
            getMockRequest().addHeader("user-agent",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. src/text/tabwriter/example_test.go

    	fmt.Fprintln(w)
    	w.Flush()
    
    	// Format right-aligned in space-separated columns of minimal width 5
    	// and at least one blank of padding (so wider column entries do not
    	// touch each other).
    	w.Init(os.Stdout, 5, 0, 1, ' ', tabwriter.AlignRight)
    	fmt.Fprintln(w, "a\tb\tc\td\t.")
    	fmt.Fprintln(w, "123\t12345\t1234567\t123456789\t.")
    	fmt.Fprintln(w)
    	w.Flush()
    
    	// output:
    	// a	b	c	d		.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 23 22:09:32 UTC 2016
    - 2K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/initialization/layout/ProjectCacheDirIntegrationTest.groovy

            given:
            def defaultProjectCacheDir = file(".gradle")
            def projectCacheDir = file("project-cache-dir")
    
            // Make sure buildSrc is built
            file("buildSrc/build.gradle").touch()
    
            settingsFile << """
                includeBuild('included')
            """
            buildFile << """
                task doIt {
                    dependsOn gradle.includedBuild("included").task(":doIt")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 16 23:00:16 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. build/build-image/Dockerfile

    # This file creates a standard build environment for building Kubernetes
    ARG KUBE_CROSS_IMAGE
    ARG KUBE_CROSS_VERSION
    
    FROM ${KUBE_CROSS_IMAGE}:${KUBE_CROSS_VERSION}
    
    # Mark this as a kube-build container
    RUN touch /kube-build-image
    
    # To run as non-root we sometimes need to rebuild go stdlib packages.
    RUN chmod -R a+rwx /usr/local/go/pkg
    
    # For running integration tests /var/run/kubernetes is required
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 05 23:26:09 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/GradleBuildTaskIntegrationTest.groovy

                }
            """
            file('other/settings.gradle').touch()
            file('other/build.gradle') << """
                task otherBuild(type:GradleBuild) {
                    dir = '../other2'
                    tasks = ['build']
                }
            """
            file('other2/settings.gradle').touch()
            file('other2/build.gradle') << """
                task build
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. hack/lib/init.sh

     admission.k8s.io/v1\
     admission.k8s.io/v1beta1\
    "
    export KUBE_NONSERVER_GROUP_VERSIONS
    
    # This emulates "readlink -f" which is not available on MacOS X.
    # Test:
    # T=/tmp/$$.$RANDOM
    # mkdir $T
    # touch $T/file
    # mkdir $T/dir
    # ln -s $T/file $T/linkfile
    # ln -s $T/dir $T/linkdir
    # function testone() {
    #   X=$(readlink -f $1 2>&1)
    #   Y=$(kube::readlinkdashf $1 2>&1)
    #   if [ "$X" != "$Y" ]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:18:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/test/groovy/org/gradle/api/tasks/javadoc/JavadocTest.groovy

        def setup() {
            task = TestUtil.createTask(Javadoc, project, "javadoc")
            task.setClasspath(configurationMock)
            task.setDestinationDir(destDir)
            task.source(srcDir)
    
            FileUtils.touch(new File(srcDir, "file.java"))
    
            tool.metadata >> Mock(JavaInstallationMetadata) {
                getLanguageVersion() >> JavaLanguageVersion.of(11)
            }
            tool.executablePath >> Mock(RegularFile) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/DefaultRepositoryMetadataManager.java

                            getLogger().debug("Exception", e);
                        } finally {
                            updateCheckManager.touch(metadata, repository, file);
                        }
                    }
    
                    // TODO should this be inside the above check?
                    // touch file so that this is not checked again until interval has passed
                    if (file.exists()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/io/FilesTest.java

        assertTrue(temp.exists());
        assertTrue(temp.delete());
        assertFalse(temp.exists());
        Files.touch(temp);
        assertTrue(temp.exists());
        Files.touch(temp);
        assertTrue(temp.exists());
    
        assertThrows(
            IOException.class,
            () ->
                Files.touch(
                    new File(temp.getPath()) {
                      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  10. tools/packaging/postinst.sh

    if [ ! -e /etc/istio ]; then
       # Backward compat.
       ln -s /var/lib/istio /etc/istio
    fi
    
    mkdir -p /var/lib/istio/envoy
    mkdir -p /var/lib/istio/proxy
    mkdir -p /var/lib/istio/config
    mkdir -p /var/log/istio
    
    touch /var/lib/istio/config/mesh
    
    mkdir -p /etc/certs
    chown istio-proxy.istio-proxy /etc/certs
    
    chown istio-proxy.istio-proxy /var/lib/istio/envoy /var/lib/istio/config /var/log/istio /var/lib/istio/config/mesh /var/lib/istio/proxy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 10 18:31:12 UTC 2021
    - 1.9K bytes
    - Viewed (0)
Back to top