Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for Flash (0.14 sec)

  1. src/html/template/escape_test.go

    			`<script>alert(/(?:)/.test(""));</script>`,
    		},
    		{
    			"jsReAmbigOk",
    			`<script>{{if true}}var x = 1{{end}}</script>`,
    			// The {if} ends in an ambiguous jsCtx but there is
    			// no slash following so we shouldn't care.
    			`<script>var x = 1</script>`,
    		},
    		{
    			"styleBidiKeywordPassed",
    			`<p style="dir: {{"ltr"}}">`,
    			`<p style="dir: ltr">`,
    		},
    		{
    			"styleBidiPropNamePassed",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    	}
    }
    
    // =============================================================================
    // Get tests.
    
    // testGetDifferentNamespace ensures same-name objects in different namespaces do not clash
    func (t *Tester) testGetDifferentNamespace(obj runtime.Object) {
    	if t.clusterScope {
    		t.Fatalf("the test does not work in cluster-scope")
    	}
    
    	objMeta := t.getObjectMetaOrFail(obj)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  3. pkg/apis/storage/validation/validation_test.go

    			}
    		})
    	}
    }
    
    func TestValidateVolumeAttributesClass(t *testing.T) {
    	successCases := []storage.VolumeAttributesClass{
    		{
    			// driverName without a slash
    			ObjectMeta: metav1.ObjectMeta{Name: "foo"},
    			DriverName: "foo",
    			Parameters: map[string]string{
    				"foo-parameter": "free-form-string",
    			},
    		},
    		{
    			// some parameters
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  4. src/net/http/request.go

    	// just the authority section of a URL. This information should go in req.URL.Host.
    	//
    	// The net/rpc package also uses CONNECT, but there the parameter is a path
    	// that starts with a slash. It can be parsed with the regular URL parser,
    	// and the path will end up in req.URL.Path, where it needs to be in order for
    	// RPC to work.
    	justAuthority := req.Method == "CONNECT" && !strings.HasPrefix(rawurl, "/")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  5. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidObjectNamePrefixSlash: {
    		Code:           "XMinioInvalidObjectName",
    		Description:    "Object name contains a leading slash.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidResourceName: {
    		Code:           "XMinioInvalidResourceName",
    		Description:    "Resource name contains bad components such as \"..\" or \".\".",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

    // fixture to create new directories in `SetUp`. Each directory will reside in
    // `::testing::TempDir()`, will use a RNG component and the test name. This
    // ensures that two consecutive runs are unlikely to clash.
    class ModularFileSystemTest : public ::testing::TestWithParam<std::string> {
     public:
      // Initializes `root_dir_` to a unique value made of `::testing::TempDir()`, a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    .suite_operators.c
    ----
    include::{snippetsPath}/native-binaries/cunit/groovy/src/operatorsTest/c/suite_operators.c[]
    ----
    
    NOTE: Due to this mechanism, your CUnit sources may not contain a `main` method since this will clash with the method provided by Gradle.
    
    [[sec:building_cunit_executables]]
    === Building CUnit executables
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  8. src/go/build/build.go

    	IsDir func(path string) bool
    
    	// HasSubdir reports whether dir is lexically a subdirectory of
    	// root, perhaps multiple levels below. It does not try to check
    	// whether dir exists.
    	// If so, HasSubdir sets rel to a slash-separated path that
    	// can be joined to root to produce a path equivalent to dir.
    	// If HasSubdir is nil, Import uses an implementation built on
    	// filepath.EvalSymlinks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modget/get.go

    			q.raw = ""
    		}
    
    		// Guard against 'go get x.go', a common mistake.
    		// Note that package and module paths may end with '.go', so only print an error
    		// if the argument has no version and either has no slash or refers to an existing file.
    		if strings.HasSuffix(q.raw, ".go") && q.rawVersion == "" {
    			if !strings.Contains(q.raw, "/") {
    				base.Errorf("go: %s: arguments must be package or module paths", q.raw)
    				continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  10. src/go/parser/parser.go

    	if p.lit[1] == '*' {
    		// don't use range here - no need to decode Unicode code points
    		for i := 0; i < len(p.lit); i++ {
    			if p.lit[i] == '\n' {
    				endline++
    			}
    		}
    	}
    
    	comment = &ast.Comment{Slash: p.pos, Text: p.lit}
    	p.next0()
    
    	return
    }
    
    // Consume a group of adjacent comments, add it to the parser's
    // comments list, and return it together with the line at which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
Back to top