Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for Flash (0.17 sec)

  1. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/x-sas-putility",
    				"application/x-sas-transport",
    				"application/x-sas-backup",
    				"application/x-sc",
    				"application/x-sh",
    				"application/x-shar",
    				"application/x-shockwave-flash",
    				"application/x-silverlight-app",
    				"application/x-stuffit",
    				"application/x-stuffitx",
    				"application/x-sv4cpio",
    				"application/x-sv4crc",
    				"application/x-tar",
    				"application/x-tex",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  2. pkg/apis/flowcontrol/validation/validation_test.go

    	}, {
    		name:           "no slash should fail",
    		path:           "foo",
    		expectingError: true,
    	}, {
    		name:           "single slash should work",
    		path:           "/",
    		expectingError: false,
    	}, {
    		name:           "continuous slash should fail",
    		path:           "//",
    		expectingError: true,
    	}, {
    		name:           "/foo slash should work",
    		path:           "/foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 54.7K bytes
    - Viewed (0)
  3. cmd/object-api-listobjects_test.go

    		// Test listing with marker > last object such that response should be empty (65)
    		{"test-bucket-single-object", "", "A/C", "", 1000, resultCases[34], nil, true},
    		// Test listing an object with a trailing slash and a slash delimiter (66)
    		{"test-bucket-list-object", "Asia-maps.png/", "", "/", 1000, resultCases[34], nil, true},
    		// Test listing an object with uncommon delimiter
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  4. pkg/apis/networking/validation/validation_test.go

    		path         string
    		expectedErrs field.ErrorList
    	}{
    		"implementation specific: no leading slash": {
    			pathType:     networking.PathTypeImplementationSpecific,
    			path:         "foo",
    			expectedErrs: field.ErrorList{field.Invalid(fldPath, "foo", "must be an absolute path")},
    		},
    		"implementation specific: leading slash": {
    			pathType:     networking.PathTypeImplementationSpecific,
    			path:         "/foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

          apply {
            push(pathSegment, 0, pathSegment.length, addTrailingSlash = false, alreadyEncoded = false)
          }
    
        /**
         * Adds a set of path segments separated by a slash (either `\` or `/`). If `pathSegments`
         * starts with a slash, the resulting URL will have empty path segment.
         */
        fun addPathSegments(pathSegments: String): Builder = addPathSegments(pathSegments, false)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

        // Add a string with zero slashes: resulting URL gains one slash.
        assertThat(base.newBuilder().addPathSegments("").build().encodedPath)
          .isEqualTo("/a/b/c/")
        assertThat(base.newBuilder().addPathSegments("d").build().encodedPath)
          .isEqualTo("/a/b/c/d")
    
        // Add a string with one slash: resulting URL gains two slashes.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

        }
    
        @VersionCatalogProblemTestFor(
            VersionCatalogProblemId.RESERVED_ALIAS_NAME
        )
        @Issue("https://github.com/gradle/gradle/issues/16888")
        def "disallows aliases which have a name clash with Java methods"() {
            settingsFile << """
                dependencyResolutionManagement {
                    versionCatalogs {
                        libs {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/test/test.go

    	    See 'go doc test2json' for the encoding details.
    
    	-o file
    	    Compile the test binary to the named file.
    	    The test still runs (unless -c or -i is specified).
    	    If file ends in a slash or names an existing directory,
    	    the test is written to pkg.test in that directory.
    
    The test binary also accepts flags that control execution of the test; these
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  9. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

         *   were fine, but they are still before one which reported errors.
         * <p>Then the returned value is {@code groupId:artifactId} when there is a name clash and
         * {@code :artifactId} if there is no conflict.
         * This method is made package-private for testing purposes.
         *
         * @param mavenProjects Maven projects which are part of build execution.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    			errFn: expectErr,
    		},
    		"unknown resource type": {
    			args:  []string{"unknown/foo"},
    			errFn: expectErr,
    		},
    		"leading slash": {
    			args:  []string{"/bar"},
    			errFn: expectErr,
    		},
    		"trailing slash": {
    			args:  []string{"bar/"},
    			errFn: expectErr,
    		},
    		"valid status subresource": {
    			args:        []string{"pods/foo"},
    			subresource: "status",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
Back to top